:root {
    --primary: #000000;
    --secondary: #333333;
    --accent: #6366f1;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Redesign with Glassmorphism & Mega Menu */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.site-header.header-hidden {
    transform: translateY(-100%) !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Col 1: Logo */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text span {
    color: var(--accent);
}

/* Col 2: Navigation (Static parent for absolute mega menu) */
.main-navigation {
    position: static !important;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    position: static !important;
}

.main-navigation li {
    position: static !important;
}

.main-navigation a {
    color: rgba(15, 23, 42, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -1.2rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.main-navigation a:hover {
    color: #0f172a;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation .current-menu-item a {
    color: #0f172a;
}

.main-navigation .current-menu-item a::after {
    width: 100%;
}

.main-navigation .submenu-arrow {
    font-size: 14px;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.main-navigation li:hover .submenu-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Panels */
.qd-mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 999;
}

.main-navigation li.has-mega-menu:hover .qd-mega-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.qd-mega-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.qd-mega-grid {
    display: grid;
    grid-template-columns: 1.1fr 2.9fr;
    gap: 3.5rem;
}

/* Mega Promo Column */
.qd-mega-promo {
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.005) 100%);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.qd-mega-promo .promo-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.qd-mega-promo .promo-title {
    font-size: 1.4rem;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.qd-mega-promo .promo-desc {
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.qd-mega-promo .promo-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.qd-mega-promo .promo-link:hover {
    color: var(--accent);
}

/* Mega Services Links Grid */
.qd-mega-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-content: center;
}

.qd-mega-link-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.qd-mega-link-item:hover {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.qd-mega-link-item .item-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.qd-mega-link-item:hover .item-icon {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.qd-mega-link-item .item-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.qd-mega-link-item .item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.qd-mega-link-item .item-desc {
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.5);
    line-height: 1.4;
}

/* Mega Store Products Grid */
.qd-mega-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qd-mega-product-item {
    background: rgba(0,0,0,0.01);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.qd-mega-product-item:hover {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.qd-mega-product-item .product-thumb-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qd-mega-product-item .product-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.qd-mega-product-item:hover .product-thumb-wrapper img {
    transform: scale(1.05);
}

.qd-mega-product-item .product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    justify-content: space-between;
}

.qd-mega-product-item .product-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.qd-mega-product-item .product-price {
    font-size: 0.95rem;
    font-weight: 800;
}

.qd-mega-product-item .price-current {
    color: #10b981;
}

.qd-mega-product-item .price-free {
    color: #6366f1;
}

.qd-mega-product-item.static-item .product-thumb-wrapper.static-thumb {
    color: var(--accent);
    font-size: 1.8rem;
}

.qd-mega-product-item.static-item .product-tag-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
}

/* Mega Projects Showcase Grid */
.qd-mega-projects-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qd-mega-project-show {
    background: rgba(0,0,0,0.01);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.qd-mega-project-show:hover {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.qd-mega-project-show .project-img-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qd-mega-project-show .project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.qd-mega-project-show:hover .project-img-wrapper img {
    transform: scale(1.05);
}

.qd-mega-project-show .project-img-wrapper.static-img {
    color: var(--accent);
    font-size: 1.8rem;
}

.qd-mega-project-show .project-show-info {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.qd-mega-project-show .project-show-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
}

.qd-mega-project-show .project-show-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

/* Mega Articles List */
.qd-mega-articles {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}

.qd-mega-article-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.qd-mega-article-item:hover {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.04);
    transform: translateX(5px);
}

.qd-mega-article-item .article-date {
    font-size: 0.7rem;
    color: rgba(15, 23, 42, 0.4);
    font-weight: 600;
}

.qd-mega-article-item .article-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

/* Col 3: Smart Search & Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.qd-search-wrapper {
    position: relative;
    z-index: 1002;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    padding: 0.3rem 0.5rem 0.3rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 180px;
    position: relative;
}

.search-form:focus-within {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
    max-width: 260px;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.search-field {
    background: none;
    border: none;
    color: #0f172a;
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    padding-right: 1.8rem;
}

/* Search Clear Button */
.search-clear {
    background: none;
    border: none;
    color: rgba(15, 23, 42, 0.4);
    font-size: 1.15rem;
    position: absolute;
    right: 42px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    width: 18px;
    height: 18px;
}

.search-clear:hover {
    color: #0f172a;
}

.search-form.has-text .search-clear {
    display: flex;
}

.search-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-submit:hover {
    background: #4f46e5;
    transform: scale(1.05);
}

/* Search Dropdown Panel */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: qd-dropdown-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes qd-dropdown-slide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-results-dropdown.active {
    display: flex;
}

/* Result Items styling */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-align: left;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.selected {
    background: rgba(0, 0, 0, 0.03);
}

.search-result-item .result-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-result-item:hover .result-icon,
.search-result-item.selected .result-icon {
    background: var(--accent-gradient);
    color: #fff;
}

.search-result-item .result-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    overflow: hidden;
}

.search-result-item .result-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.search-result-item .result-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.4);
    letter-spacing: 0.5px;
}

.search-result-item:hover .result-badge,
.search-result-item.selected .result-badge {
    color: var(--accent);
}

.search-results-dropdown .search-status {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 600;
}

.search-results-dropdown .search-status i.spin {
    animation: qd-spin 1s linear infinite;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--accent);
}

@keyframes qd-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hamburger Mobile Menu Toggle Style */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Tablet Responsive Visual Fixes */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .main-navigation ul {
        gap: 1.5rem;
    }
    .header-actions {
        gap: 1.2rem;
    }
}

@media (max-width: 1080px) {
    .main-navigation ul {
        gap: 1rem;
    }
    .main-navigation a {
        font-size: 0.9rem;
    }
    .search-form {
        max-width: 150px;
    }
    .search-form:focus-within {
        max-width: 200px;
    }
}

/* Mobile Responsive Mega Menu Styles */
@media (max-width: 991px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .header-inner {
        gap: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 2rem;
        z-index: 998;
    }
    
    .main-navigation.active {
        display: block !important;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .main-navigation a {
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    }
    
    .main-navigation li:last-child a {
        border-bottom: none;
    }
    
    .qd-mega-menu-panel {
        position: relative;
        top: 0;
        background: rgba(0,0,0,0.01);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-top: none;
        border-bottom: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.4s ease-out;
    }
    
    .main-navigation li.has-mega-menu:hover .qd-mega-menu-panel {
        transform: none;
    }
    
    .main-navigation li.has-mega-menu.active-mobile .qd-mega-menu-panel {
        max-height: 1200px;
    }
    
    .qd-mega-menu-container {
        padding: 1.5rem 1rem;
    }
    
    .qd-mega-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qd-mega-promo {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .qd-mega-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qd-mega-products-grid,
    .qd-mega-projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        max-width: 120px;
        padding: 0.2rem 0.4rem 0.2rem 0.8rem;
    }
    
    .search-form:focus-within {
        max-width: 180px;
    }
    
    .search-results-dropdown {
        width: 280px;
        right: -60px;
    }
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-white:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn-white:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}

.btn-white:hover:after {
    left: 0;
}

.btn-outline-white {
    background-color: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    position: relative;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

/* Breadcrumbs - Fixed Professional Style */
.qd-breadcrumbs {
    margin-top: 100px; /* Added gap from fixed header */
    padding: 1.5rem 0;
    background: transparent;
    position: relative;
    z-index: 100;
}

#qd-bc-pill.breadcrumbs-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 12px 28px !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    display: inline-flex !important;
}

.breadcrumbs-list li {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: nowrap !important;
}

.breadcrumbs-list li::before {
    display: none !important;
}

.breadcrumbs-list a {
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none !important;
}

.breadcrumbs-list a:hover {
    color: var(--accent);
}

.breadcrumbs-list .separator {
    color: var(--border);
    font-size: 1.1rem;
    font-weight: 300;
}

.breadcrumbs-list span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .qd-breadcrumbs { text-align: center; }
    .breadcrumbs-list { padding: 8px 15px; font-size: 0.65rem; gap: 8px !important; }
}

/* Hero */
.hero {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: white;
}

.hero-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.hero-intro {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-seo-snippet {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.circular-hero-img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    animation: glow-pulse 3s infinite ease-in-out;
    transition: var(--transition);
}

.circular-hero-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255,255,255,0.4);
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}

.image-placeholder.circular {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* About Me */
.about-section {
    padding: 10rem 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--border);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content .section-title {
    text-align: left;
    margin-left: 0;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 2rem 0 3rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
}

.about-actions {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Services */
.services {
    padding: 10rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-main);
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    letter-spacing: 1px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.12);
    transform: translateY(-15px);
    background: #fff;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-link i {
    font-size: 1.2rem;
}

/* Projects */
.projects {
    padding: 10rem 0;
    background-color: #f9fafb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.project-item {
    position: relative;
    transition: var(--transition);
}

/* Stagger effect for even items */
.project-item:nth-child(even) {
    margin-top: 5rem;
}

.project-card {
    background: #fff;
    border-radius: 40px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-thumb {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background-color: var(--bg-light);
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: all 0.5s ease;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--accent);
}

.project-item:hover .project-card {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

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

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

.project-item:hover .overlay-content {
    transform: translateY(0);
}

.project-info {
    padding: 2rem 1rem 1rem;
}

.project-meta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.project-meta p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 8rem;
}

.section-footer {
    text-align: center;
    margin-top: 5rem;
}

.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    background: var(--bg-light);
    border-radius: 24px;
    border: 2px dashed var(--border);
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.08);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-meta h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.client-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 2rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.dark-theme .client-meta h4 {
    color: white;
}

.client-meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dark-theme .client-meta span {
    color: rgba(255,255,255,0.6);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 10rem 0;
    background-color: #fcfcfc;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.faq-header {
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-content-inner {
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
    background-color: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.contact-details {
    background: #0f172a;
    color: #fff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.detail-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.detail-text p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-area {
    padding: 5rem;
}

.contact-form-area h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    border-radius: 15px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-details, .contact-form-area {
        padding: 3rem;
    }
}

/* Premium Popup / Toast */
#form-response {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    padding: 3rem 4rem;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
    display: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(0,0,0,0.05);
}

#form-response.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#form-response .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

#form-response.success .icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

#form-response.error .icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

#form-response h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

#form-response p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.popup-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .contact-form-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    padding: 8rem 0 0;
    background-color: #0f172a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo-text {
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    color: #9ca3af;
}

.footer-links ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 8rem 0;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 2.5rem;
    }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero {
        padding: 10rem 0 6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-navigation {
        display: none;
    }
}

/* Elite Auth Pages Styling */
.auth-page-wrapper {
    padding: 15rem 0 10rem;
    background: #fcfcfc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.auth-card {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 6rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.auth-header h2 {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
    margin-bottom: 0.8rem;
}

.auth-form label {
    font-size: 0.75rem;
    color: var(--accent);
}

.auth-form input {
    border: 1px solid #f0f0f0;
    padding: 1.3rem;
    font-size: 1.05rem;
}

.auth-form input:focus {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
}

.auth-social {
    margin-bottom: 3rem;
}

/* Ensure Google Button is centered and styled */
.auth-social .g_id_signin {
    display: flex;
    justify-content: center;
}

.login-modal {
    z-index: 3000;
}

.login-modal-overlay {
    z-index: 2999;
}

/* Account Dropdown */
.account-dropdown-wrapper {
    position: relative;
}

.account-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.btn-join {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    border: none;
}

.account-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 250px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border: 1px solid #eee;
}

.account-toggle:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
}

.account-menu .menu-item:hover {
    background: var(--bg-light);
}

.account-menu .menu-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.account-menu .item-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.account-menu .item-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-main);
    font-weight: 600;
    border-radius: 10px;
}

.account-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

/* Login Modal Core */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    z-index: 2999;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 40px;
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 5rem;
    text-align: center;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
}

.login-modal.active, .login-modal-overlay.active {
    display: block !important;
    opacity: 1;
}

.login-modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #ccc;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
