/*--- Base Styles ---*/

:root {
    --neon-cyan: #00e5ff;
    --dark-bg: #050505;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Hind Siliguri', sans-serif;
    overflow-x: hidden;
}


/*--- Header & Navigation ---*/

header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--neon-cyan);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.logo-area:active {
    transform: scale(0.95);
}

.logo-img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.brand-name {
    font-family: 'Orbitron';
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: bold;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


/*--- Hero & Slider ---*/

.hero {
    padding: 70px 20px 40px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Orbitron';
    font-size: 2.4rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 18px rgba(0, 229, 255, 0.55);
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 12px;
}

.slider-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: 40px auto 50px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.slider-container::before,
.slider-container::after {
    content: none;
}

.slider {
    display: flex;
    width: 100%;
    animation: slide-animation 18s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}

.slide {
    width: 100%;
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 1400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    transform: scale(1);
    filter: saturate(1.05);
    border-radius: 22px;
}

.slider-container:hover .slide img {
    transform: scale(1);
}

@keyframes slide-animation {
    0%,
    20% {
        transform: translateX(0);
    }
    25%,
    45% {
        transform: translateX(-100%);
    }
    50%,
    70% {
        transform: translateX(-200%);
    }
    75%,
    95% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(0);
    }
}

.partner-section {
    padding: 60px 5%;
    background: #060606;
}

.partner-section .feature-header {
    margin-bottom: 35px;
}

.gaming-section {
    padding: 60px 5%;
    background: #070707;
}

.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gaming-card {
    background: linear-gradient(135deg, #111111, #0b0b0b);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gaming-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.gaming-card h3 {
    color: var(--neon-cyan);
    margin: 18px 20px 10px;
    font-size: 1.25rem;
}

.gaming-card p {
    color: #ccc;
    margin: 0 20px 20px;
    line-height: 1.7;
}

.gaming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.18);
}

.creator-section {
    padding: 60px 5%;
    background: #090909;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card {
    background: linear-gradient(135deg, #121212, #0d0d0d);
    border: 1px solid rgba(0, 229, 255, 0.14);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.creator-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.creator-card h3 {
    color: var(--neon-cyan);
    margin: 18px 20px 10px;
    font-size: 1.25rem;
}

.creator-card p {
    color: #ccc;
    margin: 0 20px 20px;
    line-height: 1.7;
}

.creator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.18);
}

@media (max-width: 800px) {
    .gaming-card img,
    .creator-card img {
        height: 180px;
    }
}

@media (max-width: 520px) {
    .gaming-grid {
        gap: 18px;
    }
}

.partner-carousel {
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(5, 5, 5, 0.95));
    padding: 20px 0;
}

.partner-track {
    display: flex;
    width: calc(240px * 12);
    animation: partner-slide 24s linear infinite;
}

.partner-card {
    min-width: 220px;
    max-width: 220px;
    margin: 0 15px;
    padding: 20px 18px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 12px 30px rgba(0, 229, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.18);
}

.partner-card i {
    font-size: 2rem;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

.partner-card span {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.partner-card:hover i {
    transform: scale(1.2);
}

@keyframes partner-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .partner-track {
        width: auto;
        animation: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 20px;
    }
    .partner-card {
        min-width: 190px;
        margin: 0 12px;
    }
}

@media (max-width: 640px) {
    .partner-card {
        min-width: 160px;
        padding: 18px 14px;
    }
}


/*--- Premium Feature Cards ---*/

.icon-features {
    padding: 80px 5%;
    background: #050505;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--neon-cyan);
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.8rem;
}

.main-title {
    font-family: 'Orbitron';
    font-size: 2rem;
    margin: 10px 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--neon-cyan);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-card {
    background: #0f0f0f;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.premium-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-cyan);
    background: #111;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.icon-wrapper i {
    font-size: 35px;
    color: var(--neon-cyan);
}

.premium-card:hover .icon-wrapper {
    background: var(--neon-cyan);
    transform: rotateY(360deg);
}

.premium-card:hover i {
    color: #000;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.65rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}


/*--- Packages ---*/

.section-heading {
    text-align: center;
    font-family: 'Orbitron';
    color: var(--neon-cyan);
    padding: 50px 0 20px;
}

.package-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 5%;
}

.package-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.4s;
}

.package-card:hover {
    transform: scale(1.03);
    border-color: var(--neon-cyan);
}

.pkg-speed {
    font-family: 'Orbitron';
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.pkg-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.pkg-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
}

.pkg-features li {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.pkg-features i {
    color: var(--neon-cyan);
    margin-right: 10px;
}

.order-btn {
    width: 100%;
    padding: 12px;
    background: var(--neon-cyan);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.order-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}


/*--- Footer & Floating ---*/

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: 0.3s;
}

.fb-float {
    background: #1877F2;
}

.wa-float {
    background: #25d366;
}

.float-icon:hover {
    transform: scale(1.1);
}


/*--- Sections Display ---*/

.page-section {
    display: none;
    animation: fadeIn 0.6s ease;
}

.active-section {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    padding: 80px 5%;
    background: #050505;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.about-benefits li i {
    color: var(--neon-cyan);
    min-width: 24px;
}

.about-highlight {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 18px;
    padding: 20px;
    margin-top: 25px;
}

.about-highlight h4 {
    color: #fff;
    margin-bottom: 10px;
}

.about-highlight p {
    color: #ccc;
}

.payment-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 18px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.payment-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff00, #00e5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.bkash-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    position: relative;
}

.bkash-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e2136e 50%, #0066cc 50%);
    border-radius: 50%;
    z-index: 1;
}

.bkash-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}

.bkash-text {
    position: relative;
    z-index: 3;
    font-size: 0.65rem;
    color: #e2136e;
    font-weight: bold;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.payment-text h4 {
    color: #db03f8;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.payment-text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.about-cards {
    display: grid;
    gap: 18px;
}

.about-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    border: 1px solid rgba(0, 229, 255, 0.12);
}

.about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-card:hover img {
    transform: scale(1.05);
}

.team-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 45px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #111;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 229, 255, 0.18);
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.team-info h4 {
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.team-info p {
    color: #bbb;
    margin-bottom: 10px;
}

.contact-number {
    display: inline-block;
    color: #000;
    background: var(--neon-cyan);
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-number:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-grid {
        gap: 18px;
    }
    .about-text h3 {
        font-size: 1.7rem;
    }
    .about-highlight {
        padding: 18px;
    }
    .payment-highlight {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px;
    }
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .bkash-icon::before {
        width: 30px;
        height: 30px;
    }
    .bkash-icon::after {
        width: 20px;
        height: 20px;
    }
    .bkash-text {
        font-size: 0.55rem;
    }
    .payment-text h4 {
        font-size: 1rem;
    }
    .payment-text p {
        font-size: 0.85rem;
    }
}


/*--- Modal ---*/

.ftp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.ftp-modal.active {
    display: flex;
}

.ftp-modal-content {
    background: linear-gradient(135deg, #0f0f0f, #151515);
    border: 2px solid var(--neon-cyan);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-title {
    font-family: 'Orbitron';
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 32px;
    color: var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
}

.close-modal:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.ftp-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.big-btn {
    display: block;
    background: linear-gradient(45deg, var(--neon-cyan), #00ffa2);
    color: #000;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Orbitron';
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    animation: slideInLeft 0.5s ease forwards;
    position: relative;
    overflow: hidden;
}

.big-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.big-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.big-btn:hover {
    background: linear-gradient(45deg, #00ffa2, var(--neon-cyan));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
    border-color: #fff;
}

.big-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}


/* Button Ripple Effect */

.big-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.big-btn:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Package Section Styling */

.package-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 5% 80px;
}

.package-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}


/* Featured (Popular) Card */

.package-card.featured {
    border: 2px solid var(--neon-cyan);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    overflow: hidden;
}

.package-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--neon-cyan);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
}


/* Corporate Card */

.package-card.corporate {
    border-color: #ffd700;
}

.package-card.corporate .pkg-speed {
    color: #ffd700;
}


/* Internal Elements */

.pkg-speed {
    font-size: 2.8rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron';
    font-weight: bold;
}

.pkg-type {
    color: #00ff00;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.pkg-price {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.pkg-price span {
    font-size: 1rem;
    color: #888;
}

.pkg-features {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.pkg-features li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 12px;
}

.pkg-features li i {
    color: var(--neon-cyan);
    margin-right: 10px;
}


/* Button */

.order-btn {
    width: 100%;
    padding: 12px;
    background: var(--neon-cyan);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.order-btn:hover {
    background: #fff;
    box-shadow: 0 0 15px #fff;
}


/* প্যাকেজ রো সেটআপ (এক লাইনে সাজানোর জন্য) */

.package-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    /* এক লাইনে রাখবে */
    gap: 20px;
    padding: 20px 5%;
    overflow-x: auto;
    /* মোবাইলে স্ক্রল করার সুবিধা */
}


/* প্যাকেজ কার্ডের মূল ডিজাইন */

.package-card {
    background: linear-gradient(145deg, #0f0f0f, #151515);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 40px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    z-index: 1;
}


/* আধুনিক হভার ইফেক্ট (Neon Glow) */

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-cyan);
    background: #0a0a0a;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2), 0 0 10px rgba(0, 229, 255, 0.1);
}


/* স্পিড টেক্সট এনিমেশন */

.pkg-speed {
    font-family: 'Orbitron';
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    transition: 0.3s;
}

.pkg-speed span {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-left: 5px;
}

.package-card:hover .pkg-speed {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}


/* প্রাইস ট্যাগ */

.pkg-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}


/* ফিচারের স্টাইল */

.pkg-features {
    list-style: none;
    text-align: left;
    margin: 20px 0 30px;
    padding: 0 10px;
}

.pkg-features li {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
    transition: 0.3s;
}

.package-card:hover .pkg-features li {
    color: #fff;
}

.pkg-features i {
    color: var(--neon-cyan);
    margin-right: 10px;
}


/* বাটন হভার */

.order-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.4s;
}

.package-card:hover .order-btn {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan);
}


/* Popular Badge */

.package-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}


/* মোবাইল রেসপন্সিভনেস */

@media (max-width: 1024px) {
    .package-row {
        flex-wrap: wrap;
        /* ছোট স্ক্রিনে ভেঙ্গে নিচে নামবে */
        justify-content: center;
    }
}


/*--- Navigation Menu Desktop & Mobile ---*/

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    /* ঝাপসা ব্যাকগ্রাউন্ড */
    border-left: 2px solid var(--neon-cyan);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 15px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    opacity: 0;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 229, 255, 0.1);
}

.nav-menu.active {
    right: 0;
    opacity: 1;
}

.nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.nav-close-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}


/* Navigation Links */

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    /* আইকন এবং লেখার দূরত্ব */
    position: relative;
    transition: 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}


/* আইকনের স্পেশাল স্টাইল */

.nav-menu a i {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    transition: 0.4s;
}


/* হবার ইফেক্ট (Hover Effect) */

.nav-menu a:hover {
    color: var(--neon-cyan);
    padding-left: 10px;
    /* মাউস নিলে ডানে সরবে */
}


/* হবার করলে আইকন গ্লো করবে */

.nav-menu a:hover i {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}


/* নিয়ন আন্ডারলাইন এনিমেশন */

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: 0.4s;
}

.nav-menu a:hover::after {
    width: 100%;
}


/*--- Hamburger Menu Animation ---*/

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/*--- Modern Contact Section Styles ---*/

.contact-wrapper {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    background: #0f0f0f;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}


/* বাম পাশের প্যানেল */

.contact-info-panel {
    flex: 1;
    background: linear-gradient(135deg, #001214, #002b2e);
    padding: 50px;
    border-right: 1px solid rgba(0, 229, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.info-text h3 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.info-text p {
    color: #ccc;
    font-size: 0.95rem;
}


/* সোশ্যাল লিঙ্ক */

.social-connect h3 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.s-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    transition: 0.4s;
    text-decoration: none;
}

.s-link:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-5px);
}


/* ডান পাশের ফর্ম প্যানেল */

.contact-form-panel {
    flex: 1.2;
    padding: 50px;
    background: #111;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: #555;
    transition: 0.3s;
}


/* ইনপুট হভার ও ফোকাস */

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.form-group input:focus+i,
.form-group textarea:focus+i {
    color: var(--neon-cyan);
}


/* সাবমিট বাটন */

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--neon-cyan);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* মোবাইল রেসপন্সিভ */

@media (max-width: 850px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(0, 229, 255, 0.1);
        padding: 40px 30px;
    }
}


/* হেডার রাইট সেকশন এলাইনমেন্ট */

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* আলাদা অ্যাপ ডাউনলোড বাটন স্টাইল */

.nav-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #00e5ff, #00ffa2);
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s all ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    border: none;
}


/* বাটন হবার ইফেক্ট */

.nav-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 162, 0.5);
    background: #fff;
}

.nav-app-btn i {
    font-size: 1.1rem;
}


/* মোবাইল রেসপন্সিভনেস (ছোট স্ক্রিনে লেখা লুকানো) */

@media (max-width: 600px) {
    .nav-app-btn {
        /* মোবাইলে অ্যাপ ডাউনলোড বাটন দেখানো হবে */
    }
}

@media (max-width: 768px) {
    .nav-app-btn span {
        display: none;
        /* ট্যাবলেটে শুধু আইকন দেখাবে */
    }
    .nav-app-btn {
        padding: 10px;
        border-radius: 50%;
    }
}


/* মেনু ওভারলে স্টাইল */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* এরিয়া কভারেজ সেকশন */

.coverage-section {
    padding: 80px 5%;
    background: #050505;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-card {
    background: linear-gradient(135deg, #0f0f0f, #151515);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coverage-card:hover::before {
    opacity: 1;
}

.coverage-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--neon-cyan);
    background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.25), 0 0 20px rgba(0, 229, 255, 0.1);
}

.coverage-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.coverage-card:hover i {
    transform: rotateY(360deg) scale(1.2);
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.coverage-card h3 {
    font-family: 'Orbitron';
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    transition: 0.3s ease;
    position: relative;
    z-index: 1;
}

.coverage-card:hover h3 {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.coverage-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

.coverage-card:hover p {
    color: #ccc;
}


/* কভারেজ কার্ড অ্যানিমেশন */

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coverage-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.coverage-card:nth-child(1) {
    animation-delay: 0.1s;
}

.coverage-card:nth-child(2) {
    animation-delay: 0.2s;
}

.coverage-card:nth-child(3) {
    animation-delay: 0.3s;
}

.coverage-card:nth-child(4) {
    animation-delay: 0.4s;
}

.coverage-card:nth-child(5) {
    animation-delay: 0.5s;
}

.coverage-card:nth-child(6) {
    animation-delay: 0.6s;
}

.coverage-card:nth-child(7) {
    animation-delay: 0.7s;
}

.coverage-card:nth-child(8) {
    animation-delay: 0.8s;
}

.coverage-card:nth-child(9) {
    animation-delay: 0.9s;
}

.coverage-card:nth-child(10) {
    animation-delay: 1s;
}

.coverage-card:nth-child(11) {
    animation-delay: 1.1s;
}

.coverage-card:nth-child(12) {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* মোবাইল রেসপন্সিভ */

@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 5%;
    }
    .coverage-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    .coverage-card {
        padding: 25px 20px;
    }
    .coverage-card i {
        font-size: 2.2rem;
    }
    .coverage-card h3 {
        font-size: 1.1rem;
    }
    .coverage-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 15px 4%;
    }
    .hero {
        padding: 60px 16px 30px;
        min-height: 360px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .slider-container {
        width: 95%;
        margin: 30px auto 60px;
    }
    .slide img {
        height: 420px;
    }
    .features-grid-system,
    .gaming-grid,
    .creator-grid,
    .coverage-grid,
    .about-grid,
    .package-group {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .nav-menu {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 3%;
    }
    .header-right {
        gap: 14px;
    }
    .logo-area {
        gap: 10px;
    }
    .hero {
        padding: 50px 14px 24px;
    }
    .hero-text {
        width: 100%;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .slider-container {
        width: 100%;
        max-width: 100%;
        margin: 24px auto 50px;
    }
    .slide img {
        height: 340px;
    }
    .nav-app-btn {
        padding: 10px 12px;
    }
    .nav-app-btn span {
        display: none;
    }
    .menu-toggle {
        order: 1;
    }
    .nav-menu {
        padding: 90px 20px;
    }
    .nav-menu a {
        font-size: 1rem;
    }
    .partner-track {
        padding-left: 16px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 320px;
        padding: 40px 12px 20px;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .slide img {
        height: 280px;
    }
    .slider-container {
        margin: 20px auto 40px;
    }
    .menu-toggle {
        transform: scale(0.95);
    }
    .nav-menu {
        width: 100%;
        max-width: 100%;
        padding: 100px 18px;
    }
    .package-card,
    .gaming-card,
    .creator-card,
    .coverage-card,
    .partner-card,
    .team-card,
    .about-card {
        min-width: auto;
    }
    .package-group {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 25px 4%;
    }
    .package-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

.payment-icon {
    width: 100px;
    /* আপনার প্রয়োজন অনুযায়ী সাইজ কমিয়ে বা বাড়িয়ে নিন */
    height: 100px;
    /* আপনার প্রয়োজন অনুযায়ী সাইজ কমিয়ে বা বাড়িয়ে নিন */
    border-radius: 50%;
    /* ছবিটিকে গোল করার জন্য */
    overflow: hidden;
    /* ছবি গোল করার জন্য প্রয়োজনীয় */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f0f0f0;  প্রয়োজন হলে ব্যাকগ্রাউন্ড কালার দিতে পারেন */
}

.bkash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ছবি গোল অংশের মধ্যে ঠিকমতো বসানোর জন্য */
}
