:root {
    /* --brand-secondary: hsl(17, 27%, 33%); #6b4b3e */
    /* --color-brand-blue-light: hsl(222, 65%, 45%); */
    /* --color-brand-blue-dark: hsl(222, 65%, 20%); */
    /* --color-dark-gray-light: hsl(215, 17%, 45%); */
    /* --color-dark-gray-dark: hsl(215, 17%, 20%); */
    /* --color-text-body: hsl(215, 17%, 30%); */

    --color-primary: hsl(224, 64%, 33%); /* #1e3a8a */
    --color-primary-light: hsl(225, 65%, 80%); /* #abbced */
    --color-primary-dark: hsl(224, 64%, 28%); /* #1e40af */
    --color-primary-darker: hsl(224, 64%, 23%); /* #152961 */

    --color-accent: hsl(38, 92%, 50%);
    --color-accent-dark: hsl(38, 92%, 40%);

    --color-secondary: hsl(215, 25%, 27%); /* #334155 */
    --color-secondary-100: hsl(215, 16%, 36%);
    --color-secondary-light: hsl(215, 16%, 47%); /* #64748b */
    --color-secondary-lighter: hsl(215, 20%, 65%); /* #94a3b8 */

    --color-neutral-50: hsl(210, 40%, 98%); /* #f8fafc */
    --color-neutral-100: hsl(210, 40%, 96%); /* #f1f5f9 */
    --color-neutral-200: hsl(214, 32%, 91%); /* #e2e8f0 */
    --color-neutral-300: hsl(213, 27%, 84%); /* #cbd5e1 */
    --color-neutral-800: hsl(217, 33%, 17%); /* #1e293b */
    --color-neutral-900: hsl(222, 47%, 11%); /* #0f172a */

    --color-white: hsl(0, 0%, 100%); /* #ffffff */
    --color-black: hsl(0, 0%, 0%); /* #000000 */

    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.25rem; /* 20px */
    --font-size-2xl: 1.5rem; /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem; /* 36px */
    --font-size-5xl: 3rem; /* 48px */
    --font-size-6xl: 3.75rem; /* 60px */

    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;

    --spacing-xs: 0.5rem; /* 8px */
    --spacing-sm: 0.75rem; /* 12px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */
    --spacing-2xl: 2.5rem; /* 40px */
    --spacing-3xl: 3rem; /* 48px */
    --spacing-4xl: 4rem; /* 64px */
    --spacing-5xl: 5rem; /* 80px */

    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 0.75rem; /* 12px */
    --radius-xl: 1rem; /* 16px */

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);

    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --hero-height-mobile: 60vh;
    --hero-height-desktop: 75vh;
}

body {
    background-color: var(--color-neutral-50);
}

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

.footer-link {
    color: var(--color-white);
}

/* Home Page Start */

.hero-big-text {
    font-size: 32px;
    font-weight: bold;
    line-height: normal;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8px;
    border-bottom: 1px solid slategray;
    text-decoration: none;
    color: black;
}

.service-card-heading {
    font-size: 18px;
    font-weight: 600;
}

.service-card-hover:hover {
    background-color: #f3f4f8;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .service-card {
        padding: 32px 16px;
    }
    .service-card-heading {
        font-size: 24px;
        font-weight: 600;
    }
}

.project-tag {
    color: var(--color-primary);
    background-color: #c8d3f5; /* #c8d3f5 */
    border-radius: 50rem;
    border: 1px solid var(--color-primary);

    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* Home Page End */

/* Design Page Start*/
.expertise-list .item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
}

.expertise-list .item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.expertise-list .item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.expertise-detail {
    display: none;
    transition: all 0.4s ease;
}

.expertise-detail.active {
    display: block;
}

.expertise-detail img {
    max-width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.expertise-number {
    font-weight: bold;
    padding-right: 0.75rem;
}

.result-card {
    text-align: center;
    max-width: 300px;
    margin: auto;
    padding-top: 8px;
}

.result-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    background: var(--color-white);
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background: var(--color-neutral-50);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-secondary-light);
}
/* Responsive Web Design Section */

.design-card {
    background: var(--color-neutral-200);
}
.design-card:hover {
    background: var(--color-neutral-300);
}
/* Design Page End*/

/*
---------------------------------------------------
Change to bootstrap classes
---------------------------------------------------
 */

@media (min-width: 1800px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

.navbar .container {
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    color: var(--color-primary) !important;
    font-size: 24px;
}
.logo-tech {
    color: red !important;
    font-weight: 900;
}

.nav-link {
    color: var(--color-secondary) !important;
    font-weight: 500;
    margin: 0 var(--spacing-sm);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        left: 0;
    }
}
.dropdown-menu {
    margin-top: 0;
    border: none;
    width: 100%;
}

.dropdown-menu.show {
    height: 50vh;
    overflow-y: auto;
}

.mega-menu-column .mega-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
}
.mega-heading:hover {
    text-decoration: underline;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
}
.mega-menu-column .mega-link {
    padding: 0.25rem 0;
    display: block;
}
.mega-menu-column ul + hr {
    margin: 0.5rem 0;
    border-top: 1px solid #e5e5e5;
}

.pagination {
    margin-top: 3rem;
    justify-content: center;
}

.pagination .page-link {
    border: none;
    color: var(--color-primary);
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.editor > ul > li > p {
    margin-bottom: 0rem;
}

/*
---------------------------------------------------
Components
---------------------------------------------------
 */

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: var(--color-white);
    min-height: var(--hero-height-mobile);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    padding-top: var(--spacing-5xl);
    padding-bottom: var(--spacing-5xl);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="5" height="5" patternUnits="userSpaceOnUse"><path d="M 5 0 L 0 0 0 5" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-heading {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-4xl);
    text-transform: capitalize;
    font-weight: 700;
}

.hero-paragraph {
    color: var(--color-neutral-200);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    font-weight: 400;
    width: 90%;
}

.section-heading {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.section-paragraph {
    font-size: var(--font-size-base);
}

.second-section {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .hero-paragraph {
        font-size: var(--font-size-xl);
        line-height: var(--line-height-relaxed);
    }

    .second-section {
        margin-top: auto;
    }
}

@media (min-width: 1200px) {
    .hero-big-text {
        font-size: 40px;
    }
    .section-heading {
        font-size: var(--font-size-3xl);
    }
}

@media (min-width: 1400px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-big-text {
        font-size: 60px;
    }
    .section-heading {
        font-size: var(--font-size-4xl);
    }
}

.section-body {
    color: var(--color-neutral-200);
}

.section-padding {
    padding: var(--spacing-5xl) 0;
}

.section-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--spacing-4xl);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--color-neutral-50);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

.slide-container {
    position: relative;
    min-height: 500px;
    margin: 160px 0;
    height: auto;
    overflow: hidden visible;
}

.slide-overlay {
    --color: #fff;
    position: relative;
    background-color: var(--color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-overlay.revealed {
    width: 100%;
}

.slide-overlay img {
    height: 80%;
}

@media (min-width: 992px) {
    .slide-overlay {
        position: absolute;
        top: 0;
        z-index: 2;
    }
    .slide-overlay.revealed {
        width: 50%;
    }
}

.content-section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 1rem;
    z-index: 1;
    position: relative;
    width: 100%;
    margin-top: 0;
}

@media (min-width: 992px) {
    .content-section {
        position: absolute;
        top: 0;
        width: 49%;
        padding: 0 2rem;
    }
}

@media (min-width: 1400px) {
    .content-section {
        width: 43%;
    }
}

.content-section.right-0 {
    margin-right: auto;
}

.content-section.left-0 {
    margin-left: auto;
}

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    opacity: 1;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.content-text.slide-from-right {
    transform: translateX(50px);
}

.content-text.slide-from-left {
    transform: translateX(-50px);
}

.content-text.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 992px) {
    .content-text {
        opacity: 0;
    }
}

.cta-section {
    background: linear-gradient(to right, #334155, #1d4ed8);
    border-radius: 0.5rem;
    color: #ffffff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    padding: 2rem 1.5rem;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 3rem 2rem;
        margin: 2rem auto;
        border-radius: 2rem;
    }
}

.industry {
    align-items: center;
    border: 1px solid var(--color-secondary-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 160px;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    color: black;
    padding: 20px;
    margin: 8px;
}

.industry:hover {
    background-color: var(--color-secondary-light);
    color: white;
}

.bg-dark .industry {
    border-color: white;
    color: white;
}

/* ===== CARD SYSTEM ===== */
.card {
    border: 1px solid var(--color-neutral-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-body {
    padding: var(--spacing-xl);
}

/* Text Card */
.card-text-large {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.card-text-small {
    font-size: var(--font-size-sm);
    color: var(--color-secondary-light);
}

/* Image Card */
.card-img-top {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--color-secondary-light);
    margin-bottom: var(--spacing-lg);
}

/* Dark Card Variant */
.card-dark {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.card-dark .card-text-large,
.card-dark .card-title {
    color: var(--color-white);
}

.card-dark .card-text,
.card-dark .card-text-small {
    color: var(--color-neutral-300);
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 120px;
    padding: 1.5rem;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 50px;
    height: 50px;
    min-height: 40px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.tech-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .tech-card {
        padding: 2rem;
        height: 150px;
    }
    .tech-icon {
        width: 60px;
        height: 60px;
    }
}

.squeezebox-container {
    --increment: 0px;
    width: 100vw;
    height: calc(100vh + var(--increment));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.squeezebox-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    counter-increment: section;
}

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

.squeezebox-item.collapsed {
    flex: 0 0 60px;
}

.squeezebox-item.expanded {
    flex: 1;
}

.squeezebox-item:nth-child(odd) .squeezebox-header {
    background: var(--color-secondary);
}

.squeezebox-item:nth-child(even) .squeezebox-header {
    background: var(--color-secondary-light);
}

.squeezebox-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.squeezebox-header:hover {
    opacity: 0.9;
}
.squeezebox-header:before {
    content: "0" counter(section);
    font-family: Poppins, sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 38px;
    position: unset;
    text-align: left;
    margin-left: 20px;
}

.squeezebox-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.squeezebox-content {
    position: relative;
    left: 0;
    top: 60px;
    right: 0;
    bottom: 0;
    height: 100%;
    padding: 15px;
    opacity: 0;
    background-color: var(--color-neutral-800);
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-para {
    font-size: 15px;
    clear: var(--color-white);
    font-weight: 600;
}

.squeezebox-item.expanded .squeezebox-content {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 992px) {
    .squeezebox-container {
        flex-direction: row;
        height: 80vh;
    }

    .squeezebox-item {
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
    }

    .squeezebox-item:last-child {
        border-right: none;
    }

    .squeezebox-item.collapsed {
        flex: 0 0 80px;
    }

    .squeezebox-header {
        width: 80px;
        height: 100%;
        justify-content: center;
    }

    .squeezebox-header:before {
        position: absolute;
        top: 50px;
        font-size: var(--font-size-3xl);
        left: 50%;
        margin: 0;
        transform: translateX(-50%) rotate(90deg);
    }

    .squeezebox-title {
        writing-mode: vertical-lr;
        text-orientation: mixed;
    }

    .squeezebox-content {
        position: absolute;
        left: 80px;
        top: 0;
        padding: 48px;
        transform: translateX(-20px);
    }

    .squeezebox-item.expanded .squeezebox-content {
        transform: translateX(0);
    }
}

.why-choose-box {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Heading Scale */
.display-1 {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
    font-weight: 800;
}
.display-2 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
    font-weight: 700;
}

h1,
.h1 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}
h2,
.h2,
.heading-2 {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-snug);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}
h3,
.h3 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-snug);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}
h4,
.h4 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
h5,
.h5 {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}
h6,
.h6 {
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

/* ===== BUTTON SYSTEM ===== */
.btn {
    border-radius: var(--radius-md);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-xl);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

/* Primary Button */
.btn-primary {
    --color: var(--color-primary);
    background-color: var(--color);
    border-color: var(--color);
    color: var(--color-white);
}
.btn-primary:hover {
    --color: var(--color-primary-dark);
    background-color: var(--color);
    border-color: var(--color);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--color-white);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}
.btn-secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

/* White Button (for dark backgrounds) */
.btn-white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-secondary);
}
.btn-white:hover {
    background-color: var(--color-neutral-100);
    border-color: var(--color-neutral-100);
    color: var(--color-secondary);
    transform: translateY(-1px);
}

/* Link Button */
.btn-link {
    color: var(--color-primary);
    text-decoration: underline;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 500;
}
.btn-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
    background: transparent;
}

.btn-top-nav {
    background-color: var(--color-accent);
    color: var(--color-black) !important;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    padding: 4px 20px !important;
    text-decoration: none;
}

.btn-top-nav:hover {
    border: 2px solid var(--color-accent);
    background-color: transparent;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-black) !important;
    border: 2px solid var(--color-accent);
}

.btn-accent:hover {
    border: 2px solid var(--color-accent);
}

.btn-brand-link {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 700;
    text-wrap: nowrap;
}

.btn-brand-link:hover {
    text-decoration: underline;
    color: var(--color-primary-darker);
}

.btn-hero {
    background-color: var(--color-accent);
    color: var(--color-black) !important;
    border: 2px solid var(--color-accent);
}

.btn-hero:hover {
    color: var(--color-accent) !important;
    border: 2px solid var(--color-accent);
}

.form-control:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: none;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.article-author {
    text-decoration: none;
    color: var(--color-secondary-light);
}

.article-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-neutral-800);
    line-height: 1.4;
}

.article-excerpt {
    color: var(--color-secondary-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-secondary-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--color-primary-darker);
    transform: translateX(5px);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: var(--color-primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    cursor: pointer;
}

.timeline-item:nth-child(odd) .timeline-content {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.timeline-item:nth-child(odd) .text-muted {
    color: var(--color-neutral-200) !important;
}

.timeline-item .timeline-content {
    margin-left: 32px;
    margin-right: 0;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-primary);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--color-primary-darker);
}

.timeline-heading {
    font-size: var(--font-size-2xl);
}

.timeline-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--hover-shadow);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 5%;
    }

    .timeline-item .timeline-content {
        margin-left: 8%;
    }

    .timeline-dot {
        left: 5%;
    }
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    /* border-radius: 20px; */
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    /* padding: 1rem; */
    /* position: relative; */
    /* margin-top: 2rem; */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.star-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.back-to-top {
    position: fixed;
    z-index: 100;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-darker);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.with-check-marks li::before {
    content: "\2713";
    margin-right: 0.25rem;
    color: #198754;
    font-weight: bold;
}

/*
---------------------------------------------------
Utility Classes
---------------------------------------------------
 */

.bg-brand {
    background-color: var(--color-primary);
}

.font-24p {
    font-size: 24px;
}

.font-36p {
    font-size: 36px;
}

.text-brand {
    color: var(--color-primary);
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

/* ===== BASE TYPOGRAPHY ===== */
/* body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-secondary);
    line-height: var(--line-height-normal);
} */

/* Body Text */
.text-lead {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    font-weight: 400;
}

.text-lg {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
}

.text-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

/* ===== BACKGROUND VARIANTS ===== */
.bg-light {
    background-color: var(--color-neutral-50) !important;
}

.bg-dark {
    background-color: var(--color-secondary) !important;
    color: var(--color-white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--color-white);
}

@media (min-width: 768px) {
    .hero {
        min-height: var(--hero-height-desktop);
    }

    .display-1 {
        font-size: var(--font-size-6xl);
    }
    .display-2 {
        font-size: var(--font-size-5xl);
    }
    h1,
    .h1 {
        font-size: var(--font-size-4xl);
    }
    h2,
    .h2,
    .heading-2 {
        font-size: var(--font-size-3xl);
    }
}
