/* ============================================
   金博教育官网 - 整合样式表
   主色调：深蓝 #1a3a5c + 金色 #d4a843
   ============================================ */

/* Google Fonts */
/* 国内可用字体镜像，如加载失败自动降级系统字体 */
@import url('https://fonts.loli.net/css2?family=Nunito:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box; }

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --primary-dark: #0f2440;
    --secondary: #d4a843;
    --secondary-light: #e5c06a;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(26, 58, 92, 0.15);
    --shadow-hover: 0 15px 40px rgba(26, 58, 92, 0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 26px;
    font-weight: 400;
    background: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; transition: all 500ms ease; }
a:hover { text-decoration: none; }

input, button, select, textarea { font-family: 'Quicksand', sans-serif; }
button:focus, input:focus, textarea:focus { outline: 0; box-shadow: none; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

p { color: var(--text-secondary); margin: 0; }

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

/* Container & Grid */
.large-container { max-width: 1500px; padding: 0 15px; margin: 0 auto; }
.auto-container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.small-container { max-width: 680px; margin: 0 auto; }
.boxed_wrapper { position: relative; margin: 0 auto; overflow: hidden; width: 100%; min-width: 300px; }

/* Bootstrap Grid Compatibility */
.container, .container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.no-gutters { margin-right: 0; margin-left: 0; }
.no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; }
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    position: relative; width: 100%; padding-right: 15px; padding-left: 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
    .col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
    .col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
    .col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Utility Classes */
.centred { text-align: center; }
.pull-left { float: left; }
.pull-right { float: right; }
.clearfix::after { content: ''; display: table; clear: both; }
.sec-pad { padding: 100px 0; }
.sec-pad-2 { padding: 80px 0; }
.mr-0 { margin: 0 !important; }
.offset-lg-1 { margin-left: 8.333333%; }

/* Section Title */
.sec-title { position: relative; display: block; margin-bottom: 50px; }
.sec-title span { display: block; font-size: 16px; font-weight: 600; color: var(--secondary); text-transform: uppercase; margin-bottom: 10px; }
.sec-title h2 { font-size: 38px; line-height: 48px; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
.sec-title p { font-size: 16px; color: var(--text-secondary); }
.sec-title.light h2, .sec-title.light span { color: var(--white); }
.sec-title.centred { text-align: center; }

/* Buttons */
.theme-btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    color: var(--white) !important;
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.3);
    transition: all 500ms ease;
    border: none;
    cursor: pointer;
}
.theme-btn-one:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
    transform: translateY(-2px);
}
.theme-btn-one i { margin-right: 8px; }

/* Preloader */
.preloader {
    position: fixed;
    left: 0; top: 0;
    height: 100%; width: 100%;
    z-index: 999999;
    background: var(--primary);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23d4a843" stroke-width="6" fill="none"><animate attributeName="stroke-dasharray" from="0 251" to="251 0" dur="1.5s" fill="freeze"/></circle></svg>');
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease;
}

/* Header */
.main-header {
    position: relative;
    left: 0; top: 0;
    z-index: 999;
    width: 100%;
    background: var(--white);
    transition: all 500ms ease;
}

.main-header .outer-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo-box { position: relative; padding: 15px 0; }
.main-header .logo-box .logo img { max-width: 160px; height: auto; }

.header-top {
    background: var(--primary);
    padding: 10px 0;
}
.header-top .top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header-top .info-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.header-top .info-list li {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}
.header-top .info-list li i { margin-right: 8px; color: var(--secondary); }
.header-top .social-links {
    display: flex;
    gap: 15px;
}
.header-top .social-links a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}
.header-top .social-links a:hover { background: var(--secondary); }
.sign-in a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}
.sign-in a:hover { background: var(--white); }

/* Navigation */
.main-menu .navigation { margin: 0; display: flex; }
.main-menu .navigation > li {
    position: relative;
    padding: 25px 15px;
    margin: 0 5px;
}
.main-menu .navigation > li > a {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    padding: 5px 10px;
    transition: all 300ms ease;
}
.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current > a { color: var(--secondary); }

.menu-area .mobile-nav-toggler {
    display: none;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
    padding: 15px 0;
}
.menu-area .mobile-nav-toggler .icon-bar {
    display: block;
    height: 3px;
    width: 30px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0; top: 0;
    width: 100%;
    z-index: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(26, 58, 92, 0.1);
    transition: all 500ms ease;
}
.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    animation: fadeInDown 500ms ease;
}
.sticky-header .main-menu .navigation > li { padding: 18px 15px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    right: 0; top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}
.mobile-menu-visible { overflow: hidden; }
.mobile-menu-visible .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0; top: 0;
    width: 100%; height: 100%;
    background: var(--primary);
    z-index: 1;
    transform: translateX(101%);
    transition: all 900ms ease;
}
.mobile-menu-visible .mobile-menu .menu-backdrop { opacity: .7; visibility: visible; transform: translateX(0); }
.mobile-menu .menu-box {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--primary);
    padding: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateX(101%);
    transition: all 700ms ease;
}
.mobile-menu-visible .mobile-menu .menu-box { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu .nav-logo {
    padding: 40px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .nav-logo img { max-width: 150px; filter: brightness(0) invert(1); }
.mobile-menu .close-btn {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .navigation li a {
    display: block;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

/* Banner Section */
.banner-section {
    position: relative;
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
}
.banner-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,36,64,0.85), rgba(26,58,92,0.75));
}
.banner-section .content-box { position: relative; z-index: 1; }
.banner-section .content-box h1 {
    font-size: 48px;
    line-height: 58px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 15px;
}
.banner-section .content-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.banner-section .form-inner {
    position: relative;
    display: block;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.banner-section .input-inner { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.banner-section .input-inner .form-group { flex: 1; min-width: 200px; position: relative; }
.banner-section .input-inner .form-group input,
.banner-section .input-inner .form-group select {
    width: 100%;
    height: 48px;
    padding: 10px 15px 10px 45px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    transition: all 300ms ease;
}
.banner-section .input-inner .form-group input:focus,
.banner-section .input-inner .form-group select:focus { border-color: var(--primary); }
.banner-section .input-inner .form-group i {
    position: absolute;
    left: 18px; top: 15px;
    color: var(--secondary);
}
.banner-section .input-inner .btn-box { flex: 0 0 auto; }
.banner-section .input-inner .btn-box button {
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
}
.banner-section .input-inner .btn-box button:hover { background: var(--secondary); }

.radio-select-box { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 20px; }
.radio-select-box li { display: inline-block; }
.radio-select-box label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all 300ms ease;
}
.radio-select-box input[type="radio"] { display: none; }
.radio-select-box input[type="radio"]:checked + label {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* Category Section */
.category-section { position: relative; }
.category-section .inner-content { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.category-block-one {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;
    margin-bottom: 30px;
}
@media (max-width: 992px) { .category-block-one { flex: 0 0 25%; max-width: 25%; } }
@media (max-width: 768px) { .category-block-one { flex: 0 0 33.333%; max-width: 33.333%; } }
@media (max-width: 576px) { .category-block-one { flex: 0 0 50%; max-width: 50%; } }

.category-block-one .inner-box {
    position: relative;
    background: var(--white);
    padding: 30px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 500ms ease;
    overflow: hidden;
}
.category-block-one .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 58, 92, 0.15);
}
.category-block-one .inner-box .icon-box {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 300ms ease;
}
.category-block-one .inner-box:hover .icon-box { color: var(--secondary); }
.category-block-one .inner-box h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.category-block-one .inner-box span {
    display: inline-block;
    width: 36px; height: 36px;
    line-height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}
.category-section .more-btn { text-align: center; margin-top: 30px; }

/* Feature Section */
.feature-section { position: relative; background: var(--bg-light); }
.feature-section .sec-title { text-align: center; }
.pattern-layer {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.feature-block-one { margin-bottom: 30px; }
.feature-block-one .inner-box {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 500ms ease;
}
.feature-block-one .inner-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-block-one .inner-box .image-box { position: relative; overflow: hidden; }
.feature-block-one .inner-box .image-box .image img {
    width: 100%;
    transition: all 500ms ease;
}
.feature-block-one .inner-box:hover .image-box .image img { transform: scale(1.05); }
.feature-block-one .inner-box .image-box .feature {
    position: absolute;
    top: 15px; right: -30px;
    padding: 5px 40px;
    font-size: 12px;
    color: var(--white);
    background: var(--secondary);
    transform: rotate(45deg);
    font-weight: 600;
}
.feature-block-one .inner-box .image-box .icon {
    position: absolute;
    bottom: 15px; left: 15px;
    width: 45px; height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}
.feature-block-one .inner-box .lower-content { padding: 20px; }
.feature-block-one .inner-box .author-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.feature-block-one .inner-box .author-box img {
    width: 40px; height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.feature-block-one .inner-box .author-box h6 { font-size: 14px; color: var(--primary); }
.feature-block-one .inner-box .author-box h6 i { color: var(--secondary); margin-left: 5px; }
.feature-block-one .inner-box .author-box span { font-size: 12px; color: var(--text-light); }
.feature-block-one .inner-box .category {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.feature-block-one .inner-box .category i { color: var(--secondary); margin-right: 8px; }
.feature-block-one .inner-box .category p { font-size: 13px; color: var(--text-secondary); }
.feature-block-one .inner-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 26px;
}
.feature-block-one .inner-box h3 a { color: var(--primary); }
.feature-block-one .inner-box h3 a:hover { color: var(--secondary); }
.feature-block-one .inner-box .rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}
.feature-block-one .inner-box .rating li { color: var(--secondary); font-size: 12px; }
.feature-block-one .inner-box .rating li:last-child { color: var(--text-light); margin-left: 5px; }
.feature-block-one .inner-box .info { margin-bottom: 15px; }
.feature-block-one .inner-box .info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}
.feature-block-one .inner-box .info li i { color: var(--secondary); }
.feature-block-one .inner-box .lower-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.feature-block-one .inner-box .lower-box h5 { font-size: 13px; color: var(--text-secondary); }
.feature-block-one .inner-box .react-box { display: flex; gap: 10px; }
.feature-block-one .inner-box .react-box li a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 300ms ease;
}
.feature-block-one .inner-box .react-box li a:hover { background: var(--primary); color: var(--white); }

/* Testimonial Section */
.testimonial-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 0;
}
.testimonial-section .sec-title.light h2,
.testimonial-section .sec-title.light span { color: var(--white); }
.testimonial-section .sec-title span { color: var(--secondary); }

.testimonial-content { padding: 30px; }
.testimonial-content .text p {
    font-size: 17px;
    line-height: 28px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-content .author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-content .author-box img {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
}
.testimonial-content .author-box h3 { color: var(--white); font-size: 18px; margin-bottom: 5px; }
.testimonial-content .author-box span { color: var(--secondary); font-size: 14px; }

/* Pricing Section */
.pricing-section { background: var(--bg-light); }
.pricing-block { margin-bottom: 30px; }
.pricing-block-one .pricing-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 500ms ease;
}
.pricing-block-one .pricing-table:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.pricing-block-one.active .pricing-table { border: 2px solid var(--secondary); }
.pricing-block-one .teble-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
}
.pricing-block-one.active .teble-header { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
.pricing-block-one .teble-header p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 10px; }
.pricing-block-one .teble-header h2 { color: var(--white); font-size: 28px; font-weight: 800; }
.pricing-block-one .teble-header h2 span { font-size: 16px; font-weight: 400; }
.pricing-block-one .table-content { padding: 30px 25px; }
.pricing-block-one .table-content .list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-block-one .table-content .list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
}
.pricing-block-one .table-footer {
    padding: 0 25px 30px;
    text-align: center;
}
.pricing-block-one .table-footer a {
    display: inline-block;
    padding: 12px 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 300ms ease;
}
.pricing-block-one.active .table-footer a { background: var(--secondary); color: var(--primary); }
.pricing-block-one .table-footer a:hover { transform: scale(1.05); }

/* Place Section */
.place-section { background: var(--white); }
.place-block { margin-bottom: 30px; }
.place-block-one .inner-box { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.place-block-one .inner-box img { width: 100%; transition: all 500ms ease; }
.place-block-one .inner-box:hover img { transform: scale(1.05); }
.place-block-one .inner-box .lower-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(15,36,64,0.95));
}
.place-block-one .inner-box .lower-content h3 a { color: var(--white); font-size: 18px; }
.place-block-one .inner-box .lower-content span { color: var(--secondary); font-size: 13px; }

/* News Section */
.news-section { background: var(--bg-light); }
.news-block { margin-bottom: 30px; }
.news-block-one .inner-box {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 500ms ease;
}
.news-block-one .inner-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.news-block-one .inner-box .image-box {
    position: relative;
    overflow: hidden;
}
.news-block-one .inner-box .image-box img { width: 100%; transition: all 500ms ease; }
.news-block-one .inner-box:hover .image-box img { transform: scale(1.05); }
.news-block-one .inner-box .image-box a {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px; height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: all 300ms ease;
}
.news-block-one .inner-box:hover .image-box a { transform: translate(-50%, -50%) scale(1); }
.news-block-one .inner-box .lower-content { padding: 20px; }
.news-block-one .inner-box .admin-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.news-block-one .inner-box .admin-thumb img { width: 40px; height: 40px; border-radius: 50%; }
.news-block-one .inner-box .category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 10px;
}
.news-block-one .inner-box h3 { font-size: 18px; line-height: 26px; margin-bottom: 10px; }
.news-block-one .inner-box h3 a { color: var(--primary); }
.news-block-one .inner-box h3 a:hover { color: var(--secondary); }
.news-block-one .inner-box p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
.news-block-one .inner-box .post-info { font-size: 13px; color: var(--text-light); }
.news-block-one .inner-box .post-info a { color: var(--primary); }

/* Subscribe Section */
.subscribe-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
}
.subscribe-section .text { color: var(--white); }
.subscribe-section .icon-box { font-size: 50px; color: var(--secondary); margin-bottom: 15px; }
.subscribe-section h2 { font-size: 32px; color: var(--white); margin-bottom: 10px; }
.subscribe-section p { color: rgba(255,255,255,0.8); }
.subscribe-form .form-group { display: flex; gap: 10px; }
.subscribe-form input {
    flex: 1;
    height: 50px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
}
.subscribe-form button {
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
}
.subscribe-form button:hover { background: var(--white); }

/* Footer */
.main-footer { background: var(--primary-dark); }
.footer-top { padding: 80px 0 50px; }
.footer-widget { margin-bottom: 30px; }
.footer-logo img { max-width: 160px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-widget .text p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 26px; margin-bottom: 20px; }
.footer-widget .widget-title h3 { color: var(--white); font-size: 20px; margin-bottom: 20px; }
.footer-widget .links-list li { margin-bottom: 12px; }
.footer-widget .links-list li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: all 300ms ease; }
.footer-widget .links-list li a:hover { color: var(--secondary); padding-left: 5px; }
.footer-widget .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-widget .info-list li i { color: var(--secondary); margin-top: 4px; }
.footer-widget .info-list li a { color: rgba(255,255,255,0.7); }
.footer-widget .info-list li a:hover { color: var(--secondary); }
.footer-widget .social-links { display: flex; gap: 10px; }
.footer-widget .social-links li a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 300ms ease;
}
.footer-widget .social-links li a:hover { background: var(--secondary); color: var(--primary); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .copyright p { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-bottom .copyright a { color: var(--secondary); }
.footer-bottom .footer-nav li {
    display: inline-block;
    margin-left: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Page Title */
.page-title {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
}
.page-title::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,36,64,0.9), rgba(26,58,92,0.85));
}
.page-title .content-box { position: relative; z-index: 1; text-align: center; }
.page-title .title h1 { color: var(--white); font-size: 42px; margin-bottom: 15px; }
.bread-crumb { display: flex; justify-content: center; gap: 10px; }
.bread-crumb li { color: rgba(255,255,255,0.7); font-size: 15px; }
.bread-crumb li a { color: var(--secondary); }
.bread-crumb li a:hover { text-decoration: underline; }

/* About Section */
.about-section { padding: 100px 0; }
.content_block_3 .content-box .sec-title { text-align: left; }
.content_block_3 .content-box .text p { margin-bottom: 20px; font-size: 15px; line-height: 28px; }
.content_block_3 .content-box h3 { font-size: 20px; margin: 25px 0 15px; }
.image_block_1 .image-box { position: relative; }
.image_block_1 .image-box .image { border-radius: 15px; overflow: hidden; }
.image_block_1 .image-box .image img { width: 100%; border-radius: 15px; }
.image_block_1 .image-box .image-pattern .pattern-1,
.image_block_1 .image-box .image-pattern .pattern-2 {
    position: absolute;
    width: 150px; height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
}
.image_block_1 .image-box .image-pattern .pattern-1 { left: -30px; bottom: -30px; }
.image_block_1 .image-box .image-pattern .pattern-2 { right: -30px; top: -30px; }

/* Process Section */
.process-section { background: var(--bg-light); }
.process-block { margin-bottom: 30px; }
.process-block-one .inner-box { text-align: center; }
.process-block-one .inner-box .count {
    display: inline-block;
    width: 70px; height: 70px;
    line-height: 70px;
    background: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}
.process-block-one .inner-box .text {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.process-block-one .inner-box .text .icon-box {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.process-block-one .inner-box .text h3 { font-size: 20px; margin-bottom: 15px; }
.process-block-one .inner-box .text p { font-size: 14px; line-height: 26px; }

/* Contact Section */
.contact-section { background: var(--bg-light); }
.contact-info-inner .sec-title { text-align: left; margin-bottom: 30px; }
.contact-info-inner .single-box { margin-bottom: 25px; }
.contact-info-inner .single-box h3 { font-size: 18px; margin-bottom: 12px; }
.contact-info-inner .single-box .list li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.contact-info-inner .single-box .list li a { color: var(--primary); }
.contact-info-inner .social-links { display: flex; gap: 10px; }
.contact-info-inner .social-links li a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 300ms ease;
}
.contact-info-inner .social-links li a:hover { background: var(--secondary); color: var(--primary); }

/* Form Styles */
.form-inner {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.form-inner h2 { font-size: 28px; margin-bottom: 25px; }
.default-form .form-group { margin-bottom: 20px; }
.default-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.default-form .form-group input,
.default-form .form-group textarea,
.default-form .form-group select {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
    transition: all 300ms ease;
}
.default-form .form-group textarea { height: 120px; resize: none; border-radius: 15px; }
.default-form .form-group input:focus,
.default-form .form-group textarea:focus { border-color: var(--primary); }
.default-form .form-group .theme-btn-one { width: 100%; padding: 14px; }

/* Login/Signup Section */
.login-section { background: var(--bg-light); }
.login-section .inner-container { max-width: 500px; margin: 0 auto; }
.login-section .inner-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.login-section .inner-box h2 { font-size: 28px; text-align: center; margin-bottom: 30px; }
.signup-form .form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.signup-form .form-group input {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
    margin-bottom: 20px;
}
.signup-form .form-group input:focus { border-color: var(--primary); }
.signup-form .message-btn .theme-btn-one { width: 100%; }

/* Sidebar */
.sidebar-widget { background: var(--white); padding: 30px; border-radius: 15px; box-shadow: var(--shadow); margin-bottom: 30px; }
.sidebar-widget .widget-title h3 { font-size: 20px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--border-color); }
.search-widget .search-form { position: relative; }
.search-widget .search-form input {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
}
.search-widget .search-form button {
    position: absolute;
    right: 5px; top: 5px;
    width: 38px; height: 38px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.post-widget .post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.post-widget .post:last-child { border-bottom: none; }
.post-widget .post-thumb img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.post-widget .post h5 { font-size: 15px; margin-bottom: 5px; }
.post-widget .post h5 a { color: var(--primary); }
.post-widget .post p { font-size: 13px; color: var(--text-light); }

/* Pagination */
.pagination-wrapper { margin-top: 50px; }
.pagination { display: flex; justify-content: center; gap: 8px; }
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    transition: all 300ms ease;
}
.pagination li a:hover,
.pagination li a.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Scroll Top */
.scroll-top {
    position: fixed;
    right: 30px; bottom: 30px;
    width: 50px; height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    z-index: 999;
}
.scroll-top.open { opacity: 1; visibility: visible; bottom: 50px; }
.scroll-top:hover { background: var(--secondary); color: var(--primary); }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: all 300ms ease;
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-box h3 { font-size: 24px; margin-bottom: 15px; }
.modal-box p { margin-bottom: 20px; }

/* Background Colors */
.bg-color-1 { background: var(--bg-light); }
.bg-color-2 { background: #f5f7fa; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.rotate-me { animation: rotate 20s linear infinite; }

.wow { opacity: 0; }
.wow.fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.wow.fadeInDown { animation: fadeInDown 0.8s ease forwards; }

/* Tabs */
.tabs-box .tab-btns { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.tabs-box .tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 300ms ease;
}
.tabs-box .tab-btn.active-btn,
.tabs-box .tab-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.tabs-box .tab { display: none; }
.tabs-box .tab.active-tab { display: block; }

/* Feature Style Two */
.feature-style-two { padding: 100px 0; background: var(--white); }

/* Clients Section */
.clients-section { padding: 80px 0; background: var(--bg-light); }
.clients-logo-list { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.clients-logo-list li { flex: 0 0 calc(25% - 30px); }
.clients-logo-list li img { max-width: 150px; opacity: 0.7; transition: all 300ms ease; }
.clients-logo-list li img:hover { opacity: 1; }

/* Download Section */
.download-section { padding: 100px 0; background: var(--primary); }
.download-section .image-box { text-align: center; }
.download-section .image-box img { max-width: 100%; }
.download-section h2 { color: var(--white); font-size: 36px; margin-bottom: 30px; }
.download-btn { display: flex; gap: 15px; flex-wrap: wrap; }
.download-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    transition: all 300ms ease;
}
.download-btn a:hover { background: var(--secondary); color: var(--primary); }

/* Blog Details */
.blog-details-content .news-block-one .text blockquote {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    margin: 25px 0;
}
.blog-details-content .news-block-one .text blockquote h4 { font-size: 18px; margin-bottom: 10px; }
.blog-details-content .list-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
.blog-details-content .list-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 20px;
}
.post-share-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-top: 30px;
}

/* Related Ads */
.related-ads { padding: 80px 0; background: var(--bg-light); }

/* Fancybox Override */
.fancybox-container { z-index: 99999; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 992px) {
    .container { max-width: 720px; }
    .main-header .logo-box { padding: 10px 0; }
    .menu-area .mobile-nav-toggler { display: block; }
    .main-menu { display: none; }
    .banner-section { padding: 100px 0 80px; }
    .banner-section .content-box h1 { font-size: 36px; line-height: 46px; }
    .category-block-one { flex: 0 0 33.333%; max-width: 33.333%; }
    .sec-title h2 { font-size: 30px; line-height: 40px; }
    .page-title { padding: 80px 0 60px; }
    .page-title .title h1 { font-size: 32px; }
    .subscribe-section .form-group { flex-direction: column; }
    .footer-top { padding: 60px 0 40px; }
    .contact-section .row { flex-direction: column; }
}

@media (max-width: 768px) {
    .container { max-width: 540px; }
    .banner-section .input-inner { flex-direction: column; }
    .banner-section .input-inner .form-group { width: 100%; }
    .banner-section .input-inner .btn-box { width: 100%; }
    .banner-section .input-inner .btn-box button { width: 100%; }
    .category-block-one { flex: 0 0 50%; max-width: 50%; }
    .pricing-section .row { flex-direction: column; }
    .testimonial-section { padding: 60px 0; }
    .subscribe-section { padding: 60px 0; }
    .subscribe-section h2 { font-size: 24px; }
    .footer-bottom .footer-inner { flex-direction: column; gap: 15px; text-align: center; }
    .form-inner { padding: 25px; }
    .about-section { padding: 60px 0; }
    .about-section .row { flex-direction: column-reverse; }
}

@media (max-width: 576px) {
    .container { max-width: 100%; }
    .category-block-one { flex: 0 0 100%; max-width: 100%; }
    .banner-section .content-box h1 { font-size: 28px; line-height: 38px; }
    .sec-title h2 { font-size: 24px; line-height: 34px; }
    .page-title .title h1 { font-size: 26px; }
    .pagination { flex-wrap: wrap; }
    .login-section .inner-box { padding: 25px; }
}

/* Nice Select Override */
.nice-select { -webkit-appearance: none; appearance: none; background: transparent; }
.nice-select:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}
.nice-select .list { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }

/* Featured Course */
.feature-2 {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 15px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
}

/* Shape Decorations */
.shape-1, .shape-2 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}
.shape-1 { top: 0; right: 0; }
.shape-2 { bottom: 0; left: 0; }

/* List View / Grid View */
.item-shorting { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.item-shorting .text p { font-size: 14px; color: var(--text-secondary); }
.item-shorting .text p span { color: var(--primary); font-weight: 600; }
.item-shorting .right-column { display: flex; gap: 10px; }
.item-shorting .menu-box button {
    width: 40px; height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 5px;
    color: var(--primary);
    cursor: pointer;
    transition: all 300ms ease;
}
.item-shorting .menu-box button:hover,
.item-shorting .menu-box button.on { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Featured Three */
.feature-style-three { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.feature-style-three .image-box { position: relative; }
.feature-style-three .image-box .feature-2 { top: 15px; left: auto; right: 15px; }

/* Browse Add Details */
.browse-add-details { padding: 80px 0; }
.add-details-content .single-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.add-details-content .single-box h3 { font-size: 22px; margin-bottom: 20px; }
.add-details-content .single-box p { margin-bottom: 15px; }
.add-details-content .single-box ul.list-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}
.add-details-content .single-box ul.list-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Page Title 2 */
.page-title-2 {
    position: relative;
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
}
.page-title-2::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,36,64,0.9), rgba(26,58,92,0.85));
}
.page-title-2 .content-box { position: relative; z-index: 1; }
.page-title-2 .content-box h1 { color: var(--white); font-size: 36px; margin-bottom: 15px; }
.page-title-2 .content-box .category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.page-title-2 .info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.page-title-2 .info-box .left-column { display: flex; align-items: center; gap: 20px; }
.page-title-2 .info-box .left-column .image-box {
    width: 80px; height: 80px;
    border-radius: 10px;
    overflow: hidden;
}
.page-title-2 .info-box .links-list { display: flex; gap: 10px; }
.page-title-2 .info-box .links-list li a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 300ms ease;
}
.page-title-2 .info-box .links-list li a:hover { background: var(--primary); color: var(--white); }

/* Product Image */
.product-image .image { border-radius: 15px; overflow: hidden; margin: 20px 0; }
.product-image .image img { width: 100%; border-radius: 15px; }

/* Four Column Grid */
.four-column .row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.four-column .feature-block { padding: 0 15px; }

/* Carousel */
.owl-carousel { display: none; }
.owl-carousel.active { display: block; }
.owl-nav-none .owl-nav { display: none !important; }
.owl-dots-none .owl-dots { display: none !important; }
.dots-style-one .owl-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dots-style-one .owl-dots .owl-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 300ms ease;
}
.dots-style-one .owl-dots .owl-dot.active { background: var(--secondary); }

/* Accordion */
.accordion-box .block {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.accordion-box .block .acc-btn {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-box .block .acc-btn h5 { font-size: 16px; }
.accordion-box .block .acc-content {
    padding: 0 25px 20px;
    display: none;
}
.accordion-box .block .acc-content.current { display: block; }
.accordion-box .block .icon-outer::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-size: 16px;
    color: var(--text-secondary);
}
.accordion-box .block .acc-btn.active .icon-outer::after { content: '\f106'; }
