@import url('https://fonts.googleapis.com/css2?family=Vend+Sans:wght@300;400;500;600;700&display=swap');

/* ======================================================
   CORE THEME VARIABLES
====================================================== */

:root {
    color-scheme: light dark;

    --primary: #4361ee;
    --secondary: #3f37c9;

    --primary-gr: #C6CFFA;
    --secondary-gr: #C5C3EF;

    --primary-gradient: linear-gradient(to right, var(--primary), var(--secondary));

    --primary-gradient-gr: linear-gradient(to right, var(--primary-gr), var(--secondary-gr));

    --primary-light: #ECEFFD;

    /* Light theme */
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-utility-box: #ffffff;
    --bg-section: #f7f9fa;
    --bg-light: #f1f1f1;
    --bg-gray: #64748b;
    --bg-input: #ffffff;
    --bg-white: #ffffff;
    --bg-invert: #000000;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    --border-invert: #212529;

    --text-main: #212529;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-warning: #fbbf24;

    --border-light: #e2e4e7;

    --shadow-main: 0 10px 30px rgba(0, 0, 0, .05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);

    --transition: .3s ease;

    --divider: #94a3b8;

    --form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
}

/* ======================================================
   DARK THEME VARIABLES
====================================================== */

[data-theme="dark"] {

    --primary-light: #384270;

    --primary-gr: #2A2F6E;
    --secondary-gr: #3A357A;

    /* Dark theme */
    --bg-main: #000000;
    --bg-card: #1a1d29;
    --bg-utility-box: #1a1d29;
    --bg-section: #0c0c0c;
    --bg-light: #252a3a;
    --bg-input: #ffffff;
    --bg-white: #000000;
    --bg-invert: #ffffff;

    --border-invert: #ffffff;

    --text-main: #ffffff;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --border-light: #374151;

    --shadow-main: 0 10px 30px rgba(0, 0, 0, .3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);

    --form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
}

/* ======================================================
   GLOBAL BASE
====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
    font-family: "Vend Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    background: var(--bg-main);
    color: var(--text-main);
}

h1 {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

[class^="ri-checkbox-circle-fill"] {
    color: var(--primary);
}

[data-theme="dark"] .scroll-top-wrap::after {
    color: #7e7e7e;
}

[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgb(255,255,255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ======================================================
   SECTIONS & CARDS 
====================================================== */

/* Section Style */
section {
    padding: 100px 0;
    position: relative;
}

.section-bg {
    background-color: var(--bg-section);
}

.section-badge {
    display: inline-block;
    backdrop-filter: blur(10px);
    padding: 8px 10px;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    height: 34px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Section Card Style */
.section-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    overflow: hidden;
    border-radius: 1.375rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.section-card .box-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.375rem;
    corner-shape: squircle;
    background-color: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 36px;
    transition: var(--transition);
}

.section-card:hover .box-icon {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.section-card:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-main);
}

.icon-box {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 1.375rem;
    corner-shape: squircle;
    margin-bottom: 24px;
    font-size: 30px;
    background: var(--primary-gradient);
    border: 1px solid var(--primary-light);
    color: var(--text-white);
    flex-shrink: 0;
    transition: var(--transition);
}

.section-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* ======================================================
   FORMS
====================================================== */

input,
select,
textarea {
    background: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-main);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
}

input {
    font-size: 16px;
    line-height: 1.7;
}

/* ======================================================
   BUTTONS
====================================================== */

.btn {
    font-family: "Vend Sans", sans-serif;
    width: max-content;
    border: 1px solid transparent;
    padding: 1rem 1.5rem;
    overflow: hidden;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    text-transform: capitalize;
    transition: var(--transition);
}

.btn.section-btn1 {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.btn.section-btn1:hover,
.btn.section-btn1:active {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn.section-btn1::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn.section-btn1:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition: var(--transition);
}

.btn.section-btn2 {
    background-color: #fff;
    border-color: var(--primary);
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.btn.section-btn2:hover,
.btn.section-btn2:active {
    background-color: #fff;
    border-color: var(--primary);
    color: #fff;
}

.btn.section-btn2::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn.section-btn2:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition: var(--transition);
}

.btn.section-btn3 {
    background-color: transparent;
    border-color: #fff;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.btn.section-btn3:hover,
.btn.section-btn3:active {
    background-color: transparent;
    border: 1px solid #fff;
    color: #212529;
}

.btn.section-btn3::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #fff;
    transition: var(--transition);
    z-index: -1;
}

.btn.section-btn3:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition: var(--transition);
}

.btn.section-btn4 {
    background-color: #fff;
    border-color: #fff;
    color: #212529;
    position: relative;
    z-index: 1;
}

.btn.section-btn4:hover,
.btn.section-btn4:active {
    background-color: #fff;
    border-color: #fff;
    color: #212529;
}

.btn.section-btn4::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn.section-btn4:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    transition: var(--transition);
}

.btn-close {
    --bs-btn-close-bg: none;
    background-image: var(--btn-close-bg);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

:not(.btn-check)+.btn-link.btn:active {
    color: var(--primary);
}

:not(.btn-check)+.btn-link.btn:active:focus-visible {
    box-shadow: none;
}

.btn-link {
    color: var(--text-main);
    font-weight: 500;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
    line-height: 24px;
}

.btn-link svg {
    vertical-align: -4px;
}

.btn-link::after {
    content: '';
    background-color: var(--primary);
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 2px;
    right: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

/* ======================================================
   THEME TOGGLE
====================================================== */

.theme_button {
    transition: var(--transition);
}

.btn.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 0.475rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
}

.btn.theme-toggle:hover,
.btn.theme-toggle:active {
    background-color: var(--bg-light);
    color: var(--text-main);
    outline: none;
}

.theme-icon-light,
.theme-icon-dark {
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.2rem;
}

/* ======================================================
   UTILITIES
====================================================== */

.badge,
.tag {
    background: #ECEFFD;
    color: var(--primary);
}

.overlay {
    background: rgba(0, 0, 0, .5);
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-main);
}

a:hover {
    color: var(--primary);
}

/* ======================================================
   Page Loader
====================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out 0s infinite both;
}

.dot:nth-child(1) {
    background: #3f37c9;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    background: #414CDB;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.dot:nth-child(3) {
    background: var(--primary);
}

@keyframes dotPulse {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ======================================================
   NAVBAR
====================================================== */

/* LIGHT MODE */
:root {
    --logo-main: url('../images/black-logo.svg');
    --logo-footer: url('../images/black-logo.svg');
    --map-filter: none;
}

/* DARK MODE */
[data-theme="dark"] {
    --logo-main: url('../images/white-logo.svg');
    --logo-footer: url('../images/white-logo.svg');
    --map-filter: grayscale(199%) invert(72%) contrast(122%);
}

.navbar-brand img {
    content: var(--logo-main);
}

.offcanvas .navbar-brand img {
    content: var(--logo-main);
}

.navbar {
    background: var(--bg-card);
    padding: 15px;
    transition: var(--transition);
}

.navbar.menustyleone {
    background: transparent;
}

.navbar.menustyleone>.container {
    background-color: var(--bg-card);
    border-radius: 0.375rem;
    height: 80px;
}

/* Sticky Header Base */
#headerSticky {
    position: absolute;
    width: 100%;
    z-index: 1030;
}

/* When sticky is active */
#headerSticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    background-color: var(--bg-card);
    box-shadow: var(--shadow-main);
    transform: translate3d(0, 0, 0);
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transition: var(--transition);
}

@keyframes fade-in-down {
    0% {
        transform: translate3d(0, -50px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.navbar .navbar-brand:focus-visible {
    outline: none;
}

.nav-item .nav-link {
    padding: 10px 20px 10px 0px;
    margin: 0;
    position: relative;
    text-transform: capitalize;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 400;
    transition: var(--transition);
}

.navbar-expand-lg .nav-item:hover .nav-link {
    color: var(--primary);
}

.navbar .dropdown>.dropdown-toggle::after,
.offcanvas .dropdown .dropdown-toggle::after {
    font-family: "Font Awesome 7 Free";
    content: "\f107";
    line-height: 40px;
    font-weight: 900;
    font-size: 16px;
    z-index: 6;
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    display: block;
    border: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar .dropdown>.dropdown-toggle.active::after,
.offcanvas .dropdown .dropdown-toggle.active::after {
    content: "\f106";
}

.dropdown-mega .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
}

.menu-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.navbar .dropdown>.dropdown-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 200px;
    min-width: max-content;
    z-index: 100;
    padding: 0;
    background-color: var(--bg-card);
    border-color: var(--border-light);
    transform: translateY(20px);
    opacity: 0;
    display: none;
    transition: var(--transition);
}

.navbar .dropdown:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transform: translateY(0px);
}

.navbar .dropdown>.dropdown-menu .dropdown-item:hover,
.navbar .dropdown>.dropdown-menu .dropdown-item:active,
.navbar .dropdown>.dropdown-menu .dropdown-item.active {
    background-color: transparent;
    color: var(--primary);
}

.navbar .dropdown .dropdown-submenu .dropdown-menu {
    border-color: var(--border-light);
}

.navbar .dropdown>.dropdown-menu .dropdown-item:focus-visible {
    outline: none;
}

.navbar .dropdown .dropdown-menu .dropdown-submenu .dropdown-menu {
    margin-left: 10px;
    padding: 0;
    transition: var(--transition);
}

.navbar .dropdown .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
    margin-left: 0;
    visibility: visible;
    opacity: 1;
}

.navbar .dropdown .dropdown-menu .dropdown-submenu .dropdown-toggle::after {
    font-family: "Font Awesome 7 Free";
    content: "\f054";
    line-height: 40px;
    font-weight: 900;
    font-size: 12px;
    z-index: 6;
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    display: block;
    border: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar-toggler {
    background-color: transparent;
    border-color: var(--border-invert);
    padding: 6px;
    font-size: 14px;
    width: 36px;
    height: 36px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgb(33,37,41)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-submenu:has(.dropdown-menu:hover)>.dropdown-item.dropdown-toggle {
    color: var(--primary);
}

#header-main .btn.section-btn1:hover {
    transform: none;
}

.offcanvas {
    background-color: var(--bg-white);
    z-index: 999999;
}

.offcanvas.offcanvas-start {
    width: 300px;
}

.offcanvas .navbar-nav {
    border-top: 1px solid var(--border-light);
}

.offcanvas .navbar-nav li {
    border-bottom: 1px solid var(--border-light);
}

.offcanvas .navbar-nav li ul li a {
    padding-left: 20px;
}

.offcanvas .navbar-nav li ul li a:hover {
    color: var(--primary);
}

.offcanvas .navbar-nav li ul li a.collapsed {
    color: var(--text-main);
}

.offcanvas .navbar-nav li ul li ul li a {
    padding-left: 35px;
}

.offcanvas .navbar-nav li ul li:first-child {
    border-top: 1px solid var(--border-light);
}

.offcanvas .navbar-nav li ul li:last-child {
    border-bottom: none;
}

.offcanvas .navbar-nav .nav-item.dropdown>.nav-link.active {
    color: var(--primary);
}

.offcanvas .navbar-nav .nav-item .btn-toggle-nav .nav-item>.nav-link.active {
    color: var(--primary);
}

.offcanvas .navbar-nav .nav-item .nav-link {
    height: 48px;
}

.offcanvas .btn-toggle-nav li a {
    font-size: 15px;
}

.offcanvas-backdrop {
    z-index: 1044;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    background-color: var(--bg-card);
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

.dropdown-item:focus {
    outline: none;
}

/* ======================================================
   Hero Slider Section
====================================================== */

.hero-badge {
    display: inline-block;
    backdrop-filter: blur(10px);
    padding: 8px 10px;
    border-radius: 0.375rem;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.sliderstyletwo .hero-badge,
.sliderstylethree .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.section-page-heading {
    padding: 160px 0 80px;
    background-image: var(--primary-gradient-gr);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.section-page-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-page-heading p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.section-page-heading .breadcrumb-item {
    font-size: 16px;
    color: var(--text-main);
}

.section-page-heading .breadcrumb-item a {
    transition: none;
}

.section-page-heading .breadcrumb-item i {
    margin: 0 8px;
}

.section-page-heading .breadcrumb-item.active span {
    font-weight: 600;
}

.section-page-heading .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.section-page-heading .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: 16px;
}

.section-page-heading .hero-content {
    position: relative;
    z-index: 2;
}

.section-page-heading .hero-content .hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.section-page-heading .hero-content .hero-stats .stat-item {
    text-align: center;
}

.section-page-heading .hero-content .hero-stats .stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-page-heading .hero-content .hero-stats .stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 2%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 2rem;
}

.card-content h4 {
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.section-page-heading .hero-card,
.slider-hero-slick .hero-card,
.image_container,
.card-img {
    position: relative;
    border-radius: 16px;
    transition: all 0.7s cubic-bezier(.25, .8, .25, 1);
    transform-style: preserve-3d;
}

.section-page-heading .hero-card img,
.slider-hero-slick .hero-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

button {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

.arrow-slick-one {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    font-size: 30px;
    color: var(--text-main);
    position: absolute;
    opacity: 0;
    top: 50%;
    z-index: 200;
    transform: translateY(-50%);
    transition: var(--transition);
}

.sliderstyletwo .arrow-slick-one {
    color: var(--text-white);
}

.prev-slick-one {
    left: 50px;
    right: auto;
}

.next-slick-one {
    right: 50px;
    left: auto;
}

.visible-false {
    visibility: hidden;
}

.visible-true {
    visibility: visible;
}

.hero-section-content {
    position: relative;
    z-index: 1;
    padding: 200px 0 130px;
}

.slider-hero-slick {
    background-image: var(--primary-gradient-gr);
}

.slider-hero-slick.sliderstylethree {
    background-image: var(--primary-gradient);
}

.slider-hero-slick .hero-section-content p {
    font-size: 16px;
    color: var(--text-main);
}

.slider-hero-slick.sliderstyletwo .hero-section-content h1,
.slider-hero-slick.sliderstylethree .hero-section-content h1,
.slider-hero-slick.sliderstyletwo .hero-section-content p,
.slider-hero-slick.sliderstylethree .hero-section-content p {
    color: var(--text-white);
}

.slider-hero-slick .btn-content {
    margin-top: 30px;
}

.slick-dots li button:before {
    content: none;
}

.slick-dots li button {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.slick-dots button::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(67, 97, 238, 0.3);
    border-radius: 50%;
}

.slider-hero-slick.sliderstyletwo .slick-dots button::after,
.slider-hero-slick.sliderstylethree .slick-dots button::after {
    background: rgba(255, 255, 255, 0.4);
}

.slider-hero-slick.sliderstyletwo .slick-dots li button,
.slider-hero-slick.sliderstylethree .slick-dots li button {
    background: transparent;
}

.slider-hero-slick.sliderstyletwo .slick-dots li.slick-active button,
.slider-hero-slick.sliderstylethree .slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 0.4);
}

.slider-hero-slick .slick-dots {
    bottom: 36px;
}

.slick-dots li.slick-active button {
    background: rgba(67, 97, 238, 0.3);
}

.slick-dots li.slick-active button::after {
    background: var(--primary);
}

.slider-hero-slick.sliderstylethree .slick-dots li.slick-active button::after {
    background: rgba(255, 255, 255, 1);
}

.slider-hero-slick.sliderstyletwo .item-slick-one .header-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1);
    transition: transform 8000ms ease, opacity 1800ms ease-in;
    z-index: -1;
}

.slider-hero-slick.sliderstyletwo .item-slick-one.slick-current .header-img {
    transform: scale(1.2);
}

.slider-hero-slick.sliderstyletwo .slick-dots li.slick-active button::after {
    background: rgba(255, 255, 255, 1);
}

/* ======================================================
   About Us Section
====================================================== */

.about .section-title {
    margin-bottom: 0;
    text-align: left;
}

.image_container,
.about-content {
    position: relative;
    height: 100%;
}

.image_container img {
    height: 100%;
    object-fit: cover;
}

.stats-box {
    line-height: 1;
    background: var(--primary-light);
    border: 1px solid var(--primary);
}

.stats-box .stats-number {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.stats-box .stats-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 20px;
}

/* ======================================================
   Testimonials
====================================================== */

.testimonials .testimonial-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonials .testimonial-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.testimonials .client-img {
    width: 56px;
    height: 56px;
    overflow: hidden;
    margin-right: 15px;
}

.testimonials .testimonial-card h6 {
    line-height: 24px;
}

.testimonials .testimonial-card p {
    font-size: 14px;
    line-height: 22px;
}

.testimonials .testimonial-card .testimonial-card-text {
    font-size: 18px;
    line-height: 28px;
}

.mb-n6 {
    margin-bottom: -3.5rem;
}

.testimonial-slick .slick-dots,
.blog-slick .slick-dots {
    bottom: -35px;
}
.slick-list {
    margin: 0 -12px;
}
.slick-slide {
    margin: 0 12px;
}

/* ======================================================
   Blog
====================================================== */

.blog-card {
    padding: 20px;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--primary);
}

.blog-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
}

.blog-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding-top: 20px;
}

.blog-card h5 a {
    display: inline;
    line-height: 30px;
    padding-bottom: 2px;
    background-image: var(--primary-gradient);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: 1px 92%;
    transition: 0.3s, background-size 0.8s;
}

.blog-card h5 a:hover {
    background-size: 100% 1px;
}

/* ======================================================
   Blog Detail Page
====================================================== */

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-main);
    font-size: 14px;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    font-size: 16px;
}

.blog .article-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
}

.blog .article-content .section-title h2 {
    margin-bottom: 20px;
}

.blog .article-content h4 {
    font-size: 24px;
}

.blog .article-content h5 {
    font-size: 20px;
}

.blog-detail-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog .article-content p {
    margin-bottom: 20px;
}

.blog .article-content ul,
.blog .article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog .article-content li {
    margin-bottom: 10px;
}

.content-highlight {
    background-image: var(--primary-gradient);
    color: var(--text-white);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
}

.content-highlight h3 {
    color: var(--text-white);
    margin-top: 0;
}

.author-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
    margin: 50px 0;
    position: relative;
    gap: 10px;
}

.author-info h4 {
    margin-bottom: 10px;
}

.related-posts .blog-card {
    height: 100%;
}

.navigation-next-prev {
    display: block;
    margin: 50px 0;
    padding: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.navigation-next-prev .divider {
    background-color: var(--divider);
    width: 1px;
    height: 40px;
}

.navigation-post:hover {
    color: var(--text-main);
}

.navigation-post .nav-post-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation-post .nav-post-label i {
    width: 44px;
    height: 44px;
    border-radius: 0.375rem;
    font-size: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.navigation-post:hover .nav-post-label i {
    background-color: var(--primary);
    color: var(--text-white);
}

/* ======================================================
   Comments Section
====================================================== */

.comments-header h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.comments-header h4:after {
    content: '';
    width: 40px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image: var(--primary-gradient) 1;
    border-radius: 6px;
    background: var(--primary);
    position: absolute;
    bottom: 4px;
    left: 0;
}

.comment {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}

.comment:last-child {
    border-bottom: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-reply {
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.comment-reply:hover {
    color: var(--secondary);
}

.comment-replies {
    margin-left: 30px;
    margin-top: 30px;
    padding-left: 30px;
    border-left: 2px solid var(--divider);
}

/* ======================================================
   Comment Form
====================================================== */

.comment-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
    margin-top: 40px;
}

.comment-form h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.comment-form h4:after {
    content: '';
    width: 40px;
    border-bottom: 3px solid var(--primary);
    border-radius: 6px;
    background: var(--primary);
    position: absolute;
    bottom: 4px;
    left: 0;
}

.form-control {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 0;
    color: var(--text-main);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: var(--transition);
}

textarea.form-control {
    min-height: 118px;
    resize: vertical;
}

.contact-form .form-row {
    display: flex;
    gap: 24px;
}

.form-col {
    flex: 1;
}

.comment-form .form-check-input {
    margin-top: 0.35em;
}

/* ======================================================
   Tags and Share
====================================================== */

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    background: var(--bg-white);
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.social-share a:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* ======================================================
   Form Styling
====================================================== */

.form-check-input:focus {
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--text-muted);
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--text-muted);
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--text-muted);
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: var(--text-muted);
}

.form-control::placeholder {
    /* Firefox 18- */
    color: var(--text-muted);
}

.comment-form .form-control,
.contact .form-control,
.contact-form .form-control,
.contact .form-select {
    padding: 15px;
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    transition: var(--transition)
}

.contact .form-select {
    color: var(--text-muted);
    background-image: var(--form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    --bs-form-select-bg-img: none;
}

.contact .form-select:valid {
    color: var(--text-main);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: none;
}

.form-select {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1rem;
}

/* ======================================================
   Contact Section
====================================================== */

.contact .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.contact .card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
}

.contact .contact-form-col {
    padding: 24px;
    border-radius: 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
}

.contact .contact-form-col h3 {
    margin-bottom: 24px;
    line-height: 1;
}

.contact .contact-info-box {
    padding: 16px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    transition: var(--transition);
}

.contact .contact-info-box:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
}

.contact .contact-info-box .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact .contact-info-box .contact-detail .contact-info-label {
    margin-bottom: 8px;
    line-height: 16px;
}

.contact .contact-info-box .contact-detail .contact-info-text {
    line-height: 20px;
    font-weight: 600;
    display: block;
}

#map {
    filter: var(--map-filter);
    transition: filter .2s ease;
}

/* ======================================================
   Default placeholder color
====================================================== */

.package-select {
    color: var(--text-muted);
}

.map .map-container {
    overflow: hidden;
}

.contact .d-grid {
    grid-template-columns: auto;
}

.contact .form-label {
    color: var(--text-main);
}

.contact .form-control[type=file],
.content .form-control[type=file] {
    padding-left: 27px;
}

/* ======================================================
   FAQs
====================================================== */

.faq-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--primary);
}

.faq-accordion .accordion-button {
    padding: 1.5rem;
    font-weight: 500;
    font-size: 18px;
    border: none;
    box-shadow: none;
    transition: none;
    background-color: transparent;
    color: var(--text-main);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: var(--fa-display, inline-block);
    font-family: var(--_fa-family);
    font-feature-settings: normal;
    font-style: normal;
    font-synthesis: none;
    font-variant: normal;
    font-weight: var(--fa-style, 400);
    line-height: 20px;
    text-align: center;
    text-rendering: auto;
    width: var(--fa-width, 20px);
    content: "\+";
    font-size: 30px;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.faq-accordion .accordion-body {
    color: var(--text-main);
    padding-top: 0;
    transition: none;
}

/* ======================================================
   CTA Section
====================================================== */

.cta-section {
    background: rgba(67, 97, 238, 0.3);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.cta-section::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: rgba(67, 97, 238, 0.32);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

.cta-section::after {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: rgba(67, 97, 238, 0.32);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

/* ======================================================
   Ripple Effect
====================================================== */

@keyframes ripple {
    0% {
        box-shadow:
            0 0 0 0 rgba(67, 97, 238, 0.1),
            0 0 0 40px rgba(67, 97, 238, 0.1),
            0 0 0 80px rgba(67, 97, 238, 0.1),
            0 0 0 120px rgba(67, 97, 238, 0.1);
    }

    100% {
        box-shadow:
            0 0 0 40px rgba(67, 97, 238, 0.1),
            0 0 0 80px rgba(67, 97, 238, 0.1),
            0 0 0 120px rgba(67, 97, 238, 0.1),
            0 0 0 160px rgba(67, 97, 238, 0);
    }
}

.cta-section h2 {
    line-height: 44px;
}

.cta-section .btn.section-btn1,
.cta-section .btn.section-btn2 {
    margin-top: 32px;
}

.cta-section .btn.section-btn3 {
    margin-top: 32px;
}

/* ======================================================
   Our Core Values Section
====================================================== */

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: 700;
    color: #c3ccf3;
    line-height: 1;
    transition: var(--transition);
}

/* ======================================================
   Team Section Team Card 1
====================================================== */

.team-card-1 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.team-card-1:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-main);
}

.team-card-1 .team-img {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.team-card-1 .team-img img {
    transition: var(--transition);
}

.team-card-1:hover .team-img img {
    transform: scale(1.1) rotate(-4deg);
    transition: var(--transition);
}

.team-card-1 .team-content {
    padding: 16px;
    text-align: center;
    transition: var(--transition)
}

.team-card-1 .team-content h4 {
    margin-bottom: 12px;
}

.team-card-1 .team-content p {
    line-height: 16px;
}

.team-card-1 .team-social {
    width: 280px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 88px;
    z-index: 2;
    margin: 0 auto;
    padding: 12px;
    overflow: hidden;
}

.team-card-1 .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    border-radius: 8px;
    height: 60px;
    position: relative;
    bottom: 0px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.team-card-1 .team-social a {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 5px;
    border: 1px solid #fff;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition)
}

.team-card-1 .team-social a:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}

.team-card-1:hover .team-social {
    opacity: 1;
    visibility: visible;
}

/* ======================================================
   Team Section Team Card 2
====================================================== */

.team-card-2 {
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.team-card-2 .team-content {
    margin-top: 16px;
}

.team-card-2 .team-content h5 {
    margin-bottom: 0;
}

.team-card-2 .team-img {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.team-card-2 .team-img::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    width: 100%;
    height: 0;
    opacity: 0.5;
    transition: var(--transition);
}

.team-card-2:hover .team-img::after {
    height: 100%;
    transition: var(--transition);
}

.team-card-2 .team-img img {
    transition: var(--transition);
}

.team-card-2:hover .team-img img {
    transform: scale(1.1) rotate(-4deg);
    transition: var(--transition);
}

.team-card-2 .team-social {
    width: 48px;
    position: absolute;
    left: auto;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    overflow: hidden;
}

.team-card-2 .social-icons,
.team-card-2 .social-icons ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 10px;
    position: relative;
    transition: var(--transition);
}

.team-card-2 .social-icons ul {
    position: relative;
    right: -60px;
}

.team-card-2 .social-icons:hover ul {
    right: 0;
}

.team-card-2 .team-social .social-icons .icon_share {
    background: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 0.375rem;
    color: var(--text-white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.team-card-2 .team-social .social-icons .icon_share i {
    font-size: 24px;
    transition: var(--transition);
}

.team-card-2 .team-social a {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.team-card-2 .team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ======================================================
   Team Section Team Card 3
====================================================== */

.team-card-3 {
    overflow: hidden;
    height: 100%;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(17, 24, 39, .09);
    transition: var(--transition);
}

.team-card-3:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05) !important;
    transform: translateY(-.25rem);
}

.team-card-3 .team-img {
    transition: var(--transition);
}

.team-card-3:hover .team-img {
    filter: grayscale(1);
}

.team-card-3 .team-content {
    position: absolute;
    left: 0;
    bottom: -96px;
    width: 100%;
    padding: 16px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    background-color: var(--bg-white);
    transition: var(--transition);
}

.team-card-3:hover .team-content {
    bottom: 0;
}

.team-card-3 .team-content h4 {
    margin-bottom: 0;
}

/* ======================================================
   Team Details
====================================================== */

.team-details h4 {
    position: relative;
    padding-bottom: 10px;
}

.team-details h4::after {
    content: '';
    width: 40px;
    border-bottom: 3px solid var(--primary);
    border-radius: 6px;
    position: absolute;
    bottom: 3px;
    left: 0;
}

/* ======================================================
   Departments
====================================================== */

.departments-section .department-card-2 .badge,
.departments-section .department-card .badge {
    font-weight: 400;
}

.departments-section .department-card-2 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 24px;
    height: 100%;
}

.departments-section .department-card-2::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: var(--transition);
    background: var(--primary);
}

.departments-section .department-card-2:hover::after {
    height: 100%;
    transition: var(--transition);
}

.departments-section .department-card-2 .icon-box {
    background: #ECEFFD;
    border: none;
    color: var(--primary);
}

.departments-section .department-card-2.section-card:hover .icon-box {
    color: var(--primary);
    box-shadow: none;
}

.departments-section .department-card-2 h4,
.departments-section .department-card-2 p,
.stats-section h4,
.stats-section p,
.stats-section span {
    transition: var(--transition);
}

.departments-section .department-card-2:hover h4,
.departments-section .department-card-2:hover p {
    color: var(--text-white);
}

.departments-section .department-card-3 {
    background-color: var(--primary);
}

.departments-section .department-card-3:hover {
    background-color: var(--secondary);
}

.departments-section .department-card-3 .icon-box {
    background: var(--primary-light);
    border: none;
    color: var(--primary);
}

.departments-section .department-card-3 h4,
.departments-section .department-card-3 p {
    color: var(--text-white);
}

.departments-section .department-card-3 .badge {
    background-color: var(--primary-light);
}

/* ======================================================
   Team Gallery
====================================================== */

.gallery-section .spotlight-group .gallery-item,
.office-gallery .spotlight-group .gallery-item,
.portfolio-gallery .spotlight-group .gallery-item,
.gallery-section .spotlight-group .gallery-item .spotlight,
.office-gallery .spotlight-group .gallery-item .spotlight,
.portfolio-gallery .spotlight-group .gallery-item .spotlight {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    transition: var(--transition);
}

.gallery-section .spotlight-group .gallery-item .spotlight i,
.office-gallery .spotlight-group .gallery-item .spotlight i,
.portfolio-gallery .spotlight-group .gallery-item .spotlight i {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--text-white);
    opacity: 0;
}

.gallery-section .spotlight-group .gallery-item .spotlight:hover i,
.office-gallery .spotlight-group .gallery-item .spotlight:hover i,
.portfolio-gallery .spotlight-group .gallery-item .spotlight:hover i {
    opacity: 1;
}

.gallery-section .spotlight-group .gallery-item:hover,
.office-gallery .spotlight-group .gallery-item:hover,
.portfolio-gallery .spotlight-group .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-main);
}

.gallery-section .spotlight-group .gallery-item .spotlight::before,
.office-gallery .spotlight-group .gallery-item .spotlight::before,
.portfolio-gallery .spotlight-group .gallery-item .spotlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.gallery-section .spotlight-group .gallery-item .spotlight:hover::before,
.office-gallery .spotlight-group .gallery-item .spotlight:hover::before,
.portfolio-gallery .spotlight-group .gallery-item .spotlight:hover::before {
    opacity: 1;
}

.gallery-section .spotlight-group .gallery-image img,
.office-gallery .spotlight-group .gallery-image img,
.portfolio-gallery .spotlight-group .gallery-image img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.gallery-section .spotlight-group .gallery-image:hover img,
.office-gallery .spotlight-group .gallery-image:hover img,
.portfolio-gallery .spotlight-group .gallery-image:hover img {
    transform: scale(1.1);
}

.spl-zoom-in,
.spl-zoom-out,
.spl-autofit,
.spl-fullscreen {
    display: none !important;
}

/* ======================================================
   Team Culture
====================================================== */

.culture-section .culture-card-style-2 .icon-box {
    background: var(--primary);
    border-color: var(--primary);
}

.culture-section .culture-card-style-2.section-card:hover .icon-box {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: none;
    transform: scale(1) rotateY(-180deg);
}

.culture-section .culture-card.culture-card-style-3 {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 24px;
}

.culture-section .culture-card.culture-card-style-3:hover {
    background: var(--secondary);
}

.culture-section .culture-card.culture-card-style-3 .icon-box {
    background: var(--primary-light);
    border: none;
    color: var(--primary);
}

.culture-section .culture-card.culture-card-style-3 h5,
.culture-section .culture-card.culture-card-style-3 p {
    color: var(--text-white);
}

.culture-section .culture-card.culture-card-style-3:hover h5,
.culture-section .culture-card.culture-card-style-3:hover p {
    color: var(--text-white);
}

.culture-section .d-grid,
.perks-and-benefits-section .d-grid {
    display: grid;
    grid-template-columns: auto;
    column-gap: 24px;
    row-gap: 24px;
}

.culture-section.culture-section-style-2 .d-grid {
    row-gap: 24px;
}

.culture-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.culture-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.culture-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.culture-gallery-item:hover img {
    transform: scale(1.1);
}

.culture-gallery-item:first-child {
    grid-row: span 2;
    height: 100%;
}

/* ======================================================
   Gallery Section
====================================================== */

.blog-filters {
    margin-bottom: 24px;
}

.blog-filters.section-card {
    transition: none;
}

.blog-filters.section-card:hover {
    background-color: var(--bg-card);
    border-color: var(--border-light);
    box-shadow: none;
}

.filter-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.filter-title:after {
    content: '';
    width: 40px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image: var(--primary-gradient) 1;
    border-radius: 6px;
    position: absolute;
    bottom: 3px;
    left: 0;
}

.category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.category-list li:not(:last-child) {
    margin-bottom: 12px;
}

.category-list a {
    background-color: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    transition: var(--transition)
}

.category-list a:hover {
    background-color: transparent;
    color: var(--primary);
    padding-left: 5px;
}

.category-list .badge {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

/* ======================================================
   Search Widget
====================================================== */

.search-widget {
    position: relative;
}

.search-widget input {
    width: 100%;
    height: 56px;
    padding: 15px;
    padding-right: 60px;
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    transition: var(--transition)
}

.search-widget input:focus {
    outline: none;
    background-color: transparent;
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: none;
}

.search-widget button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 50px;
    height: 50px;
    border-radius: 0.375rem;
    background: transparent;
    color: var(--text-main);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.search-widget button:hover {
    background-color: transparent;
}

/* ======================================================
   Blog Cards
====================================================== */

.category-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1;
}

.category-badge a {
    display: inline-block;
    background: var(--primary);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    backdrop-filter: blur(15px) saturate(180%);
    padding: 10px;
    line-height: 0.85;
    border-radius: 0.375rem;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-white);
}

.blog-card:hover .category-badge a {
    background: var(--secondary);
}

/* ======================================================
   Subscribe Section
====================================================== */

.subscribe-form {
    display: flex;
    flex-direction: row;
    max-width: 500px;
    height: 56px;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 0.375rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subscribe-form input {
    width: 100%;
    padding: 0 15px;
    border: 0;
    border-radius: 0.375rem;
    color: #212529;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form .btn.section-btn1 {
    flex-shrink: 0;
    padding: 0.5rem 1.5rem;
    margin-top: 0;
}

.subscribe-form .btn.section-btn1:hover {
    transform: none;
}

/* ======================================================
   Pagination
====================================================== */

.pagination {
    margin-top: 40px;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-utility-box);
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    color: var(--text-main);
    font-size: 18px;
    box-shadow: none;
    transition: var(--transition)
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: max-content;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.pagination .page-item:not(.active) .page-link:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ======================================================
   Blog
====================================================== */

.category-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

blockquote.quote {
    background: var(--bg-white);
    border: 1px solid var(--primary);
    border-left-width: 5px;
    padding: 30px;
    margin: 40px 0;
    border-radius: 16px;
}

blockquote.quote p {
    font-size: 1.2rem;
}

blockquote.quote footer {
    margin-top: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.content-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 0.375rem;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.6;
}

.tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.author-box .author-avatar {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: 0 20px 0 0;
    border: 4px solid var(--border-light);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.author-social {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
    transition: var(--transition);
    gap: 8px;
    display: flex;
}

.author-social a {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    background: var(--bg-white);
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.popular-posts .post {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.popular-posts .post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post:hover .post-thumb img {
    transform: scale(1.1);
}

.post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.post-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-main);
}

.comments-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
    margin-top: 50px;
}

.comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.comment-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.recent-post {
    display: flex;
    align-items: center;
}

.recent-post:not(:last-child) {
    margin-bottom: 20px;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 16px;
}

.recent-post-content .date {
    font-size: 14px;
    color: var(--text-main);
}

/* ======================================================
   Job Openings
====================================================== */

.job-card .btn.section-btn1 {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    position: relative;
    z-index: 1;
    height: 44px;
    padding: 0.75rem 1.5rem;
}

.job-badge {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text-white);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 6px;
    display: inline-block;
}

.job-meta {
    display: flex;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-size: 14px;
}

.job-meta-item i {
    margin-right: 8px;
    color: var(--primary);
}

/* ======================================================
   Privacy Content Section
====================================================== */

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.info-box {
    background: var(--bg-white);
    border: 1px solid var(--primary);
    border-left-width: 4px;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.privacy-terms-content ul {
    list-style-type: none;
    padding-left: 0px;
}

.privacy-terms-content ul li {
    position: relative;
}

.privacy-terms-content ul li:not(:last-child) {
    margin-bottom: 5px;
}

/* ======================================================
   Terms Content Section
====================================================== */

.legal-table {
    width: 650px;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.legal-table th {
    background-color: var(--primary-light);
    font-weight: 600;
}

.legal-table tr:hover {
    background-color: var(--primary-light);
}

/* ======================================================
   Work Process Section
====================================================== */

.work-process .process-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 24px;
}

.work-process .process-number {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: var(--transition);
}

.work-process .process-card:hover .process-number {
    color: var(--primary-light);
    transform: scale(1.1);
}

.work-process .work-image img {
    width: 100%;
    object-fit: cover;
}

.work-process .process-card {
    padding: 16px 24px;
}

.work-process .process-card:hover {
    background-color: var(--primary);
}

.work-process .process-card:hover h5,
.work-process .process-card:hover p,
.work-process .process-card:hover .process-icon {
    color: var(--text-white);
}

.work-process .process-card:not(:last-child) {
    margin-bottom: 15px;
}

.work-process .process-content {
    position: relative;
    z-index: 1;
}

.work-process .process-content h4 {
    margin-bottom: 5px;
}

.work-process .process-content p {
    margin-bottom: 0;
}

.work-process .icon-box {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.work-process .process-card:hover .icon-box {
    transform: rotateY(180deg);
    box-shadow: 0 5px 15px var(--primary-light);
}

.work-process .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

/* ======================================================
   Stats and Results Section
====================================================== */

.stat-box,
.result-item {
    text-align: center;
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-box h4 {
    margin-bottom: 0;
}

.stat-box-style-2:hover {
    background-color: var(--primary);
}

.stat-box-style-3 {
    background: var(--primary-light);
}

.stat-box-style-3:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.stat-box-style-3:hover {
    background-color: var(--primary);
}

.stat-box-style-2:hover .stat-number,
.stat-box-style-2:hover span,
.stat-box-style-2:hover h4,
.stat-box-style-2:hover p,
.stat-box-style-3:hover .stat-number,
.stat-box-style-3:hover span,
.stat-box-style-3:hover h4,
.stat-box-style-3:hover p {
    color: var(--text-white);
}

.result-item {
    background-color: var(--primary-light);
    border: 1px solid var(--primary-light);
}

.result-item:hover,
.stat-box:hover {
    border-color: var(--primary) !important;
}

.stat-number,
.result-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    color: var(--primary);
    transition: var(--transition);
}

.stat-box span,
.result-item span {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1;
}

/* ======================================================
   Portfolio
====================================================== */

.portfolio-item-img {
    position: relative;
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* ======================================================
   Portfolio Detail Section
====================================================== */

.portfolio-content.section-card:hover {
    background-color: var(--bg-card);
    border-color: var(--border-light);
    box-shadow: none;
}

.portfolio-content h2 {
    margin-bottom: 20px;
}

.portfolio-detail-section h4 {
    margin-bottom: 20px;
}

.portfolio-challenge-solution {
    margin-top: 40px;
}

.portfolio-challenge-solution p {
    margin-bottom: 10px;
}

.portfolio-challenge-solution h5 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.portfolio-challenge-solution h5 i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 24px;
}

/* ======================================================
   Results Section
====================================================== */

.portfolio-results {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-results h4 {
    color: var(--text-main);
    text-align: left;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.result-text {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
}

/* ======================================================
   Gallery Section
====================================================== */

.portfolio-gallery {
    margin-top: 40px;
}

.portfolio-gallery .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ======================================================
   Testimonial Section
====================================================== */

.portfolio-testimonial {
    margin-top: 40px;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-author .author-avatar {
    width: 100%;
    height: 302px;
    border: 5px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    margin-right: 0;
    flex-shrink: 0;
}

.author-info h5 {
    margin-bottom: 0;
}

.author-info p {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 0;
}

.testimonial-rating i {
    color: var(--text-warning);
    font-size: 1.5rem;
    margin-right: 0.15rem;
}

/* ======================================================
   Related Projects
====================================================== */

.related-projects h3 {
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.portfolio-item-content .portfolio-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.portfolio-item-content p {
    margin-bottom: 5px;
}

.portfolio-item-content .portfolio-title,
.portfolio-item-content p {
    margin-bottom: 10px;
}

.portfolio-item-content .portfolio-title a {
    display: inline;
    padding-bottom: 2px;
    background-image: var(--primary-gradient);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: 0px 100%;
    transition: 0.3s, background-size 0.8s;
}

.portfolio-item-content .portfolio-title a:hover {
    background-size: 100% 1px;
}

.related-projects h3:after {
    content: '';
    width: 50px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image: var(--primary-gradient) 1;
    border-radius: 6px;
    position: absolute;
    bottom: 5px;
    left: 0;
}

/* ======================================================
   Team details page
====================================================== */

.card-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.team-social-large {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.team-social-large a {
    width: 44px;
    height: 44px;
    border-radius: 0.375rem;
    background: transparent;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.team-social-large a:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
    color: var(--text-white);
}

.team-details .team-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.progress-section {
    margin-bottom: 30px;
}

.progress-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.progress {
    height: 10px;
    border-radius: 10px;
    background: var(--bg-light);
    overflow: visible;
}

.progress-bar {
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.timeline-items-team,
.timeline-info-team {
    position: relative;
}

.timeline-items-team::before {
    content: '';
    position: absolute;
    left: 5.5px;
    top: 8px;
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-info-team::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item-team {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.timeline-item-team:last-child {
    margin-bottom: 0;
}

.timeline-item-team::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-content {
    border-left-width: 4px;
    border-color: var(--primary);
}

.timeline-date {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.info-team {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 1.275rem;
    corner-shape: squircle;
    background: var(--primary-gradient);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0;
}

/* ======================================================
   Call to Action
====================================================== */

.call-to-action {
    background: var(--primary-gradient);
}

.call-to-action .figure {
    margin-top: -76px;
    text-align: center;
    display: block;
}

/* ======================================================
   FAQs Page
====================================================== */

.faq-searchbar {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-searchbar .form-control {
    padding: 15px 20px;
    border-radius: 0.375rem;
    border: 1px solid var(--primary-light);
    background: var(--bg-white);
    color: var(--text-main);
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding-right: 60px;
}

.faq-searchbar .form-control:focus {
    border-color: var(--primary);
}

.faq-searchbar button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    height: 50px;
    border-radius: 0.375rem;
    background: var(--primary);
    color: var(--text-white);
    font-size: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-searchbar button:hover {
    background: var(--secondary);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-category {
    padding: 10px 25px;
    background: var(--bg-white);
    border: 1px solid var(--primary-light);
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.faq-category.active,
.faq-category:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ======================================================
   Pricing Page
====================================================== */

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.billing-toggle span {
    font-weight: 500;
    color: var(--text-main);
}

.billing-toggle span.month,
.billing-toggle span.year {
    opacity: 0.5;
}

.billing-toggle span.month.active {
    opacity: 1;
}

.billing-toggle span.year.active {
    opacity: 1;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-gray);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--bg-white);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--bg-gray);
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.billing-toggle .save-badge {
    background: var(--primary);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-card.featured {
    background: var(--primary-light);
    border-color: var(--primary);
}

.pricing-card.featured:hover {
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    display: block;
    background-color: var(--primary);
    color: var(--text-white);
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-description {
    margin-bottom: 20px;
}

.pricing-price {
    margin-top: 20px;
}

.price-amount {
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 5px;
}

.price-period {
    font-size: 16px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-list li {
    display: flex;
    align-items: center;
}

.pricing-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.pricing-list li.disabled,
.pricing-list li.disabled i {
    color: var(--text-muted);
}

.comparison-section {
    background: var(--bg-section);
}

.feature-heading {
    font-weight: 500;
    color: var(--text-main);
}

.feature-column {
    min-width: 200px;
}

.table {
    transition: background-color .15s ease, color .15s ease;
}

.comparison-section .table-responsive {
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.text-primary {
    color: var(--primary) !important;
}

.comparison-section .table>:not(caption)>*>* {
    vertical-align: middle;
    padding: 16px 24px;
}

.comparison-section .table tr th {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-main);
}

.comparison-section .table tr td {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-main);
}

.comparison-section [class^="ri-"],
.comparison-section [class*=" ri-"] {
    font-size: 20px;
}

.comparison-section .table-light {
    --bs-table-bg: var(--bg-white);
    --bs-table-border-color: var(--border-light);
    --bs-table-striped-bg: var(--primary-light);
}

.comparison-section .table-dark {
    --bs-table-bg: var(--bg-white);
    --bs-table-border-color: var(--border-light);
    --bs-table-striped-bg: var(--primary-light);
}

/* ======================================================
   Career Details Page
====================================================== */

.job-content.section-card:hover,
.job-sidebar-card.section-card:hover {
    background-color: var(--bg-card);
    border-color: var(--border-light);
    box-shadow: none;
}

.job-sidebar-card {
    margin-bottom: 24px;
}

.job-content .btn.section-btn3 {
    height: 44px;
    padding: 0.75rem 1.5rem;
}

.job-sidebar {
    position: sticky;
    top: 100px;
}

.job-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.job-info-list li:last-child {
    border-bottom: none;
}

.job-info-list .label {
    font-weight: 500;
    color: var(--text-main);
}

.job-info-list .value {
    color: var(--primary);
    font-weight: 500;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 0.375rem;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h4,
.job-sidebar-card h4,
#application-form h4 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 10px;
}

.content-section h4:after,
.job-sidebar-card h4::after,
#application-form h4::after {
    content: '';
    width: 40px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-image: var(--primary-gradient) 1;
    border-radius: 6px;
    position: absolute;
    bottom: 3px;
    left: 0;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.salary-range {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin: 10px 0;
}

.salary-note {
    font-size: 14px;
    margin-bottom: 0;
}

.application-cta {
    text-align: center;
    padding: 40px;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: 20px;
    margin: 50px 0;
}

.application-cta h3 {
    color: var(--text-white);
    margin-bottom: 20px;
}

/* ======================================================
   404 Page
====================================================== */

.section-page-heading.error-hero {
    background: transparent;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-container {
    position: relative;
    z-index: 2;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.error-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 50px;
}

/* ======================================================
   Office Culture Section
====================================================== */

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ======================================================
   Scroll to Top Progress
====================================================== */

.scroll-top-wrap {
    position: fixed;
    z-index: 60;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    display: grid;
    place-items: center;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.scroll-top-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-wrap svg.progress-rounded rect {
    fill: none;
    stroke: #7e7e7e;
    stroke-width: 2;
    stroke-linecap: round;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.scroll-top-wrap::after {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea76";
    line-height: 48px;
    font-size: 20px;
    color: #7e7e7e;
    text-align: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 200ms linear;
}

/* ======================================================
   Services Section
====================================================== */

.service-card {
    padding: 24px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-card:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-main);
}

.service-card.featured {
    background-color: var(--primary-light);
    border-color: var(--border-light);
}

.service-card.featured:hover {
    border-color: var(--primary);
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    display: flex;
    align-items: center;
}

.service-features li i {
    margin-right: 10px;
    font-size: 18px;
}

/* ======================================================
   Process Section
====================================================== */

.service-process .process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-process .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 50%;
    width: 3px;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.service-process .process-step {
    display: flex;
    position: relative;
}

.service-process .process-step:not(:last-child) {
    margin-bottom: 60px;
}

.service-process .process-step:nth-child(odd) {
    flex-direction: row;
}

.service-process .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.service-process .process-content:hover {
    border-color: var(--primary);
}

.service-process .process-step:nth-child(odd) .process-content {
    margin-right: 40px;
}

.service-process .process-step:nth-child(even) .process-content {
    margin-left: 40px;
}

.service-process .process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.service-process .process-content h4 {
    margin-bottom: 15px;
}

.service-process .process-content p {
    margin-bottom: 0;
}

.circular-skills {
    margin-bottom: 24px;
}

.circular-skill {
    text-align: center;
    padding: 24px;
}

.circular-progress {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0%, var(--border-light) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    transition: var(--transition);
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-white);
}

.progress-value {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 40px;
    color: var(--text-main);
}

.circular-skill h5 {
    margin-bottom: 0;
    font-size: 20px;
}

/* ======================================================
   Why Choose Us Section
====================================================== */

.why-choose-us .feature-card {
    background-color: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: 16px;
    height: 100%;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}

.why-choose-us .feature-card .feature-card-image {
    position: relative;
    z-index: 1;
}

.feature-card-image,
.feature-card-text,
.work-image {
    position: relative;
    height: 100%;
}

.feature-card-image img,
.work-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.why-choose-us .feature-card h3 {
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.feature-number {
    min-width: 58px;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-align: right;
}

.feature-content p {
    margin-bottom: 0;
}

/* ======================================================
   Achievements Section
====================================================== */

.achievement-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.achievement-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
}

.achievement-content span {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 2px;
}

.achievement-content p {
    margin-top: 10px;
    margin-bottom: 0;
}

.achievement-badge {
    margin-top: 10px;
    text-align: center;
}

.achievement-badge span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary);
    color: var(--text-white);
}

.achievement-stats {
    margin-top: 60px;
}

.achievement-stats .stat-item {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.achievement-stats .stat-progress {
    flex-shrink: 0;
}

.achievement-stats .progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0%, var(--border-light) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.achievement-stats .progress-circle::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-card);
    z-index: 1;
}

.achievement-stats .stat-info h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.achievement-stats .stat-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.achievement-stats .stat-progress .progress-value {
    font-size: 24px;
    position: relative;
    z-index: 2;
}

/* ======================================================
   Overview Section
====================================================== */

.overview .service-card.featured:hover {
    border-color: var(--primary);
}

.overview .section-title {
    margin-bottom: 0;
    text-align: left;
}

.our-workflow .process-timeline {
    position: relative;
}

.our-workflow .process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.our-workflow .timeline-item {
    position: relative;
    margin-bottom: 4rem;
    transition: var(--transition);
}

.our-workflow .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.our-workflow .timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.our-workflow .timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--bg-white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

.our-workflow .timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.our-workflow .timeline-content {
    width: 45%;
}

.our-workflow .timeline-content:hover {
    border-color: var(--primary);
}

.our-workflow .timeline-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.25rem 0.75rem;
    border-radius: 3.125rem;
    margin-bottom: 1rem;
}

.our-workflow .timeline-content p {
    margin-bottom: 0;
}

/* ======================================================
   Service Details
====================================================== */

.why-join-section .feature-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(17, 24, 39, .09);
    border: 1px solid var(--border-light);
    z-index: 1;
}

.dashboard-preview img {
    border-radius: 16px;
}

.benefits-section .benefit-card {
    height: auto;
}

.benefits-section img {
    border-radius: 16px;
}

.process-section .process-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #c3ccf3;
}

.benefits-section .section-title {
    margin-bottom: 0;
    text-align: left;
}

.benefits-section .benefit-card:not(:last-child) {
    margin-bottom: 15px;
}

.offer-section .service-card .featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    display: block;
    background-color: var(--primary);
    color: var(--text-white);
}

.offer-section .service-card .service-icon {
    margin-bottom: 24px;
}

/* ======================================================
   Footer
====================================================== */

.footer {
    padding: 80px 0 0;
}

.footer .footer-logo {
    display: inline-block;
}

.footer-logo img {
    content: var(--logo-footer);
}

.footer .footer-title {
    margin-bottom: 16px;
}

.footer .footer-links li {
    margin-bottom: 12px;
}

.footer .footer-links a {
    position: relative;
}

.footer .footer-links a,
.footer .copyright-links a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.footer .footer-links a:hover,
.footer .footer-links a:active,
.footer .footer-links a:focus,
.footer .copyright-links a:hover,
.footer .copyright-links a:active,
.footer .copyright-links a:focus {
    color: var(--primary);
}

.footer .footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--primary);
    transition: var(--transition);
}

.footer .footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter {
    display: flex;
    flex-direction: row;
    position: relative;
    height: 56px;
}

.footer-newsletter .form-control {
    flex: 1;
    border-radius: 0.375rem;
    padding: 0 80px 0 15px;
    background-color: var(--bg-utility-box);
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.footer-newsletter input::placeholder {
    color: var(--text-main);
    opacity: 1;
}

.footer-newsletter .form-control::placeholder {
    color: var(--text-main);
}

.footer-newsletter .form-control::placeholder {
    color: var(--text-main);
}

.footer-newsletter .form-control:-ms-input-placeholder {
    color: var(--text-main);
}

/* IE */
.footer-newsletter .form-control::-ms-input-placeholder {
    color: var(--text-main);
}

/* Edge */
.footer-newsletter .form-control:focus::placeholder {
    color: var(--text-main);
}

.footer-newsletter .form-control:focus {
    border-color: var(--primary);
}

.footer .btn.section-btn1 {
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    right: 5px;
    font-size: 18px;
    padding: 1rem 1.25rem;
}

.footer .btn.section-btn1:hover {
    transform: none;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    background-color: var(--bg-utility-box);
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.footer .copyright {
    margin-top: 60px;
    padding-bottom: 20px;
}

.footer .copyright-divider {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

/* ======================================================
   Responsive adjustments
====================================================== */

@media (max-width: 480px) {
    .error-number {
        font-size: 60px;
    }

    .error-animation {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .testimonials .testimonial-card .fa-star {
        font-size: 12px;
    }

    .filter-buttons {
        gap: 5px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .navbar-collapse {
        height: 300px;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .work-process .process-card {
        padding: 20px 15px;
    }

    .work-process .process-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-page-heading h1 {
        font-size: 32px;
    }

    .stat-number,
    .stat-box span {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input {
        border-radius: 0.375rem;
        margin-bottom: 15px;
    }

    .culture-gallery-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .blog .article-content h4 {
        font-size: 20px;
    }

    blockquote.quote,
    .content-highlight {
        padding: 24px;
    }

    blockquote.quote p {
        font-size: 18px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .comment-replies {
        margin-left: 20px;
        padding-left: 20px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-actions {
        margin-top: 10px;
    }

    .testimonial-author .author-avatar {
        width: 150px;
        height: 150px;
    }

    .floating-card {
        display: none;
    }

    .section-page-heading .hero-content .hero-stats .stat-item .stat-number {
        font-size: 2rem;
    }

    .achievement-card {
        margin-bottom: 30px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-progress {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .achievements::before,
    .achievements::after {
        display: none;
    }

    .circular-skill {
        margin-bottom: 20px;
    }

    .work-process .process-card {
        padding: 25px 20px;
    }

    .work-process .process-number {
        font-size: 4rem;
        right: 15px;
        top: -10px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .blog-meta {
        flex-wrap: wrap;
    }

    .portfolio-hero {
        padding: 120px 0 80px;
    }

    .portfolio-hero h1 {
        font-size: 2.3rem;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .result-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-column {
        min-width: 150px;
    }

    .pricing-hero {
        padding: 100px 0 60px;
    }

    .comparison-section,
    .faq-section {
        padding: 60px 0;
    }

    .price-amount {
        font-size: 36px;
    }

    .job-content {
        padding: 25px;
        margin-top: -30px;
    }

    .job-highlight {
        width: 100%;
        justify-content: center;
    }

    .application-cta {
        padding: 30px 20px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-description {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-img {
        margin-top: 50px;
    }

    .culture-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-gallery-item:first-child {
        grid-row: span 1;
        height: 250px;
    }

    .blog .article-content .section-title h2 {
        font-size: 1.5rem;
    }

    .blog-detail-title {
        font-size: 2.3rem;
    }

    .author-box {
        flex-direction: column;
        align-items: start;
    }

    .author-avatar {
        margin-right: 0;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .content-footer {
        flex-direction: column;
    }

    .social-share {
        margin-top: 20px;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-process .process-timeline::before {
        left: 30px;
    }

    .service-process .process-step {
        flex-direction: row !important;
    }

    .service-process .process-step:nth-child(odd) .process-content,
    .service-process .process-step:nth-child(even) .process-content {
        margin-left: 80px;
        margin-right: 0;
    }

    .service-process .process-number {
        left: 0px;
        transform: translateY(0%);
    }

    .achievement-card {
        padding: 30px 20px;
    }

    .achievement-content h3 {
        font-size: 36px;
    }

    .achievement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .achievement-icon i {
        font-size: 30px;
    }

    .our-workflow .timeline-item:nth-child(odd) .timeline-content,
    .our-workflow .timeline-item:nth-child(even) .timeline-content {
        width: 90%;
        margin-left: 10%;
        text-align: left;
    }

    .our-workflow .timeline-dot {
        left: 0;
        transform: translateX(0);
    }

    .our-workflow .timeline-item:hover .timeline-dot {
        transform: translateX(0) scale(1.3);
    }

    .our-workflow .process-timeline::before {
        left: 12px;
    }

    .work-process {
        padding: 80px 0;
    }

    .work-process .process-card {
        margin-bottom: 30px;
    }

    .work-process .process-number {
        font-size: 4.5rem;
    }
}

@media (max-width: 1199px) {
    .work-process .process-card {
        padding: 30px 20px;
    }

    .work-process .process-number {
        font-size: 5rem;
    }
}

@media (min-width: 576px) {
    .portfolio-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .timeline .left {
        left: 0%;
    }

    .timeline .right {
        left: 50%;
    }

    .timeline .left:after {
        right: -10px;
        left: auto;
    }

    .timeline .right:after {
        left: -10px;
    }

    .timeline .timeline-item {
        width: 50%;
    }

    .timeline .timeline-item:not(:last-child) {
        margin-bottom: 0;
    }

    .timeline .timeline-item {
        padding: 10px 40px;
    }

    .timeline:after {
        left: 50%;
        margin-left: -2px;
    }

    .culture-section .d-grid,
    .perks-and-benefits-section .d-grid {
        grid-template-columns: auto auto;
    }

    .culture-section.culture-section-style-2 .d-grid {
        grid-template-columns: auto auto auto;
    }

    .result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .nav-item {
        position: relative;
        padding: 31px 30px;
        border: 0;
    }

    .navbar-expand-xl .navbar-nav {
        align-items: center;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding: 0;
        margin: 0;
        line-height: 1;
    }

    .navbar .dropdown .dropdown-menu.services-menu .row>.col-12>ul {
        border-bottom: 1px solid var(--border-light);
    }

    .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 10px 14px;
        border-top: 1px solid var(--border-light);
        font-size: 16px;
        color: var(--text-main);
        text-transform: capitalize;
    }

    .navbar .dropdown .dropdown-menu {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }

    .nav-item .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        top: 50%;
        left: 0;
        margin-top: 12px;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-image: var(--primary-gradient) 1;
        transition: var(--transition);
    }

    .nav-item:hover .nav-link::before,
    .nav-item.active .nav-link::before {
        width: 100%;
    }

    .nav-item.active .nav-link {
        color: var(--primary);
    }

    .navbar .dropdown>.dropdown-toggle::after {
        right: -15px;
        width: 10px;
        height: 20px;
        font-size: 12px;
        line-height: 24px;
        margin-top: -2px;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        transition: var(--transition);
    }

    .legal-table {
        width: 100%;
    }

    .team-card-1 .social-icons {
        bottom: -80px;
    }

    .team-card-1:hover .social-icons {
        bottom: 0;
    }

    .author-social {
        opacity: 0;
    }

    .author-box:hover .author-social {
        opacity: 1;
    }

    .team-details .col_sticky {
        position: sticky;
        top: 70px;
    }

    .result-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}