/* =================================================================
   ITqore Clone — Main Stylesheet
   Author: recreation of itqore.themeht.com
   Contents:
     1. Design tokens (CSS variables)
     2. Reset & base
     3. Typography
     4. Layout helpers (container / utilities)
     5. Reusable components (buttons, social icons)
     6. SECTION 1 — Header & Navigation
================================================================= */

/* ------------------------------------------------------------------
   1. DESIGN TOKENS — copied 1:1 from the reference theme
------------------------------------------------------------------ */
:root {
    --primary-color: #2B4DFF;
    --secondary-color: #00041A;
    --text-color: #0A165E;
    --body-color: #313956;
    --white-color: #FFFFFF;
    --light-color: #F3F3FF;
    --border-color: #EDEDF1;

    --font-body: "Sora", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;

    --logo-desktop-height: 60px;
    --logo-tablet-height: 50px;
    --logo-mobile-height: 40px;

    --radius-pill: 100px;
    --radius-corner: 30px;

    --transition-base: all 0.3s ease;
    --container-max: 1440px;
}

/* ------------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--body-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}
.mt-10{margin-top:10px;}

/* Accessibility: visually hide but keep available to screen readers */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visible focus outline for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ------------------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

h1 { font-size: 80px; line-height: 90px; }
h2 { font-size: 50px; line-height: 60px; }
h3 { font-size: 32px; line-height: 42px; font-weight: 600; }
h4 { font-size: 26px; line-height: 36px; font-weight: 600; }
h5 { font-size: 22px; line-height: 32px; font-weight: 600; }
h6 { font-size: 20px; line-height: 30px; font-weight: 600; }

p { margin: 0 0 15px; }

/* ------------------------------------------------------------------
   4. LAYOUT HELPERS
------------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 15px;
}

/* ------------------------------------------------------------------
   5. REUSABLE COMPONENTS
------------------------------------------------------------------ */

/* Brand logo (PiquentSolution) — vector icon + wordmark + tagline */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.brand__icon {
    --c1: #1b2a63; /* navy */
    --c2: #2f4fd6; /* blue */
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.brand__name-1 { color: #2f4fd6; }
.brand__name-2 { color: #7a8aa6; font-weight: 600; }

.brand__tag {
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #46506b;
    white-space: nowrap;
}

/* Light variant for dark backgrounds (footer) */
.brand--light .brand__icon { --c1: #cfd6e6; --c2: #5b7bff; }
.brand--light .brand__name-1 { color: #5b7bff; }
.brand--light .brand__name-2 { color: #d4dbea; }
.brand--light .brand__tag { color: #aab3c5; }

/* Pill button with animated corner-arrow SVG (matches theme .themeht-btn) */
.themeht-btn {
    position: relative;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 0;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.themeht-btn.btn-width {
    width: 100%;
    justify-content: center;
}

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

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

.themeht-btn.outline-btn {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.themeht-btn.outline-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

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

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

.themeht-btn.white-outline-btn {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.themeht-btn.white-outline-btn:hover {
    background: var(--white-color);
    color: var(--text-color);
}

.themeht-btn svg {
    margin-left: 10px;
}

.themeht-btn svg line {
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-dasharray: 25px;
    stroke-dashoffset: 50px;
    transition: stroke-dashoffset 1s cubic-bezier(.61, 1, .88, 1);
    stroke: var(--text-color);
}

/* White stroke on solid/dark buttons */
.themeht-btn.primary-btn svg line,
.themeht-btn.white-outline-btn svg line {
    stroke: var(--white-color);
}

.themeht-btn:hover svg line {
    stroke-dashoffset: 0;
}

/* Section heading block — reused across About, Services, Team, etc. */
.theme-title h6 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background-color: var(--white-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-color);
}

.theme-title h2 {
    margin-bottom: 0;
    overflow: hidden;
}

.theme-title p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.theme-title.text-white h2 { color: var(--white-color); }
.theme-title.text-white p { color: var(--light-color); }
.theme-title.center { text-align: center; }

/* Round social icon buttons */
.social-icons ul {
    line-height: 0;
}

.social-icons li {
    display: inline-block;
    margin: 0 8px 0 0;
}

.social-icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--text-color);
    transition: var(--transition-base);
}

.social-icons li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* =================================================================
   6. SECTION 1 — HEADER & NAVIGATION
================================================================= */

/* --- Top bar ----------------------------------------------------- */
.header-top {
    padding: 10px 0;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.topbar-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-link__item {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.topbar-link__item:first-child { padding-left: 0; }
.topbar-link__item:last-child { padding-right: 0; }

.topbar-link__item i {
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 24px;
    vertical-align: middle;
}

.topbar-link__item a:hover {
    color: var(--secondary-color);
}

.header-top__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-icon {
    margin-right: 1rem;
}

.search-icon button {
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    font-size: 20px;
    line-height: 1;
    color: var(--text-color);
}

.search-icon button:hover {
    color: var(--primary-color);
}

/* In the top bar the social icons sit on the light bg with no chip */


/* --- Navigation bar wrapper -------------------------------------- */
#header-wrap {
    position: relative;
    z-index: 999;
    padding: 0 30px;
}

#header-wrap.fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    transition: all 500ms ease;
    animation: smoothScroll 500ms linear 1;
}

#header-wrap.fixed-header .topbar-link {
    display: none;
}

@keyframes smoothScroll {
    from { transform: translateY(-40px); }
    to   { transform: translateY(0); }
}

.header-wrap__container {
    width: 100%;
}

/* The nav is a flex row: logo | menu zone | quote button */
.ht-navigation {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--white-color);
    border-top-right-radius: var(--radius-corner);
}

/* --- Logo with carved concave corner ----------------------------- */
.navbar-brand.logo {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 25px 30px 15px 0;
    text-align: center;
    background: var(--light-color);
    border-bottom-right-radius: var(--radius-corner);
}

.logo img {
    max-height: var(--logo-desktop-height);
    width: auto;
}

/* Concave corner SVG sitting to the right of the logo block */
.header .navbar-brand.logo > svg {
    position: absolute;
    top: 0;
    right: -30px;
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(0deg) scale(1.01);
}

.header svg path {
    fill: var(--light-color);
}

/* --- Menu zone --------------------------------------------------- */
.navigation-top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--white-color);
    border-top-right-radius: var(--radius-corner);
}

.main-nav .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li {
    margin: 0 15px;
}

.main-nav > ul > li > a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--text-color);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.menu-item--current > a {
    color: var(--primary-color);
}

/* Dropdown caret on parent items (desktop) */
.main-nav > ul > li.menu-item--has-children > a::after {
    content: "\F282";
    font-family: bootstrap-icons !important;
    margin-left: 0.3em;
    font-size: 12px;
    line-height: 1;
    vertical-align: -.125em;
    display: inline-block;
}

/* Sub-menus */
.main-nav ul.sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    z-index: 99999;
    min-width: 14em;
    max-width: 20em;
    padding: 0;
    margin: 0;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
}

.main-nav ul li:hover > ul.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.main-nav ul.sub-menu li ul {
    left: 100%;
    top: 0;
}

.main-nav ul.sub-menu li:hover ul.sub-menu {
    top: 0;
}

.main-nav .sub-menu li {
    border-bottom: 1px solid var(--border-color);
}

.main-nav .sub-menu li:last-child {
    border-bottom: none;
}

.main-nav .sub-menu li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    z-index: 9;
}

/* Animated dot that slides in on sub-item hover */
.main-nav .sub-menu li a::before {
    content: '\f10e';
    font-family: flaticon_techify_collection !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0;
}

.main-nav .sub-menu li a:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.main-nav .sub-menu li a:hover::before {
    opacity: 1;
    left: 15px;
}

/* Caret toggles inside sub-menus (used on mobile, hidden on desktop) */
.sub-menu-toggle {
    display: none;
    position: absolute;
    right: 15px;
    top: 17px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    color: var(--text-color);
}

/* --- Hamburger toggler (hidden on desktop) ----------------------- */
.nav-menu-toggle {
    display: none;
    margin-left: auto;
    margin-right: 20px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    font-size: 40px;
    line-height: 1;
    color: var(--secondary-color);
}

/* Overlay behind the mobile slide-in menu */
.ht-mobile-menu-bg {
    display: none;
}

/* --- Right cluster: cart, phone, grid ---------------------------- */
.right-nav {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart-inner {
    margin-right: 20px;
}

.header-cart .cart-contents {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--text-color);
}

.header-cart .cart-contents:hover {
    color: var(--primary-color);
}

.cart-contents-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.header-number {
    display: flex;
    align-items: center;
    
}

.header-number i {
    margin-right: 10px;
    font-size: 34px;
    line-height: 1;
    color: var(--primary-color);
}

.header-number span {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-heading);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.header-number a {
    font-size: 14px;
    font-weight: 600;
}

.header-number a:hover {
    color: var(--primary-color);
}

.ht-nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* --- "Get A Quote" block with carved concave corner -------------- */
.header-right {
    position: relative;
    display: inline-block;
    padding: 20px 0 20px 20px;
    background: var(--light-color);
    border-bottom-left-radius: var(--radius-corner);
}

.header-right > svg {
    position: absolute;
    top: 0;
    left: -30px;
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(90deg) scale(1.01);
}

.header-right .themeht-btn.primary-btn svg line {
    stroke: var(--white-color);
}

/* --- Fullscreen search overlay ----------------------------------- */
.search-input {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 80px 0;
    text-align: center;
    background: var(--white-color);
    border-bottom: 1px solid var(--primary-color);
    display: none;
}

.search-input.open {
    display: block;
}

.search-inner {
    position: relative;
    padding: 15px 0;
}

.search-input .search-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-input .search-field {
    width: 100%;
    height: 50px;
    padding: 16px 60px 16px 10px;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-color);
    outline: none;
}

.search-input .search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 22px;
    color: var(--text-color);
}

.close-search {
    position: absolute;
    bottom: -20px;
    right: 0;
    cursor: pointer;
    font-size: 30px;
    color: var(--body-color);
}

.close-search:hover {
    color: var(--secondary-color);
}

/* --- Off-canvas side panel (grid icon) --------------------------- */
.side-menu-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 370px;
    max-width: 85vw;
    height: 100%;
    padding: 70px 30px 50px;
    overflow-y: auto;
    background: var(--white-color);
    box-shadow: 0 10px 30px 5px rgba(115, 113, 255, .06);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

body.menu-show .side-menu-popup {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.side-menu-popup .ht-nav-toggle--close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
}

.side-menu-popup .navbar-brand.logo {
    padding: 0;
    margin-bottom: 20px;
    background: none;
    border-bottom-right-radius: 0;
}

.side-menu-widget {
    margin-bottom: 30px;
}

.side-menu-widget__title {
    margin-bottom: 20px;
    color: var(--text-color);
}

.media-icon li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.media-icon li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 24px;
    line-height: 1;
    color: var(--primary-color);
}

/* Dark scrim behind the off-canvas panel */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 4, 26, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 9999;
}

body.menu-show .offcanvas-overlay {
    opacity: 1;
    visibility: visible;
}

/* Prevent background scroll when an overlay is open */
body.no-scroll {
    overflow: hidden;
}

/* =================================================================
   SHARED INNER-PAGE COMPONENTS (About + Team Details)
================================================================= */

/* Page title / breadcrumb banner */
.page-title {
    position: relative;
    z-index: 9;
    margin: 0 20px;
    padding: 200px 0;
    overflow: hidden;
    border-radius: var(--radius-corner);
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.page-title-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 75%);
}

.theme-breadcrumb-box {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
    color: var(--white-color);
    word-break: break-word;
}

.page-breadcrumb {
    display: inline-block;
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0 0;
    padding: 7px 15px 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    list-style: none;
    text-transform: capitalize;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--white-color);
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item a:hover {
    opacity: .8;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: var(--white-color);
}

/* Inner-page content wrapper */
.page-content {
    margin-top: 100px;
    margin-bottom: 100px;
}

.custom-sec-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Standalone heading (h3) used inside content */
.ht-heading {
    margin-bottom: 0;
}

/* Icon list variants */
.list-icon li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.list-icon.style2 li i {
    flex-shrink: 0;
    margin-right: 10px;
    font-size: 24px;
    line-height: 1;
    color: var(--primary-color);
}

/* Drop-cap paragraph */
.ht-first-letter::first-letter {
    float: left;
    margin-right: 8px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Back-to-top button (shared, injected by JS) */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-base);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
}

/* Accordion (shared — service FAQ) */
.accordion__item {
    background: var(--white-color);
    border-radius: var(--radius-corner);
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion__item:last-child {
    margin-bottom: 0;
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 22px 30px;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: var(--text-color);
    cursor: pointer;
}

.accordion__header::after {
    content: "\F4FE"; /* bootstrap-icons plus */
    font-family: bootstrap-icons !important;
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion__item.is-open .accordion__header::after {
    content: "\F2EA"; /* dash */
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion__item.is-open .accordion__body {
    max-height: 400px;
}

.accordion__body p {
    margin: 0;
    padding: 0 30px 24px;
}

/* Prev / next post navigation (shared — portfolio details, blog, etc.) */
.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-nav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-nav__link--next {
    text-align: right;
    margin-left: auto;
}

.post-nav__label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--body-color);
}

.post-nav__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.post-nav__link:hover .post-nav__title {
    color: var(--primary-color);
}

/* Accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* =================================================================
   7. SECTION 2 — HERO BANNER SLIDER
================================================================= */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__slider {
    position: relative;
}

.hero__track {
    position: relative;
}

/* Slides stack on top of each other; fade between them */
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero__slide:first-child {
    position: relative; /* first slide defines the section height */
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background image + dark left-to-transparent gradient overlay */
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #031948 28%, #03194880 46%, rgb(83 116 108 / 0%) 60%);
}

.hero__content {
    position: relative;
    z-index: 9;
    padding: 200px 0;
}

.hero__text {
    max-width: 58%;
}

/* Eyebrow pill */
.hero__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__title {
    margin-bottom: 1.5rem;
    font-size: 90px;
    line-height: 100px;
    color: var(--white-color);
}

.hero__title-accent {
    display: block;
    font-weight: 500;
}

.hero__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.hero__desc p {
    margin: 0;
    max-width: 65%;
    font-size: 18px;
    line-height: 28px;
    color: var(--white-color);
}

/* Rotating "Explore More" circular badge */
.round-text {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin-right: 30px;
    display: inline-block;
    overflow: hidden;
}

.round-text svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.round-text text {
    fill: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.text-btn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--white-color) !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px) brightness(120%) saturate(102%);
}

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

/* Entrance animations (staggered) on the active slide */
.hero__slide.is-active .hero__eyebrow { animation: heroFadeUp 0.8s ease both 0.3s; }
.hero__slide.is-active .hero__title   { animation: heroFadeUp 0.8s ease both 0.5s; }
.hero__slide.is-active .hero__inner   { animation: heroFadeUp 0.8s ease both 0.7s; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Carved-corner prev / next arrow buttons */
.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: flex;
    align-items: center;
    padding: 5px;
    border: none;
    background: var(--light-color);
}

.hero__nav--prev {
    left: 0;
    border-top-right-radius: var(--radius-corner);
    border-bottom-right-radius: var(--radius-corner);
}

.hero__nav--next {
    right: 0;
    flex-direction: row-reverse;
    border-top-left-radius: var(--radius-corner);
    border-bottom-left-radius: var(--radius-corner);
}

.hero__arrow-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 40px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--text-color);
    transition: var(--transition-base);
}

.hero__nav:hover .hero__arrow-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Concave corner SVGs that blend the button into the page */
.hero__shape-arrow svg {
    position: absolute;
    left: 0;
    top: -30px;
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(-90deg) scale(1.01);
}

.hero__shape-arrow svg path {
    fill: var(--light-color);
}

.hero__shape-arrow svg:last-of-type {
    top: auto;
    bottom: -30px;
    transform: rotate(0deg) scale(1.01);
}

.hero__nav--next .hero__shape-arrow svg {
    left: auto;
    right: 0;
    transform: rotate(180deg) scale(1.01);
}

.hero__nav--next .hero__shape-arrow svg:last-of-type {
    right: 0;
    transform: rotate(90deg) scale(1.01);
}

/* =================================================================
   8. SECTION 3 — FEATURE CARDS
================================================================= */
.features {
    padding: 100px 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Reusable feature card (theme .featured-item.style-1) */
.featured-item.style-1 {
    position: relative;
    z-index: 9;
    padding: 50px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
    overflow: hidden;
}

/* Decorative concave shape in the top-right corner */
.ht-shape-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0 30px 0 0;
}

.ht-shape-btn svg path {
    fill: var(--light-color);
}

/* Circular step number badge */
.featured-number {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.featured-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

.featured-item.style-1 .featured-icon {
    position: absolute;
    right: 50px;
    bottom: 50px;
    display: inline-block;
}

.featured-item.style-1 .featured-icon i {
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    color: var(--text-color);
}

/* Icon shakes on card hover (theme uses headShake) */
.featured-item:hover .featured-icon i {
    animation: headShake 2s linear infinite;
}

.featured-item.style-1 .featured-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.featured-item.style-1 .featured-title h4 {
    margin-bottom: 0;
}

.featured-item.style-1 .featured-desc {
    padding-right: 100px;
}

.featured-item p {
    margin-bottom: 0;
}

@keyframes headShake {
    0%   { transform: translateX(0); }
    6.5% { transform: translateX(-6px) rotateY(-9deg); }
    18.5%{ transform: translateX(5px) rotateY(7deg); }
    31.5%{ transform: translateX(-3px) rotateY(-5deg); }
    43.5%{ transform: translateX(2px) rotateY(3deg); }
    50%  { transform: translateX(0); }
    100% { transform: translateX(0); }
}

/* =================================================================
   9. SECTION 4 — ABOUT COMPANY + COUNTERS
================================================================= */
.about {
    padding: 100px 0 100px;
}

.about__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Heading row: title (wide) + intro paragraph & button, bottom aligned */
.about__head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.about__intro p {
    margin-bottom: 20px;
}

/* Reveal-on-scroll image frame */
.ht-img-animation {
    overflow: hidden;
    border-radius: var(--radius-corner);
}

.ht-img-animation img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.3);
    transition: transform 2s ease-out;
}

.ht-img-animation.is-revealed img {
    transform: scale(1);
}

.about__media img {
    aspect-ratio: 1200 / 500;
    object-fit: cover;
}

/* Right column */
.about__aside-top {
    position: relative;
}

.about__aside-top img {
    aspect-ratio: 700 / 600;
    object-fit: cover;
}

/* Play button overlapping the image's bottom-left corner */
.video-button {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.video-button a {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 40px;
}

.video-button a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.video-button .ht-shape-btn.left-side.bottom {
    left: 0;
    top: -111px;
    border-radius: 0 30px 0 0;
    transform: rotate(180deg);
}

/* Counters card */
.about__counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
}

.counter {
    position: relative;
    z-index: 9;
}

.counter-desc span {
    display: inline-block;
    vertical-align: middle;
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    color: var(--text-color);
}

.counter-desc .count-number + span {
    position: relative;
    font-size: 30px;
}

.counter h6 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

/* =================================================================
   10. SECTION 5 — MARQUEE
================================================================= */
.marquee-section {
    padding: 20px 0;
    overflow: hidden;
}

.marquee-wrap {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    will-change: transform;
    animation: marquee 90s linear infinite;
}

.marquee-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-text.style3 span {
    font-size: 100px;
    line-height: 120px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-color);
}

/* Every second heading is tinted with the brand colour */
.marquee-text.style3:nth-child(2n+2) span {
    color: var(--primary-color);
}

.marquee-text.style3 i {
    margin: 0 40px;
    font-size: 40px;
    line-height: 1;
    color: var(--primary-color);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =================================================================
   11. SECTION 6 — SERVICES SLIDER
================================================================= */
.services-sec {
    padding: 90px 0;
}

.services-sec__head {
    max-width: 760px;
    margin: 0 auto 50px;
}

.service-slider {
    position: relative;
}

.service-slider__viewport {
    overflow: hidden;
}

/* --per-view drives how many cards are visible; JS reads it */
.service-slider__track {
    --per-view: 3;
    --gap: 30px;
    display: flex;
    gap: var(--gap);
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.service-slide {
    flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
    max-width: calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
}

/* Card */
.service-item.style-1 {
    position: relative;
    background: var(--white-color);
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.service-item.style-1 .service-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white-color);
    font-size: 40px;
    line-height: 1;
    color: var(--text-color);
    transition: var(--transition-base);
}

.service-item.style-1:hover .service-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.service-item .service-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-corner);
}

.service-item .service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 700 / 600;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item.style-1:hover .service-image img {
    transform: scale(1.05);
}

.service-item.style-1 .service-desc {
    position: relative;
    z-index: 9;
    padding: 30px;
    border-bottom-left-radius: var(--radius-corner);
}

.service-cat a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 7px 15px;
    border-radius: var(--radius-pill);
    background: var(--light-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.service-cat a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.service-title h4 {
    margin-bottom: 0;
    text-transform: capitalize;
}

.service-item .service-title h4 a {
    color: var(--text-color);
}

.service-item .service-title h4 a:hover {
    color: var(--primary-color);
}

/* Round arrow button bottom-right of the card description */
.arrow-button {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: var(--white-color);
}

.arrow-button svg {
    width: 15px;
    height: 15px;
}

.arrow-button svg line {
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-dasharray: 25px;
    stroke-dashoffset: 50px;
    stroke: var(--text-color);
    transition: stroke-dashoffset 1s cubic-bezier(.61, 1, .88, 1);
}

.arrow-button:hover svg line {
    stroke-dashoffset: 0;
    stroke: var(--primary-color);
}

/* Decorative concave corner shapes */
.ht-shape-btn.bottom {
    top: auto;
    bottom: 0;
    transform: rotate(90deg);
}

.ht-shape-btn.left-side {
    left: 0;
    right: auto;
    transform: rotate(-90deg);
}

/* Pagination dots */
.service-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.service-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(43, 77, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-base);
}

.service-slider__dot.is-active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-color);
}

/* =================================================================
   12. SECTION 7 — SKILLS (circle progress) + CONTACT
================================================================= */
.skills-sec {
    padding: 100px 0;
    background-color: var(--primary-color);
}

/* Circle progress row */
.skills-sec__progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ht-circle-progressbar {
    display: flex;
    align-items: center;
}

.ht-circle-progressbar .pie {
    position: relative;
    z-index: 9;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

.ht-circle-progressbar .pie svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

/* White inner disc behind the percentage */
.ht-circle-progressbar .pie::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border-radius: 100%;
    background-color: var(--white-color);
    transform: scale(0.8);
}

.ht-circle-progressbar .pie-track {
    fill: none;
    stroke: var(--white-color);
    stroke-width: 1px;
}

.ht-circle-progressbar .pie-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.ht-circle-progressbar .pie-text {
    fill: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    transform: rotate(90deg);
    transform-origin: center;
}

.ht-circle-progressbar h4 {
    margin-bottom: 10px;
}

.ht-circle-progressbar p {
    margin-bottom: 0;
}

.text-white h4,
.text-white h3,
.text-white p,
.text-white { color: var(--white-color); }

/* Heading + features (left) / form (right) */
.skills-sec__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.ht-heading {
    margin-bottom: 0;
}

.skills-sec__intro > p {
    margin: 15px 0 30px;
}

/* Feature row (icon left, text right) */
.featured-item.style-2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 9;
    margin-bottom: 30px;
}

.featured-item.style-2:last-child {
    margin-bottom: 0;
}

.featured-item.style-2 .featured-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.featured-item.style-2 .featured-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--text-color);
    color: var(--white-color);
    font-size: 34px;
    line-height: 1;
}

.featured-item.style-2 .featured-title h4 {
    margin-bottom: 10px;
}

.featured-item.text-white h4,
.featured-item.text-white .featured-icon i {
    color: var(--white-color);
}

.featured-item.text-white p {
    color: var(--light-color);
}

/* Feature card — style-3 (icon-top), used on service pages */
.featured-item.style-3 {
    position: relative;
    z-index: 9;
    height: 100%;
    padding: 30px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
}

.featured-item.style-3 .featured-icon {
    margin-bottom: 20px;
}

.featured-item.style-3 .featured-icon i {
    display: inline-block;
    font-size: 50px;
    line-height: 1;
    color: var(--primary-color);
}

.featured-item.style-3 h4 {
    margin-bottom: 15px;
}

.featured-item.style-3 p {
    margin-bottom: 0;
}

/* Contact form card */
.form-one {
    position: relative;
    margin-top: 40px;
    padding: 50px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
}

.contact-top {
    position: absolute;
    right: -50px;
    top: -50px;
}

.form-one .ht-shape-btn {
    border-radius: 0 30px 0 0;
}

.form-one .ht-shape-btn svg path {
    fill: var(--primary-color);
}

.form-icon {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--text-color);
    color: var(--white-color);
    font-size: 30px;
}

.form-one .theme-title {
    margin-bottom: 30px;
}

.form-one .theme-title h6.light-bg {
    background-color: var(--light-color);
}

.form-one .theme-title h2 {
    font-size: 32px;
    line-height: 42px;
}

/* Form fields */
.quote-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.quote-form__field--full {
    grid-column: 1 / -1;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--light-color);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--body-color);
}

.quote-form textarea {
    height: 100px;
    padding-top: 16px;
    border-radius: 20px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    background: var(--white-color);
    border-color: var(--primary-color);
}

.quote-form input[type="submit"] {
    width: auto;
    height: auto;
    padding: 14px 34px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.quote-form input[type="submit"]:hover {
    background: var(--secondary-color);
}

/* =================================================================
   13. SECTION 8 — TEAM SLIDER
================================================================= */
.team-sec {
    padding: 90px 0;
}

.team-sec__head {
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-slider__viewport {
    overflow: hidden;
}

.team-slider__track {
    --per-view: 4;
    --gap: 30px;
    display: flex;
    gap: var(--gap);
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.team-slide {
    flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
    max-width: calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
}

.team-member {
    position: relative;
}

.team-member.style-1 {
    background: var(--white-color);
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.team-member .team-images {
    position: relative;
    overflow: hidden;
    border-radius: 30px 0 30px 30px;
}

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 800;
    object-fit: cover;
}

/* Hover gradient overlays */
.team-member.style-1 .team-images::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(0deg, var(--secondary-color) 0%, rgba(255, 255, 255, 0) 40.55%);
    transition: .5s;
}

.team-member.style-1 .team-images::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120%;
    height: 0%;
    z-index: 2;
    border-radius: 0 0 30px 30px;
    background-image: linear-gradient(0deg, var(--primary-color) 5.83%, rgba(70, 84, 77, 0) 60.55%);
    transition: .5s;
}

.team-member.style-1:hover .team-images::before {
    height: 100%;
}

/* Name + role overlaid at the bottom */
.team-member.style-1 .team-desc {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 99;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.team-member .team-desc h4 {
    margin-bottom: 0;
}

.team-member.style-1 .team-desc h4 a {
    color: var(--white-color);
}

.team-member .team-desc a:hover {
    color: var(--primary-color);
}

.team-member .team-desc span {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 15px;
    border-radius: 10px;
    background: var(--light-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Share button + reveal-on-hover social icons */
.team-share-icon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white-color);
    font-size: 20px;
    color: var(--text-color);
}

.team-social-icon {
    position: absolute;
    top: 20px;
    right: 8px;
    z-index: 9;
    text-align: center;
    transform: translateX(-60px);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.team-member:hover .team-social-icon {
    transform: translateX(-80px);
    opacity: 1;
}

.team-social-icon li {
    display: block;
    margin: 0 0 8px;
}

.team-social-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--text-color);
    font-size: 14px;
}

.team-social-icon li a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* Team card — style-2 (shared: About team slider + Team Member grid) */
.team-member.style-2 {
    position: relative;
    height: 100%;
    padding: 70px 30px 40px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
    text-align: center;
    overflow: hidden;
}

.team-member.style-2 .team-images {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
}

.team-member.style-2 .team-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member.style-2 .team-desc {
    position: static;
    padding-top: 30px;
    text-align: center;
}

.team-member.style-2 .team-desc h4 a {
    color: var(--text-color);
}

.team-member.style-2 .team-desc h4 a:hover {
    color: var(--primary-color);
}

.team-member.style-2 .team-desc > span {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 15px;
    border-radius: 10px;
    background: var(--light-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.team-desc__meta {
    display: inline-block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.team-desc__meta li {
    margin-bottom: 10px;
}

.team-desc__meta li:last-child {
    margin-bottom: 0;
}

.team-desc__meta li i {
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
    color: var(--primary-color);
}

.team-desc__meta li a {
    font-weight: 500;
    color: var(--body-color);
}

.team-desc__meta li a:hover {
    color: var(--primary-color);
}

.team-member.style-2 .team-social-icon li a {
    background: var(--light-color);
}

.team-member.style-2 .team-social-icon li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Reuse the shared pagination dots */
.team-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.team-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(43, 77, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-base);
}

.team-slider__dot.is-active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-color);
}

/* =================================================================
   14. SECTION 9 — TESTIMONIALS
================================================================= */
.testimonial-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.testimonial-sec__media {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-sec__body {
    position: relative;
    padding: 100px 12% 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Quote badge top-left of the content panel */
.testimonial-quote-home {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 30px;
    line-height: 1;
    transform: translateX(-50%);
}

.testimonial-sec__shape {
    left: 0;
    top: 124px;
    right: auto;
}

.testimonial-slider__viewport {
    overflow: hidden;
}

.testimonial-slider__track {
    --per-view: 1;
    --gap: 10px;
    display: flex;
    gap: var(--gap);
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.testimonial.style-1 {
    position: relative;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 2px;
    color: #ffb300;
}

.testimonial.style-1 p {
    font-size: 22px;
    line-height: 36px;
    color: var(--text-color);
}

.testimonial.style-1 .testimonial-content {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial.style-1 .testimonial-img {
    width: 110px;
    height: 110px;
    margin-right: 15px;
    padding: 10px;
    border: 2px dashed var(--light-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial .testimonial-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-caption {
    position: relative;
    display: inline-block;
}

.testimonial .testimonial-caption h4 {
    display: inline-block;
    margin-bottom: 0;
    color: var(--text-color);
}

.testimonial .testimonial-caption span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.testimonial-slider__dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

/* =================================================================
   15. SECTION 10 — PRICING
================================================================= */
.pricing-sec {
    padding: 100px 0;
}

.pricing-sec__head {
    margin-bottom: 50px;
}

.pricing-sec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-table {
    position: relative;
    z-index: 9;
    padding: 50px;
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.price-table.white-bg { background: var(--white-color); }
.price-table.primary-bg { background: var(--primary-color); }
.price-table.secondary-bg { background: var(--secondary-color); }

.price-table .price-title h4 {
    margin-bottom: 20px;
}

.price-value {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-color);
}

.price-table.primary-bg .price-value { border-top-color: var(--light-color); }
.price-table.secondary-bg .price-value { border-top-color: rgba(255, 255, 255, 0.2); }

.price-value h2 {
    display: inline-block;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 70px;
    line-height: 1;
    font-weight: 600;
    color: var(--text-color);
}

.price-value h2 sup {
    top: 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    vertical-align: super;
    color: var(--secondary-color);
}

.price-value h2 span {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--body-color);
}

.price-list {
    margin-bottom: 30px;
}

.price-list ul li {
    position: relative;
    padding: 10px 0;
}

.price-list li i {
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
}

/* White text variants */
.price-table.text-white .price-value h2,
.price-table.text-white .price-value h2 sup,
.price-table.text-white .price-value h2 span,
.price-table.text-white h4,
.price-table.primary-bg .price-list li i,
.price-table.secondary-bg .price-list li i {
    color: var(--white-color);
}

.price-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
    font-size: 40px;
    line-height: 1;
    color: var(--white-color);
}

/* =================================================================
   16. SECTION 11 — PORTFOLIO
================================================================= */
.portfolio-marquee {
    padding: 10px 0 40px;
}

.portfolio-sec {
    padding-bottom: 100px;
}

.portfolio-slider__viewport {
    overflow: hidden;
    padding: 0 30px;
}

.portfolio-slider__track {
    --per-view: 2;
    --gap: 30px;
    display: flex;
    gap: var(--gap);
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.portfolio-slide {
    flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
    max-width: calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-corner);
}

.portfolio-item .portfolio-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Gradient that wipes up on hover */
.portfolio-item .portfolio-image::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    z-index: 2;
    border-radius: 0 0 30px 30px;
    background-image: linear-gradient(0deg, var(--primary-color) 15.83%, rgba(70, 84, 77, 0) 60.55%);
    transition: .5s;
}

.portfolio-item:hover .portfolio-image::before {
    height: 100%;
}

/* Caption slides in from the left on hover */
.portfolio-item .portfolio-desc {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
    transition: all 0.5s ease-in-out;
}

.portfolio-item:hover .portfolio-desc {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.portfolio-desc .portfolio-cat a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 7px 15px;
    border-radius: 10px;
    background: var(--light-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.portfolio-item .portfolio-desc h4 {
    margin-bottom: 0;
}

.portfolio-item .portfolio-desc h4 a {
    color: var(--white-color);
}

/* Zoom button slides in from the right on hover */
.popup-img {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--text-color);
    font-size: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    transition: all 0.5s ease-in-out;
}

.popup-img:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.portfolio-item:hover .popup-img {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.portfolio-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

/* =================================================================
   17. SECTION 12 — BLOG & ARTICLES
================================================================= */
.blog-sec {
    padding: 90px 0;
}

.blog-sec__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-sec__head .theme-title {
    max-width: 600px;
}

.blog-sec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card.style-2 {
    position: relative;
    background: var(--white-color);
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.post-card.style-2 .post-image {
    position: relative;
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 400;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card.style-2:hover .post-image img {
    transform: scale(1.05);
}

/* Author badge top-left */
.post-card.style-2 .post-admin {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white-color);
    font-size: 24px;
    color: var(--text-color);
}

.post-card.style-2 .post-desc {
    padding: 30px 50px 30px 30px;
}

.post-card .post-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.post-card .post-bottom li {
    position: relative;
    margin-right: 15px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
}

.post-card .post-bottom li:last-child {
    margin-right: 0;
}

.post-bottom li i {
    margin-right: 5px;
    font-size: 16px;
    vertical-align: middle;
    color: var(--primary-color);
}

.post-card .post-bottom li a {
    color: var(--text-color);
}

.post-card .post-bottom li a:hover {
    color: var(--primary-color);
}

.post-card .post-title h4 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    word-break: break-word;
}

.post-card .post-title h4 a {
    color: var(--text-color);
}

.post-card .post-title h4 a:hover {
    color: var(--primary-color);
}

/* =================================================================
   18. SECTION 13 — FOOTER
================================================================= */
.footer {
    position: relative;
    z-index: 9;
    margin-bottom: 0px;
    padding: 100px 0;
    overflow: hidden;
    background-color: #001733;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.primary-footer {
    position: relative;
    z-index: 99;
    margin-bottom: 80px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1.7fr 1.4fr;
    gap: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-about {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer h5.widget-title {
    margin-bottom: 30px;
    padding-left: 0;
    color: var(--white-color);
}

/* Contact list with leading icons */
.media-icon {
    padding-left: 0;
}

.media-icon li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.media-icon li:last-child {
    margin-bottom: 0;
}

.media-icon li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 24px;
    line-height: 1;
    color: var(--white-color);
}

.media-icon li a,
.media-icon li p {
    margin-bottom: 0;
    color: var(--white-color);
}

.media-icon li a:hover {
    color: var(--primary-color);
}

/* Footer link menus */
.footer-col--links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-widget .menu li {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-widget .menu li:last-child {
    margin-bottom: 0;
}

.footer-widget .menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.footer-widget .menu li a:hover {
    color: var(--primary-color);
}

/* Newsletter form */
.subscribe-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.subscribe-form input[type="email"] {
    width: 100%;
    height: 55px;
    padding: 10px 55px 10px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--white-color);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--body-color);
}

.subscribe-btn {
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
}

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

/* Follow us */
.footer-follow {
    margin-top: 30px;
}

.footer-follow h6 {
    margin-bottom: 1rem;
    color: var(--white-color);
}

.social-icons.footer-social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: none;
    background: var(--white-color);
    color: var(--text-color);
    font-size: 16px;
}

.social-icons.footer-social li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Bottom bar */
.secondary-footer {
    position: relative;
    color: var(--white-color);
}

.secondary-footer-inner {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--white-color);
}

.copyright a {
    color: var(--primary-color);
    text-decoration: underline;
}
