/* ===================================================================
   File: style.css
   Description: Main stylesheet for AGOID INTERIOR website.
   Contains all global, component, and section styles.
   Responsive styles are in responsive.css.
   =================================================================== */

/* --- Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- CSS RESET & GLOBAL STYLES --- */
:root {
    /* Original Global Variables */
    --dark-blue: #0A0A2A;
    --primary-text: #FFFFFF;
    --secondary-text: #cccccc;
    --accent-pink: #E849E8;
    --accent-cyan: #33D5E5;
    --card-bg: #14143a;
    --border-color: rgba(51, 213, 229, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-blue);
    color: var(--primary-text);
    line-height: 1.7;
}

p {
    color: var(--secondary-text);
    font-weight: 400;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    border-radius: 2px;
}

.section-title p {
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* --- BUTTON STYLES --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    color: var(--primary-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(232, 73, 232, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(51, 213, 229, 0.3);
}

.btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* =======================================================
   WORLD CLASS HEADER STYLES (REPLACEMENT)
   ======================================================= */

:root {
    /* Merged Header Variables */
    --header-height: 85px;
    --header-bg-scroll: rgba(10, 10, 42, 0.9);
    --nav-color: #e6e6e6;
    --nav-hover: #33D5E5; /* Cyan */
    --nav-accent: #E849E8; /* Pink */
    --dropdown-bg: #0f0f36;
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* 1. Header Container */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
    background: transparent; /* Initially transparent */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: var(--header-bg-scroll);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    height: 70px; /* Compact on scroll */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1440px; /* Wide layout for world-class feel */
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* 2. Logo */
.nav-logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}
.header.scrolled .nav-logo img {
    height: 40px;
}

/* 3. Navigation Wrapper (Desktop) */
.nav-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center; /* Center menu */
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Hide Desktop Menu on Mobile/Tablet */
@media (max-width: 1150px) {
    .nav-wrapper, .btn-glass-login {
        display: none !important;
    }
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px; /* Spacing between items */
}

/* Links */
.nav-link {
    color: var(--nav-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    position: relative;
}

.nav-link i {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.nav-link:hover, .nav-link.active {
    color: var(--nav-hover);
}

.nav-link:hover i {
    transform: rotate(180deg);
    color: var(--nav-accent);
}

/* Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nav-accent), var(--nav-hover));
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-item:hover > .nav-link::after {
    width: 100%;
}

/* 4. Dropdowns (Glassmorphism) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--dropdown-bg);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--nav-hover);
    border-radius: 0 0 12px 12px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu.right-aligned {
    left: auto;
    right: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #b0b0d0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding-left: 35px;
    border-left-color: var(--nav-accent);
}

/* 5. MEGA MENU (The Pro Feature) */
.dropdown-menu.mega-menu {
    width: 900px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 30px;
    border-radius: 12px;
}

.nav-item:hover .dropdown-menu.mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.mega-col {
    flex: 1;
}

.mega-col h4 {
    color: var(--nav-hover);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
}

.mega-col ul li a {
    padding: 8px 0;
    font-size: 0.9rem;
    border: none;
}

.mega-col ul li a:hover {
    padding-left: 5px;
    background: transparent;
    color: var(--nav-accent);
}

/* 6. Buttons & Mobile Toggle */
.btn-glass-login {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--nav-hover);
    color: var(--nav-hover);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-glass-login:hover {
    background: var(--nav-hover);
    color: #000;
    box-shadow: 0 0 20px rgba(51, 213, 229, 0.4);
}

/* --- FIXED MOBILE TOGGLE BUTTON --- */
.mobile-toggle-btn {
    display: none; /* Hidden on Desktop */
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    /* Ensuring it stays on top */
    position: relative; 
    z-index: 10002; 
}

.mobile-toggle-btn:hover {
    color: var(--nav-hover);
}

@media (max-width: 1150px) {
    .mobile-toggle-btn {
        display: block;
    }
}

/* =======================================================
   PREMIUM MOBILE SIDEBAR (APP STYLE)
   ======================================================= */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 10004; /* Below sidebar, above header */
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- FIXED MOBILE SIDEBAR Z-INDEX --- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0A0A2A;
    /* Must be higher than header (9999) */
    z-index: 10005; 
    box-shadow: -10px 0 50px rgba(0,0,0,0.7);
    transition: right 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border);
}

.mobile-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}
.sidebar-header img {
    height: 35px;
}
.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}
.sidebar-close:hover {
    color: var(--nav-accent);
    transform: rotate(90deg);
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

/* Mobile List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mobile-link-wrapper {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}
.mobile-link-wrapper:hover {
    background: rgba(255,255,255,0.05);
}

.mobile-link-wrapper a {
    color: #eee;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.mobile-arrow {
    color: #666;
    transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-arrow {
    transform: rotate(180deg);
    color: var(--nav-hover);
}
.mobile-nav-item.open .mobile-link-wrapper a {
    color: var(--nav-hover);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    list-style: none;
    background: rgba(0,0,0,0.3);
    padding: 10px 0;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}

.mobile-nav-item.open .mobile-submenu {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 35px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
}
.mobile-submenu li a:hover {
    color: #fff;
    padding-left: 45px;
    background: rgba(255,255,255,0.05);
}

/* Mobile Mega Group Headers */
.mobile-group-title {
    padding: 10px 35px;
    font-size: 0.85rem;
    color: var(--nav-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.2);
}

.btn-full {
    width: 100%;
    padding: 12px;
    background: var(--nav-hover);
    color: #0A0A2A;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.sidebar-socials a {
    color: #aaa;
    font-size: 1.2rem;
    transition: 0.3s;
}
.sidebar-socials a:hover {
    color: var(--nav-hover);
    transform: translateY(-3px);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 1. HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 42, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    background: -webkit-linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--secondary-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* --- 2. ABOUT US SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-item .text {
    color: var(--secondary-text);
}

/* --- 3. OUR SERVICES SECTION --- */
.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--primary-text);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(51, 213, 229, 0.2);
    border-color: var(--accent-cyan);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease-in-out;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* --- 4. PORTFOLIO SECTION --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    gap: 10px;
}

.portfolio-filters::-webkit-scrollbar {
    height: 6px;
}

.portfolio-filters::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0;
    flex-shrink: 0;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    border-color: var(--accent-cyan);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(232, 73, 232, 0.8), rgba(10, 10, 42, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.portfolio-link {
    text-decoration: none;
    color: var(--primary-text);
}

.portfolio-overlay .view-case-study {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .view-case-study {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-view-more {
    text-align: center;
    margin-top: 40px;
    display: none;
}

/* --- 4B. BEFORE-AFTER SLIDER SECTION --- */
#before-after {
    background: var(--card-bg);
}

/* IMPORTANT: This targets the wrapper div created by the plugin */
.twentytwenty-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.twentytwenty-container {
    box-sizing: content-box; /* This is critical to prevent conflicts */
    border-radius: 12px; /* Inner radius */
}

/* --- 5. WHY CHOOSE US SECTION --- */
.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(51, 213, 229, 0.15);
}

.reason-card .icon {
    font-size: 2rem;
    color: var(--accent-pink);
    transition: transform 0.4s ease-in-out;
}

.reason-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* --- 5B. TEAM SECTION --- */
#team {
    background: var(--card-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--dark-blue);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(232, 73, 232, 0.2);
    border-color: var(--accent-pink);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-cyan);
    margin-bottom: 20px;
}

.team-member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member-info p {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social-links a {
    color: var(--secondary-text);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social-links a:hover {
    color: var(--accent-pink);
}

/* --- 5C. OUR PROCESS SECTION --- */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-cyan));
    top: 20px;
    bottom: 20px;
    left: 50%;
    margin-left: -2px;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-step .step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--card-bg);
    color: var(--accent-cyan);
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    text-align: center;
    z-index: 1;
}

.process-step:nth-child(odd) .step-number {
    right: -25px;
}

.process-step:nth-child(even) .step-number {
    left: -25px;
}

.step-content {
    padding: 20px 30px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 10px;
}

.step-content h3 {
    margin-bottom: 5px;
}

/* --- 6. RATE CHART & CALCULATOR SECTION --- */
.rate-chart-container {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rate-chart-tabs {
    display: flex;
    background-color: var(--dark-blue);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    gap: 10px;
}

.rate-chart-tabs::-webkit-scrollbar {
    height: 4px;
}

.rate-chart-tabs::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.rate-tab-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--secondary-text);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.rate-tab-btn.active,
.rate-tab-btn:hover {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    color: var(--primary-text);
    border-color: transparent;
    transform: translateY(-2px);
}

.rate-chart-content {
    padding: 20px 30px 30px;
}

.table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}

#rate-table th,
#rate-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

#rate-table th {
    color: var(--accent-cyan);
    font-weight: 600;
}

#rate-table tbody tr:hover {
    background-color: rgba(10, 10, 42, 0.5);
}

#rate-table td:nth-child(1) {
    font-weight: 500;
    color: var(--primary-text);
}

#rate-table td:nth-child(2),
#rate-table td:nth-child(3) {
    font-weight: 700;
}

#rate-table td:nth-child(3) {
    color: #ff6b6b;
}

.rate-chart-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

/* Cost Calculator Styles */
.calculator-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calculator-form-section {
    padding-right: 40px;
    border-right: 1px solid var(--border-color);
}

.calc-form-group {
    margin-bottom: 30px;
}

.calc-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-text);
}

.calc-form-group label i {
    color: var(--accent-cyan);
    width: 20px;
    text-align: center;
}

.calc-form-group select,
.calc-form-group input[type="number"] {
    width: 100%;
    padding: 15px;
    background: var(--dark-blue);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calc-form-group select:focus,
.calc-form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(51, 213, 229, 0.3);
}

.area-input-wrapper {
    display: flex;
    gap: 10px;
}

.area-input-wrapper input {
    flex-grow: 1;
}

.area-toggle {
    display: flex;
    background: var(--dark-blue);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.area-btn {
    padding: 0 15px;
    border: none;
    background: transparent;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.area-btn.active {
    background: var(--accent-cyan);
    color: var(--dark-blue);
}

#area-helper-text {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--secondary-text);
    min-height: 20px;
    transition: color 0.3s ease;
}

#area-helper-text.error {
    color: var(--accent-pink);
    font-weight: 500;
}

.calculator-results-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#results-placeholder {
    text-align: center;
    color: var(--secondary-text);
}

#results-placeholder i {
    font-size: 4rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    margin-bottom: 20px;
}

#results-summary.hidden,
#results-placeholder.hidden {
    display: none;
}

#results-summary {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#results-summary h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    font-size: 1.1rem;
}

.result-row span:first-child {
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-row .result-value {
    font-weight: 700;
    color: var(--primary-text);
}

.result-row .result-value.discount {
    color: #ff6b6b;
}

.result-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.result-row.total .result-value {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    background: -webkit-linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disclaimer {
    font-size: 0.8rem;
    text-align: center;
    color: var(--secondary-text);
    margin-top: 20px;
}

#get-proposal-btn {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    font-size: 1.1rem;
}

/* Proposal Modal Styles */
#proposal-modal-overlay .modal-container {
    max-width: 500px;
}

#proposal-modal-overlay form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#proposal-modal-overlay input {
    width: 100%;
    padding: 15px;
    background: var(--dark-blue);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

#proposal-modal-overlay input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.proposal-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.proposal-actions .btn {
    flex: 1;
}

/* --- 6B. PACKAGE COMPARISON SECTION --- */
#package-comparison {
    background-color: var(--card-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background-color: var(--dark-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--card-bg);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-text);
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 15px;
}

.comparison-table th:last-child {
    border-top-right-radius: 15px;
}

.comparison-table th span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--accent-cyan);
    margin-top: 5px;
}

.comparison-table td {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--card-bg);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-text);
    text-align: left;
}

.comparison-table td i.fa-check-circle {
    color: #2ecc71;
}

.comparison-table td i.fa-times-circle {
    color: #e74c3c;
}

/* --- NEW PACKAGE GRID SYSTEM (LEAYOUT FIX) --- */
.package-details-grid {
    display: grid;
    gap: 25px;
    margin-top: 50px;
    /* Mobile First: 1 Column */
    grid-template-columns: 1fr;
}

/* Tablet / Small Laptop: 2 Columns (2x2) */
@media (min-width: 768px) {
    .package-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop: 4 Columns (All in one row) */
@media (min-width: 1200px) {
    .package-details-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- WORLD CLASS CARD DESIGN --- */
.pkg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

/* Hover Effect: Lift & Glow */
.pkg-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

/* Theme Colors for Borders & Hovers */
.bid-theme:hover { border-color: #a0a0a0; box-shadow: 0 10px 30px rgba(160, 160, 160, 0.15); }
.sid-theme:hover { border-color: #33D5E5; box-shadow: 0 10px 30px rgba(51, 213, 229, 0.2); }
.lid-theme:hover { border-color: #E849E8; box-shadow: 0 10px 30px rgba(232, 73, 232, 0.2); }
.lpid-theme:hover { border-color: #FFD700; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); }

/* Most Popular Tag */
.pop-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #33D5E5;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(51, 213, 229, 0.4);
}

/* Header Section */
.pkg-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pkg-badge {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.pkg-card h3 {
    font-size: 1.8rem;
    margin: 15px 0 5px;
    color: #fff;
    font-weight: 700;
}

.bid-theme h3 { color: #e0e0e0; }
.sid-theme h3 { color: #33D5E5; }
.lid-theme h3 { color: #E849E8; }
.lpid-theme h3 { color: #FFD700; }

.pkg-price {
    font-size: 1rem;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    min-height: 60px; /* Aligns content */
}

/* Features List */
.pkg-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
    line-height: 1.4;
}

.pkg-features li i {
    color: #33D5E5;
    margin-top: 4px;
    font-size: 0.8rem;
}

.lpid-theme .pkg-features li i { color: #FFD700; }
.lid-theme .pkg-features li i { color: #E849E8; }

/* Footer & Button */
.pkg-footer {
    margin-top: auto;
    text-align: center;
}

.pkg-warranty {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 15px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}

.pkg-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.pkg-card:hover .pkg-btn {
    background: linear-gradient(90deg, #E849E8, #33D5E5);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(51, 213, 229, 0.3);
}

/* Package Visualizer Styles */
.package-visualizer {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.package-image-container {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#package-display-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.package-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.package-btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--primary-text);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.package-btn.active,
.package-btn:hover {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    color: var(--primary-text);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 73, 232, 0.2);
}

.package-sliders {
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.slider-group {
    text-align: center;
}

.slider-group label {
    font-weight: 500;
    color: var(--secondary-text);
    margin-bottom: 10px;
    display: block;
}

.slider-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--dark-blue);
    border-radius: 5px;
    outline: none;
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-cyan);
    border-radius: 50%;
    border: 2px solid var(--primary-text);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent-cyan);
    border-radius: 50%;
    border: 2px solid var(--primary-text);
    cursor: pointer;
    transition: background 0.3s ease;
}

/* --- 6C. DESIGN QUIZ SECTION --- */
#quiz-container,
#quiz-result {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.quiz-answers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.quiz-answer-btn {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    background: var(--dark-blue);
    color: var(--primary-text);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.quiz-answer-btn:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    border-color: var(--accent-cyan);
}

#quiz-result h2 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

/* --- 7. TESTIMONIALS SECTION --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-testimonial-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-testimonial-card .author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.video-testimonial-card .quote {
    font-style: italic;
    color: var(--secondary-text);
}

/* --- 7B. 3D WALKTHROUGH SECTION --- */
.sketchfab-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.sketchfab-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 8. ACHIEVEMENTS SECTION --- */
#achievements {
    background: var(--card-bg);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievement-item .icon {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.achievement-item h3 {
    font-size: 1.3rem;
}

/* --- 9. BLOG SECTION --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(51, 213, 229, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

/* --- 9B. FAQ SECTION --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary-text);
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 10px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* --- 9C. CALENDLY BOOKING SECTION --- */
.calendly-embed-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- 10. CONTACT US SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-group input {
    width: 50%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(51, 213, 229, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    font-size: 1.8rem;
    color: var(--accent-pink);
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

#form-status {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#form-status.success {
    background-color: rgba(51, 213, 229, 0.2);
    color: var(--accent-cyan);
    display: block;
}

#form-status.error {
    background-color: rgba(232, 73, 232, 0.2);
    color: var(--accent-pink);
    display: block;
}

#submit-btn .spinner-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

/* --- FOOTER --- */
.footer {
    background-color: #080824;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-col .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-text);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-col .social-links a:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-text);
}

.footer-col img {
    max-width: 150px;
}

.app-download-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-text);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.app-store-btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--accent-cyan);
}

.app-store-btn i {
    font-size: 2rem;
}

.app-store-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.app-store-btn span strong {
    font-size: 1rem;
    color: var(--primary-text);
    font-weight: 600;
}

/* --- UTILITIES --- */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    color: var(--primary-text);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: scale(1.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-view-more {
    text-align: center;
    margin-top: 50px;
}

/* --- LOGIN/SIGNUP MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.modal-tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    color: var(--secondary-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.modal-tab-btn.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.modal-form-content {
    display: none;
}

.modal-form-content.active {
    display: block;
}

.modal-form-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form-content h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-form-content input {
    width: 100%;
    padding: 15px;
    background: var(--dark-blue);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
}

.modal-form-content .btn {
    width: 100%;
    margin-top: 10px;
}

.social-login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: var(--secondary-text);
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.social-login-divider::before {
    left: 0;
}

.social-login-divider::after {
    right: 0;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-social {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-social i {
    font-size: 1.2rem;
}

.btn-social.google:hover {
    background-color: #db4437;
    border-color: #db4437;
}

.btn-social.facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}

.nav-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-text);
}

.nav-user-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
}

.nav-user-info .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* =========================================
   USER PROFILE MENU (LOGGED IN STATE)
   ========================================= */

.user-profile-menu {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nav-hover);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nav-accent);
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nav-color);
    max-width: 80px; /* Truncate long names */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-trigger i {
    font-size: 0.8rem;
    color: #aaa;
    transition: transform 0.3s;
}

/* Dropdown Styles */
.profile-dropdown {
    position: absolute;
    top: 120%; /* Below header */
    right: 0;
    width: 220px;
    background: #1a1a40; /* Darker than header */
    border: 1px solid var(--nav-hover);
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

/* Arrow indicator */
.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #1a1a40;
    border-left: 1px solid var(--nav-hover);
    border-top: 1px solid var(--nav-hover);
    transform: rotate(45deg);
}

/* Show on Hover */
.user-profile-menu:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-profile-menu:hover .profile-trigger i {
    transform: rotate(180deg);
    color: var(--nav-hover);
}

/* Dropdown Items */
.profile-header {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.profile-header .greeting {
    font-size: 0.8rem;
    color: #aaa;
}

.profile-header strong {
    color: #fff;
    font-size: 1rem;
}

.profile-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.profile-dropdown li a:hover {
    background: rgba(51, 213, 229, 0.1);
    color: var(--nav-hover);
    padding-left: 25px;
}

.profile-dropdown li a i {
    width: 20px;
    text-align: center;
    color: var(--nav-accent);
}

.profile-dropdown .divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 5px 0;
}

.profile-dropdown .logout-link:hover {
    background: rgba(231, 76, 60, 0.1); /* Red tint */
    color: #e74c3c; /* Red color */
}

/* Mobile Adjustments */
@media (max-width: 1150px) {
    .user-profile-menu {
        display: none !important; /* Hide on mobile header, show in sidebar instead */
    }
}

/* ===================================================
   !!! TWENTYTWENTY SLIDER CRITICAL FIX !!!
   This overrides the global 'box-sizing: border-box' 
   for the plugin to work correctly.
   =================================================== */
.twentytwenty-wrapper *,
.twentytwenty-wrapper *:before,
.twentytwenty-wrapper *:after {
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

/* ==============================================
   MOBILE USER PROFILE MENU (APP STYLE)
   ============================================== */

/* The Container */
#mobile-user-view {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

/* User Card (Trigger) */
.mobile-user-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.mobile-user-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nav-hover);
}

.user-text {
    display: flex;
    flex-direction: column;
}

.welcome-label {
    font-size: 0.75rem;
    color: #aaa;
}

.user-text h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow-icon {
    color: #777;
    transition: transform 0.3s ease;
}

/* Rotate Arrow when active */
.mobile-user-card.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--nav-hover);
}

/* List Items */
.mobile-user-dropdown li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    transition: 0.2s;
}

.mobile-user-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--nav-hover);
}

.mobile-user-dropdown li a i {
    width: 20px;
    text-align: center;
    color: var(--nav-accent);
}

.mobile-user-dropdown .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 15px;
}

.logout-item {
    color: #e74c3c !important;
}

.logout-item:hover {
    background: rgba(231, 76, 60, 0.1) !important;
}

/* Mobile User Dropdown Animation Fix */
.mobile-user-dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-user-dropdown.active {
    max-height: 400px; /* Increased height to fit new items */
}

/* Add gap between icon and text in dropdowns */
.dropdown-menu li a i, 
.mega-menu li a i {
    width: 20px; /* Fixed width for alignment */
    text-align: center;
    margin-right: 8px;
    color: var(--nav-accent); /* Pink/Cyan color */
    transition: transform 0.3s;
}

.dropdown-menu li a:hover i, 
.mega-menu li a:hover i {
    transform: scale(1.1); /* Slight zoom on hover */
    color: #fff; /* White on hover */
}

/* --- AGOID LOGO ULTIMATE MATCH --- */

/* Font Import: 'Orbitron' is best for this futuristic look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');

/* 1. Main Logo Container */
.logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    z-index: 100;
}

/* 2. Text Styling (Perfectly Equal Size) */
.brand-text {
    position: relative;
    z-index: 10; /* Text sits above back rings */
    display: flex;
    align-items: center;
    gap: 1px; /* Very tight spacing */
}

.char-a, .char-rest {
    font-family: 'Orbitron', sans-serif; /* High-tech font */
    font-weight: 900; /* Maximum Bold */
    font-size: 38px;  /* Exact size for header balance */
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px; /* Compact look */
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Deep shadow for 3D pop */
}

/* 'A' Alignment Fix */
.char-a {
    margin-right: -2px; /* Pulls A closer to G */
}

/* 3. The Double Ring System */
.ring-system {
    position: absolute;
    top: 50%;
    left: 28px; /* Positioned exactly between A and G */
    width: 0;
    height: 0;
    /* 3D Tilted Perspective */
    transform: rotateZ(-20deg) rotateX(75deg);
    transform-style: preserve-3d;
}

/* 4. Common Ring Styles */
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid transparent;
    animation: spinRing 3s linear infinite;
}

/* --- Ring 1: Cyan (The Bright Outer/Top Ring) --- */
.cyan-ring {
    z-index: 20; /* On top of everything */
    border-top-color: #00FFFF; /* Bright Cyan */
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    
    /* The Magical Glow Effect */
    filter: drop-shadow(0 0 8px #00FFFF); 
    box-shadow: 0 -5px 15px rgba(0, 255, 255, 0.4);
}

/* --- Ring 2: Pink (The Inner/Bottom Ring) --- */
.pink-ring {
    z-index: 5; /* Behind the Cyan ring */
    width: 80px; /* Slightly smaller for depth */
    height: 80px;
    border-left-color: #FF00FF; /* Bright Pink/Magenta */
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    
    /* Pink Glow Effect */
    filter: drop-shadow(0 0 8px #FF00FF);
    box-shadow: -5px 0 15px rgba(255, 0, 255, 0.4);
    
    /* Spin slightly delayed for realistic orbit */
    animation: spinRing 3s linear infinite reverse; 
    /* Reverse makes it look like intersecting orbits */
}

/* --- ANIMATIONS --- */

@keyframes spinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .char-a, .char-rest { font-size: 28px; }
    .ring { width: 65px; height: 65px; border-width: 3px; }
    .pink-ring { width: 55px; height: 55px; }
    .ring-system { left: 20px; }
}

/* --- LIQUID LIGHT TEXT EFFECT FOR LOGO --- */

.char-rest {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1px;
    
    /* 1. Gradient Background (White -> Cyan -> Pink -> White) */
    background: linear-gradient(
        110deg, 
        #ffffff 30%, 
        rgba(51, 213, 229, 0.9) 45%, /* Cyan Glow */
        rgba(232, 73, 232, 0.9) 55%, /* Pink Glow */
        #ffffff 70%
    );
    
    /* 2. Text-Specific Properties */
    background-size: 200% auto; /* গ্রেডিয়েন্টকে বড় করা যাতে মুভ করানো যায় */
    color: transparent; /* টেক্সট নিজে স্বচ্ছ হবে */
    -webkit-background-clip: text; /* ব্যাকগ্রাউন্ডটি শুধু টেক্সটের ভেতরে দেখা যাবে */
    background-clip: text;
    
    /* 3. Shadow for Depth (ব্যাকগ্রাউন্ড ক্লিপের সাথে শ্যাডো কাজ করে না, তাই ফিল্টার ব্যবহার করা হলো) */
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
    
    /* 4. Animation */
    animation: shineText 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes shineText {
    0% {
        background-position: 200% center; /* আলো ডান দিকে থাকবে */
    }
    100% {
        background-position: -200% center; /* আলো বাম দিকে চলে যাবে */
    }
}

/* --- WORLD CLASS MOBILE BOTTOM NAV CSS --- */

/* 1. Base Layout (Hidden on Desktop) */
.mobile-bottom-nav {
    display: none; /* Default hidden for PC */
}

/* 2. Mobile Styles (Only for screens < 768px) */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px; /* Not too thick */
        background: rgba(10, 10, 42, 0.95); /* Deep Dark Blue */
        backdrop-filter: blur(15px); /* Glassmorphism */
        -webkit-backdrop-filter: blur(15px);
        z-index: 9999;
        
        /* Top Border Glow */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
        
        /* Animation for Scroll Hide/Show */
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Hide State (When scrolling down) */
    .mobile-bottom-nav.nav-hidden {
        transform: translateY(100%); /* Slides down */
    }

    /* 3. Nav Item Styling */
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #8892b0; /* Inactive Color (Grey) */
        width: 20%; /* Equal space for 5 items */
        height: 100%;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Icon Styling */
    .nav-icon {
        font-size: 20px;
        margin-bottom: 4px;
        transition: transform 0.2s ease;
    }

    /* Label Styling */
    .nav-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    /* --- ACTIVE STATE (The Magic Part) --- */
    .mobile-nav-item.active {
        color: #ffffff;
    }

    /* Active Icon Gradient & Glow */
    .mobile-nav-item.active .nav-icon i {
        background: linear-gradient(180deg, #33D5E5, #E849E8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 5px rgba(51, 213, 229, 0.5));
        transform: translateY(-2px); /* Slight lift */
    }

    /* Active Top Indicator Line */
    .mobile-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, #33D5E5, #E849E8);
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(51, 213, 229, 0.6);
    }

    /* Touch Feedback (Ripple Effect) */
    .mobile-nav-item:active {
        transform: scale(0.95);
    }
}

/* =======================================================
   EMERGENCY FIX: MOBILE SIDEBAR MENU (CORRECTED)
   ======================================================= */

/* 1. Sidebar Container Reset */
.mobile-sidebar {
    width: 280px !important; /* মোবাইলে স্ট্যান্ডার্ড সাইজ */
    max-width: 85vw !important;
    background: #0A0A2A !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* হরাইজন্টাল স্ক্রল বন্ধ */
}

/* 2. List Reset (মেইন সমস্যা এখানে ছিল) */
.mobile-nav-list,
.mobile-nav-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* 3. Link Wrapper (Flexbox for alignment) */
.mobile-link-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 20px !important; /* নিরাপদ প্যাডিং */
    width: 100% !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

/* 4. Text Styling (Cutting Fix) */
.mobile-link-wrapper a {
    flex: 1;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    text-align: left !important;
    
    /* টেক্সট যেন কেটে না যায় বা ভেঙে না যায় */
    white-space: normal !important; 
    overflow: visible !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 5. Arrow Icon Fix */
.mobile-arrow {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 10px !important;
    transition: transform 0.3s ease;
}

/* Active State */
.mobile-nav-item.open .mobile-arrow {
    transform: rotate(180deg);
    color: #33D5E5 !important; /* Cyan */
}

.mobile-nav-item.open .mobile-link-wrapper {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-item.open .mobile-link-wrapper a {
    color: #33D5E5 !important;
}

/* 6. Submenu Fix (Broken Box Issue Solved) */
.mobile-submenu {
    width: 100% !important;
    background-color: #05051a !important; /* মেইন ব্যাকগ্রাউন্ড থেকে একটু ডার্ক */
    display: none; /* JS টগল করবে */
    padding: 5px 0 !important;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);
}

/* সাবমেনু যখন ওপেন হবে */
.mobile-nav-item.open .mobile-submenu {
    display: block !important;
}

.mobile-submenu li a {
    display: block !important;
    /* ইন্ডেন্টেশন: সাবমেনু বুঝানোর জন্য বামে বেশি প্যাডিং */
    padding: 12px 20px 12px 40px !important; 
    color: #b0b0d0 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-bottom: none !important;
    text-align: left !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
    color: #fff !important;
    padding-left: 45px !important; /* হোভারে একটু সরবে */
    background: rgba(255, 255, 255, 0.05);
}

/* Group Titles (Mega Menu Fix) */
.mobile-group-title {
    padding: 15px 20px 5px 40px !important;
    font-size: 12px !important;
    text-transform: uppercase;
    color: #E849E8 !important; /* Pink Accent */
    font-weight: 700;
    letter-spacing: 1px;
}

/* =======================================================
   URGENT FIX: MAIN HEADER LOGO ALIGNMENT (MOBILE ONLY)
   Description: Fixes 'A' size issue without touching Sidebar
   ======================================================= */

@media (max-width: 768px) {
    
    /* 1. হেডার লোগোর কন্টেইনার ফিক্স */
    .header .logo-container {
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin-left: 0 !important;
        padding-left: 5px !important;
    }

    /* 2. 'A' এবং 'GOID' এর ফন্ট সাইজ জোর করে সমান করা */
    .header .logo-container .char-a, 
    .header .logo-container .char-rest {
        font-family: 'Orbitron', sans-serif !important;
        font-size: 28px !important; /* মোবাইলের জন্য পারফেক্ট সাইজ */
        font-weight: 900 !important;
        line-height: 1 !important;
        display: inline-block !important;
    }

    /* 3. 'A' এর কালার এবং পজিশন ফিক্স */
    .header .logo-container .char-a {
        color: #ffffff !important;
        margin-right: -1px !important; /* 'G' এর সাথে লেগে থাকার জন্য */
        text-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;
    }

    /* 4. 'GOID' এর স্টাইল নিশ্চিত করা */
    .header .logo-container .char-rest {
        /* গ্রেডিয়েন্ট ঠিক থাকবে, শুধু সাইজ কন্ট্রোল করা হলো */
        background-size: 200% auto !important;
    }

    /* 5. রিং সিস্টেম (Ring System) এর পজিশন ঠিক করা যাতে লেখার মাঝখানে থাকে */
    .header .logo-container .ring-system {
        left: 20px !important; /* রিং টেক্সটের মাঝখানে এলাইন করা */
        top: 50% !important;
        transform: translate(0, -50%) rotateZ(-20deg) rotateX(75deg) !important;
    }

    /* রিং এর সাইজ মোবাইলের টেক্সট অনুযায়ী এডজাস্ট করা */
    .header .logo-container .ring {
        width: 60px !important;
        height: 60px !important;
        border-width: 3px !important;
    }
    
    .header .logo-container .pink-ring {
        width: 50px !important;
        height: 50px !important;
    }
}

/* =======================================================
   HERO SECTION MOBILE RESPONSIVE FIX (WORLD CLASS)
   Title Size, Spacing & Button Gap Fix
   ======================================================= */

@media (max-width: 768px) {
    
    /* 1. Side Spacing (বামে ও ডানে ফাকা জায়গা তৈরি করা) */
    .hero-content {
        width: 100% !important;
        padding-left: 25px !important;  /* বামে স্পেস */
        padding-right: 25px !important; /* ডানে স্পেস */
        box-sizing: border-box !important; /* প্যাডিং যেন উইডথ না বাড়ায় */
    }

    /* 2. Title Font Size Fix (বড় টাইটেল ছোট ও সুন্দর করা) */
    .hero-content h1 {
        font-size: 2.3rem !important; /* 4rem থেকে কমিয়ে 2.3rem করা হলো */
        line-height: 1.2 !important;  /* লাইনের মাঝের গ্যাপ কমানো হলো */
        margin-bottom: 15px !important;
        word-wrap: break-word !important; /* শব্দ যেন ভেঙে না যায় */
    }

    /* Description Text Adjustment */
    .hero-content p {
        font-size: 1rem !important; /* প্যারাগ্রাফ সাইজ স্ট্যান্ডার্ড করা */
        line-height: 1.6 !important;
        margin-bottom: 35px !important; /* বাটনের সাথে দূরত্ব */
        padding: 0 5px !important;
    }

    /* 3. Button Spacing Fix (বাটন দুটো আলাদা করা) */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important; /* বাটনগুলো নিচে নিচে আসবে */
        align-items: center !important;    /* মাঝখানে থাকবে */
        gap: 20px !important;              /* দুটি বাটনের মাঝে ২০ পিক্সেল গ্যাপ */
        width: 100% !important;
    }

    /* বাটনের সাইজ ও মার্জিন রিসেট */
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important; /* বাটনগুলো দেখতে খুব চওড়া লাগবে না */
        margin: 0 !important; /* আগের মার্জিন রিসেট */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* --- GLOBAL HEADER NOTIFICATION STYLES --- */

/* 1. Wrapper positioning */
.header-notif-wrapper {
    position: relative;
    margin-right: 15px; /* মোবাইল টগল থেকে দূরত্ব */
    display: flex;
    align-items: center;
}

/* 2. The Bell Button (Glassy Look) */
.header-notif-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.header-notif-btn:hover,
.header-notif-btn.active {
    background: rgba(51, 213, 229, 0.15); /* Cyan Tint */
    border-color: #33D5E5;
    color: #33D5E5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 213, 229, 0.2);
}

/* 3. Notification Badge (Pulse Effect) */
.header-notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #E849E8; /* Pink Accent */
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0A0A2A; /* Match header bg to create cut-out look */
    animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 73, 232, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(232, 73, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 73, 232, 0); }
}

/* 4. Dropdown Styles (Glassmorphism) */
.header-notif-dropdown {
    position: absolute;
    top: 130%;
    right: -60px; /* Aligned slightly to the right */
    width: 320px;
    background: #0f0f36;
    border: 1px solid rgba(51, 213, 229, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10002;
    overflow: hidden;
}

.header-notif-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow */
.header-notif-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 74px; /* Adjust based on icon position */
    width: 12px;
    height: 12px;
    background: #0f0f36;
    border-left: 1px solid rgba(51, 213, 229, 0.2);
    border-top: 1px solid rgba(51, 213, 229, 0.2);
    transform: rotate(45deg);
}

/* Dropdown Internals */
.header-notif-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-notif-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.header-notif-header button {
    background: none;
    border: none;
    color: #33D5E5;
    font-size: 0.8rem;
    cursor: pointer;
}

.header-notif-list {
    max-height: 300px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background 0.2s;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notif-item.unread {
    background: rgba(51, 213, 229, 0.05);
    border-left: 3px solid #33D5E5;
}

.notif-item img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.notif-item div p {
    margin: 0;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.3;
}

.notif-item div strong {
    color: #fff;
}

.notif-item div small {
    font-size: 0.75rem;
    color: #888;
}

.header-notif-footer {
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.header-notif-footer a {
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.empty-notif {
    padding: 30px;
    text-align: center;
    color: #666;
}
.empty-notif i { font-size: 2rem; margin-bottom: 10px; display: block; opacity: 0.5; }

/* 5. Mobile Adjustments */
@media (max-width: 768px) {
    .header-notif-wrapper {
        margin-right: 5px; /* মোবাইলে গ্যাপ একটু কমানো */
    }
    
    .header-notif-dropdown {
        position: fixed; /* মোবাইলে ফিক্সড পজিশন যাতে স্ক্রিনের বাইরে না যায় */
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 90%;
        right: auto;
    }
    
    .header-notif-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .header-notif-dropdown::before {
        display: none; /* মোবাইলে অ্যারো অফ */
    }
}

/* =======================================================
   HEADER NOTIFICATION POSITION FIX (FINAL)
   ======================================================= */

/* 1. Container Alignment (Desktop & Mobile) */
.nav-actions {
    display: flex !important;
    align-items: center !important; /* উল্লম্বভাবে মাঝখানে রাখে */
    gap: 15px !important; /* আইটেমগুলোর মাঝখানে স্পেস */
    height: 100%;
}

/* 2. Notification Wrapper Fix */
.header-notif-wrapper {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important; /* আগের মার্জিন রিসেট */
    position: relative;
    z-index: 1002;
}

/* 3. Mobile Specific Positioning (3-Dot এর বামে) */
@media (max-width: 1150px) {
    .nav-actions {
        gap: 10px !important; /* মোবাইলে গ্যাপ একটু কম */
        margin-left: auto; /* ডানদিকে ঠেলে দেয় */
    }

    /* মোবাইলে লগিন বাটন হাইড করা (কারণ এটা সাইডবারে থাকে) */
    #login-signup-btn, 
    #user-profile-menu {
        display: none !important; 
    }

    /* নোটিফিকেশন বাটন মোবাইলেও যেন দেখা যায় */
    .header-notif-wrapper {
        display: flex !important;
    }

    /* ড্রপডাউন পজিশন ফিক্স (মোবাইল) */
    .header-notif-dropdown {
        position: fixed !important;
        top: 70px !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px) !important;
        width: 90% !important;
        max-width: 350px;
        right: auto !important;
    }
    
    .header-notif-dropdown.active {
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* ==============================================
   WORLD CLASS MOUSE CURSOR (NEON ORBIT)
   ============================================== */

/* 1. Hide Default Cursor on Desktop */
@media (min-width: 992px) {
    body, a, button, input, select, textarea {
        cursor: none !important; /* ডিফল্ট কার্সার হাইড করা হলো */
    }
}

/* 2. The Inner Dot (Sharp Precision) */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #33D5E5; /* Cyan */
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000; /* সবার উপরে থাকবে */
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(51, 213, 229, 0.8);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    display: none; /* মোবাইলে হাইড থাকবে */
}

/* 3. The Outer Ring (Fluid Orbit) */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(232, 73, 232, 0.5); /* Pink Transparent */
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999; /* Dot এর ঠিক নিচে */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
    box-shadow: 0 0 15px rgba(232, 73, 232, 0.2);
    display: none; /* মোবাইলে হাইড থাকবে */
    
    /* লোগোর মতো রিং-এ একটু গ্যাপ এবং রোটেশন */
    border-top-color: #33D5E5; /* Cyan Accent on top */
    animation: cursorSpin 4s linear infinite;
}

/* 4. Rotation Animation (Matching Logo) */
@keyframes cursorSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 5. Hover State (When hovering links/buttons) */
body.hovering .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: #E849E8; /* Pink on hover */
    box-shadow: 0 0 15px rgba(232, 73, 232, 1);
}

body.hovering .cursor-outline {
    width: 70px;
    height: 70px;
    border-color: rgba(51, 213, 229, 0.8); /* Cyan glow on hover */
    border-width: 1px;
    background-color: rgba(255, 255, 255, 0.02); /* Slight glass fill */
}

/* 6. Mobile Optimization */
@media (min-width: 992px) {
    .cursor-dot, .cursor-outline {
        display: block;
    }
}

/* Global Cart Icon Style */
.header-cart-wrapper {
    position: relative;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

/* আইকনের স্টাইল (নোটিফিকেশন বেলের মতো) */
.header-cart-wrapper .header-notif-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-cart-wrapper .header-notif-btn:hover {
    border-color: #33D5E5;
    color: #33D5E5;
    background: rgba(51, 213, 229, 0.1);
}

/* ব্যাজ (Badge) স্টাইল - পিঙ্ক কালার */
#global-cart-count {
    background: #E849E8; 
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border: 2px solid #0A0A2A;
}

/* --- CRITICAL FIXES FOR MINI CART & POPUPS --- */

/* 1. Mini Cart Overlay - সবার উপরে আনা */
.mini-cart-overlay {
    z-index: 2000 !important;
}

/* 2. Mini Cart Drawer - ওভারলে-র ঠিক উপরে */
.mini-cart {
    z-index: 2001 !important;
}

/* 3. Checkout Button Fix - ক্লিক কাজ করার জন্য */
.checkout-btn {
    position: relative;
    z-index: 10;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* 4. Reward Wallet - কার্টের নিচে পাঠানো */
#reward-wallet-box {
    z-index: 900 !important; /* Geo Popup বা Cart এর নিচে থাকবে */
}

/* 5. Geo Popup - কার্টের নিচে পাঠানো */
.geo-popup {
    z-index: 950 !important; 
}

/* --- NEW BOOKING SECTION STYLES --- */
.booking-section {
    background: linear-gradient(to right, #080824, #0f0f36);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.booking-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(51, 213, 229, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side Styling */
.booking-info .sub-title {
    color: var(--accent-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.booking-info h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.booking-info p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-benefits {
    list-style: none;
    padding: 0;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.booking-benefits li:hover {
    transform: translateX(10px);
    border-color: var(--accent-cyan);
    background: rgba(51, 213, 229, 0.05);
}

.booking-benefits .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.booking-benefits strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.booking-benefits span {
    font-size: 0.9rem;
    color: #aaa;
}

/* Right Side Styling */
.booking-widget-area {
    position: relative;
    min-height: 550px; /* ফিক্সড হাইট যাতে ক্যালেন্ডার লোড হলে লাফ না দেয় */
    background: #14143a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Placeholder Card */
.placeholder-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle at center, #1a1a4a 0%, #14143a 100%);
    transition: opacity 0.5s ease;
}

.placeholder-card .main-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(51, 213, 229, 0.4));
}

.placeholder-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.btn-glow {
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(232, 73, 232, 0.4);
    animation: glowBtn 2s infinite alternate;
}

@keyframes glowBtn {
    from { box-shadow: 0 0 10px rgba(232, 73, 232, 0.4); }
    to { box-shadow: 0 0 25px rgba(51, 213, 229, 0.6); }
}

/* Calendly Iframe Fix */
#calendly-container {
    width: 100%;
    height: 100%;
    opacity: 0; /* JS দিয়ে ভিজিবল করা হবে */
    transition: opacity 0.5s ease;
}

#calendly-container iframe {
    min-height: 650px; /* ক্যালেন্ডার যাতে কেটে না যায় */
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr; /* মোবাইলে এক কলাম */
    }
    .booking-info {
        text-align: center;
    }
    .booking-benefits li {
        text-align: left;
    }
}