:root{
      --bg-dark: #050915;
      --bg-darker: #020511;
      --card-bg: #0b1221;
      --accent: #1fb64f;
      --accent-soft: #f3f7ff;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-soft: #1e293b;
      --brand-blue: #2563eb;
    }

* { box-sizing: border-box; }

body{
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Plus Jakarta Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a{ text-decoration:none; }

/* NAVBAR */
.navbar-custom{
    background: rgba(3,7,18,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 1030;
}

.navbar-brand{
    font-weight: 700;
    letter-spacing: .12em;
    font-size: 1.05rem;
}
.navbar-brand span{
    display:block;
    font-size:.7rem;
    font-weight:400;
    letter-spacing:.25em;
}

.btn-upwork{
    background: var(--accent);
    color:#fff;
    font-weight:600;
    border-radius: 999px;
    padding:.55rem 1.4rem;
    font-size:.9rem;
    height: 36px;
    line-height: 18px;
}
.btn-upwork:hover{
    background:#18a445;
    color:#fff;
}

/* Mega dropdown positioning */
.mega-dropdown{
    position:relative; /* parent for abs mega menu */
}
.mega-menu{
    width: 780px;
    max-width: 92vw;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 1.75rem 1.8rem;
    box-shadow: 0 24px 60px rgba(15,23,42,.78);
    top: 100%;
    left: 50%;
    transform: translateX(-40%);
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    -o-transform: translateX(-40%);
}
.mega-menu::before{
    content:"";
    position:absolute;
    top:-10px;
    left:50%;
    transform: translateX(-50%);
    border-width:0 10px 10px 10px;
    border-style:solid;
    border-color:transparent transparent #fff transparent;
}

.mega-service-item{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    padding: .75rem 1rem;
    border-radius:16px;
    transition:background .18s ease, transform .18s ease;
    cursor:pointer;
}
.mega-service-item:hover{
    background:rgba(148,163,184,.16);
    transform:translateY(-1px);
}

.icon-pill{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#fff;
    font-size:1.2rem;
}

.service-title{
    font-size:.98rem;
    font-weight:600;
}
.service-subtitle{
    font-size:.80rem;
    color:#0D121F;
}

.arrow-icon{
    margin-left:auto;
    font-size:1rem;
    color:var(--brand-blue);
}

/* MOBILE TOGGLER */
.navbar-toggler{
    border:none;
    padding:0;
}
.navbar-toggler:focus{
    box-shadow:none;
}
.hamburger{
    width:22px;
    height:2px;
    background:#e5e7eb;
    position:relative;
    display:inline-block;
}
.hamburger::before,
.hamburger::after{
    content:"";
    position:absolute;
    left:0;
    width:22px;
    height:2px;
    background:#e5e7eb;
}
.hamburger::before{ top:-6px;}
.hamburger::after{ top:6px;}

/* HERO */
.hero{
    padding: 8rem 0 5rem;
    background: radial-gradient(circle at 10% 0%, rgba(37,99,235,.35), transparent 55%),
                radial-gradient(circle at 90% 10%, rgba(16,185,129,.2), transparent 55%),
                var(--bg-dark);
}
.hero-title{
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight:700;
}
.hero-subtitle{
    color:var(--text-muted);
}
.stat-card{
    border-radius:18px;
    border:1px solid var(--border-soft);
    padding:1rem 1.4rem;
    background: rgba(15,23,42,.75);
}
.stat-label{
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--text-muted);
}
.stat-value{
    font-size:1.4rem;
    font-weight:600;
}

/* FOOTER */
footer{
    margin-top:auto;
    background:var(--bg-darker);
    border-top:1px solid var(--border-soft);
    color:var(--text-muted);
    padding-top:3rem;
}
.footer-logo{
    font-weight:700;
    letter-spacing:.17em;
    font-size:1rem;
}
.footer-logo span{
    display:block;
    font-size:.7rem;
    letter-spacing:.24em;
    margin-top:.25rem;
    text-transform:uppercase;
}
.footer-link{
    display:block;
    font-size:.86rem;
    color:var(--text-muted);
    margin-bottom:.3rem;
}
.footer-link:hover{
    color:#e5e7eb;
}
.footer-heading{
    font-size:.9rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:#e5e7eb;
    margin-bottom:1rem;
}
.footer-bottom{
    border-top:1px solid var(--border-soft);
    margin-top:2.5rem;
    padding:1rem 0;
    font-size:.78rem;
}

/* Offcanvas (mobile sidebar) */
.offcanvas-custom{
    background:#f9fafb;
    color:#020617;
    width: 100%;
    max-width: 340px;
}
.offcanvas-header{
    border-bottom:1px solid #1e293b4d;
}
.offcanvas-title{
    font-weight:700;
    font-size:.98rem;
    letter-spacing:.16em;
}
.offcanvas-title span{
    display:block;
    font-size:.7rem;
    font-weight:400;
    letter-spacing:.24em;
    margin-top:.1rem;
}
.btn-close-white{
    filter: invert(1);
    opacity:0.85;
}
.mobile-service-item{
    display:flex;
    align-items:flex-start;
    gap:.9rem;
    padding:.75rem 0;
}
/* .mobile-service-item + .mobile-service-item{
    border-top:1px solid #020617;
} */
.mobile-icon-pill{
    width:40px;
    height:40px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
}
.offcanvas-section-title{
    letter-spacing: 2px;
    color: #0D121F;
    text-transform: uppercase;
    margin-top: .5rem;
    margin-bottom: .4rem;
    font-weight: bold;
}

.btn-mobile-upwork{
    width:100%;
    border-radius:999px;
    padding:.9rem 1.2rem;
    font-weight:600;
    background:#0D121F;
    border:none;
    color: #fff;
}
.btn-mobile-upwork:hover{
    background:#18a445;
}

@media (max-width: 991.98px){
    .hero{
    padding-top:6rem;
    }
    .mega-menu{
    position:static;
    transform:none;
    box-shadow:none;
    width:100%;
    max-width:100%;
    }
}
.logo img{
    width: 80%;
    height: 100%;
}
.navbar .nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        height: 52px;
        line-height: 32px;
    }
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 8px 16px;
}
:not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
}
@media(max-width:767px){
    .logo img{
        width: 60%;
        height: 100%;
    }
    .navbar-brand{
        width: 40%;
    }
    .btn-upwork{
        padding: 5px 11px;
        font-size: 12px;
    }
    .navbar-toggler .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: #0d121f; /* black */
        position: relative;
        border-radius: 3px;
    }

    .navbar-toggler .hamburger::before,
    .navbar-toggler .hamburger::after {
        content: "";
        width: 25px;
        height: 3px;
        background: #0d121f; /* black */
        position: absolute;
        left: 0;
        border-radius: 3px;
    }

    .navbar-toggler .hamburger::before {
        top: -7px;
    }

    .navbar-toggler .hamburger::after {
        top: 7px;
    }
    .offcanvas .footer-link{
        color: #0D121F;
        font-size: 16px;
    }

}
.footerlogo img{
    height: 100%;
    width: 40%;
}
@media(max-width:767px){
    .hero-title{
        font-size: 28px;
    }
    .hero-subtitle {
        color: var(--text-muted);
        font-size: 14px;
    }
    .hero_btn a{
        font-size: 12px;
        padding: 6px 14px !important;
    }
}
.category_section img{
    width: 100%;
}
.cat_title{
    display: flex;
    justify-content: space-between;
}
.cat_description{
    padding: 20px;
}
.cat_description p{
    font-size: 12px;
}
@media (min-width: 768px) {
    .category_section .col-md-3 {
        padding: 0 8px;
    }
}
.design_process{
    text-align: center;
}
.tabs_section .nav-link{
    border-radius: var(--bs-border-radius-pill) !important;
    background:transparent !important;
    border: 1px solid #cccccc9e;
    padding: 6px 24px !important;
    margin: 0 8px;
    color: #fff !important;
    transition: all 0.3s ease;
}
.tabs_section .nav-link.active{
    background:#198754!important;
    border: 1px solid #198754;
    padding: 6px 24px !important;
    margin: 0 8px;
    color: #fff !important;
    transition: all 0.3s ease;
}
.tabs_section .nav{
    display: flex;
    justify-content: center;
}
.days_image img{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
}
.count{
     width: 48px;
    height: 48px;
    background: #34C759;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: -24px;
    border: 4px solid #050915;
    left: 0px;
}
.count h4{
    line-height: 38px;
}
.days_image{
    position: relative;
    margin-bottom: 20px;
    
}
.days_section{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #cccccc2b;
    padding: 16px;
    border-radius: 16px;
    height: 100%;
}
.days_section h5{
    text-align: center;
}
.days_section p{
    text-align: justify;
    margin: 0;
}
.all_days{
    margin-top: 40px;
}
@media(max-width:767px){
    .all_days .col-12{
        margin-bottom:20px;
    }
}
.recent_section{
    display: flex;
    justify-content: space-between;
}
.recent_section a{
    height: 40px;
    line-height:30px;
}
.recent_img_all img{
    width: 100%;
}
.recent_image .col-6{
    margin-bottom: 20px;
}
.recent_image{
    margin-top: 40px;
}
@media(max-width:767px){
    .recent_section {
        display: block;
    }
    .recent_section a {
        height: 40px;
        margin-top: 20px;
    }
    .recent_image .col-6 {
        margin-bottom: 0px;
        padding: 7px;
    }
    .category_section .col-6{
        padding: 7px;
        margin: 0 !important;
    }
    .cat_description {
        padding: 10px;
    }
    .cat_description p {
        font-size: 10px;
        margin: 0;
    }
    .cat_title h6{
        font-size: 12px !important;
    }
}
.start_icon{
    font-size: 20px;
}
.review .card{
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.review .card p{
    text-align: justify;
}
.dropdown-toggle-no-caret::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none !important;
    margin-left: 6px;
}
.dropdown-toggle::after {
    border: 0;
}
#logoMenuLink svg {
    transition: transform .3s ease;
    margin-left: 10px
}

#logoMenuLink.show svg {
    transform: rotate(180deg);
}
.pricing-card {
    border-radius: 20px;
    border: 1px solid #e7e7e7;
    padding: 30px;
    background: #fff;
    transition: 0.3s;
    color: #020511;
    height: 100%;
    
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price {
    font-size: 40px;
    font-weight: 700;
}

.popular-badge {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 15px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.price_list li{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.price_list li svg{
    margin-right: 10px;
}