* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

html {
    width: 100vw;
    overflow-x: hidden;
}

:root {
    --primary-1: #4b8bfd;
    --primary-2: #7b61ff;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --card-bg: rgba(255, 255, 255, 0.8);
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, #f3f6ff 0%, #ffffff 100%);
    color: #1a1a1a;
}

main {
    min-height: 100vh;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    /* background: rgba(255, 255, 255, 0.75); */
    background: rgba(0, 15, 247, 0.82);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 10px;
}

.site-header .nav-link {
    padding: 0px 5px !important;
}

#mainNav .navbar-brand strong {
    letter-spacing: 0.6px;
    color: #ffffff
}

#mainNav .nav-link {
    color: #ffffff;
    display: flex;
    gap: 6px;
    position: relative;
    padding-bottom: 10px;
    transition: color .25s ease;
}

#mainNav .nav-item {
    position: relative;
}

#mainNav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #69ffc0;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    transition: width .28s ease;
    will-change: width;
}

#mainNav .nav-item .nav-link:hover::after,
#mainNav .nav-item .nav-link:focus::after {
    width: 90%;
}

#mainNav .nav-item .nav-link.active::after {
    width: 90%;
}

#mainNav .nav-item .nav-link:hover,
#mainNav .nav-item .nav-link.active {
    color: #69ffc0;
    font-weight: bolder;
}




/* Hero/Slider */
.hero .glass-card {
    background: var(--glass-bg);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.tag-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
    color: white;
    font-weight: 600
}

.headline {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    line-height: 1.05;
    font-weight: 700;
    color: #111
}

.subhead {
    color: #444
}

/* Services */
.service-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    transition: transform .3s;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12)
}

/* Packages */
.package {
    border-radius: 14px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 22px
}

/* Gallery */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
.site-footer {
    background: #f6f8ff;
    color: #222;
    padding: 48px 0
}

.footer-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #111
}

/* Utilities */
.btn-cta {
    background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
    border: none;
    color: #fff
}

.sym {
    font-family: serif;
}

button,
a {
    font-family: 'Roboto' !important;
}

.font-roboto {
    font-family: 'Roboto' !important;
}

.font0-1 {
    font-size: 0.1rem;
}

.font0-2 {
    font-size: 0.2rem;
}

.font0-3 {
    font-size: 0.3rem;
}

.font0-4 {
    font-size: 0.4rem;
}

.font0-5 {
    font-size: 0.5rem;
}

.font0-6 {
    font-size: 0.6rem;
}

.font0-7 {
    font-size: 0.7rem;
}

.font0-8 {
    font-size: 0.8rem;
}

.font0-9 {
    font-size: 0.9rem;
}

.font1-0 {
    font-size: 1.0rem;
}

.font1-1 {
    font-size: 1.1rem;
}

.font1-2 {
    font-size: 1.2rem;
}

.font1-3 {
    font-size: 1.3rem;
}

.font1-4 {
    font-size: 1.4rem;
}

.font1-5 {
    font-size: 1.5rem;
}

.font1-6 {
    font-size: 1.6rem;
}

.font1-7 {
    font-size: 1.7rem;
}

.font1-8 {
    font-size: 1.8rem;
}

.font1-9 {
    font-size: 1.9rem;
}

.font2-0 {
    font-size: 2.0rem;
}

.font2-1 {
    font-size: 2.1rem;
}

.font2-2 {
    font-size: 2.2rem;
}

.font2-3 {
    font-size: 2.3rem;
}

.font2-4 {
    font-size: 2.4rem;
}

.font2-5 {
    font-size: 2.5rem;
}

.font2-6 {
    font-size: 2.6rem;
}

.font2-7 {
    font-size: 2.7rem;
}

.font2-8 {
    font-size: 2.8rem;
}

.font2-9 {
    font-size: 2.9rem;
}

.font3-0 {
    font-size: 3.0rem;
}

.ckEditorContent {
    all: revert;
}

/* OR selectively reset only commonly overridden elements */
.ckEditorContent ul,
.ckEditorContent ol {
    list-style-type: revert;
    margin-left: revert;
    padding-left: revert;
}

.ckEditorContent h1,
.ckEditorContent h2,
.ckEditorContent h3,
.ckEditorContent h4,
.ckEditorContent h5,
.ckEditorContent h6,
.ckEditorContent p {
    margin: revert;
    font-size: revert;
    font-weight: revert;
}

.ckEditorContent img {
    max-width: 100%;
    height: auto;
}

.ckEditorContent table {
    border-collapse: collapse;
    width: revert;
}

.ckEditorContent a {
    color: revert;
    text-decoration: revert;
}

.loader-head {
    display: none;
}

.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    background: #000000de;
}

.project-features-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    text-transform: capitalize;
}

.project-features-section p {
    color: #555;
    margin-bottom: 10px;
}

.project-features-section hr {
    border-top: 3px solid #0d6efd;
    width: 80px;
    margin: 10px auto 40px auto;
}

#dashboardToggle,
#profileMenu {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

#dashboardToggle li p {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 25px;
    font-family: 'Roboto';
    text-transform: uppercase;
    background: #ffa5000a;
    color: var(--themeColorTwo);
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

#profileMenu li a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    padding: 10px 5px;
    color: #000;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
}

#profileMenu li a:hover {
    background: #2d39f80f;
    border-radius: 10px;
    margin-left: 10px;
    font-weight: bold;
    border-left: 3px solid #a6005d;
}
#profileMenu li a.active {
    background: #2d39f80f;
    border-radius: 10px;
    font-weight: bold;
    border-left: 3px solid #a6005d;
}