/*!
Theme Name: jambily
Theme URI: http://underscores.me/
Author: Baiding
Author URI: https://www.sx02.com
Description: Theme for jambily.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: theme-for-jambily
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

jambily is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

:root {
    --primary-color: #f94c30;
    --white: #ffffff;
	--grey: #f4f4f4;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #d0d0d0;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

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

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post{
	margin: 0 0 1.5em;
}
.page{
    margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* header css */
.site-header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: var(--grey);
    height: 40px;
    font-size: 15px;
}

.top-bar-container {
    max-width: 1440px;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.top-bar-left{
    display: flex;
    gap: 20px;
}
.service-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.open {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

.status-indicator.closed {
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--primary-color);
}

.top-link i {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    padding-left: 24px;
    border-left: 1px solid var(--border-color);
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--text-dark);
    border-radius: 50%;
    transition: var(--transition);
	text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    height: 100px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1440px;
    height: 100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}


.logo a {
    display: block;
    transition: var(--transition);
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.main-nav.sticky .logo img {
    height: 60px;
}

.logo h1 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: start;
	align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    display: block;
    position: relative;
    transition: var(--transition);
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--primary-color);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
    width: 100%;
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 160px;
    display: none;
    background: #fff;
    border: 1px solid #ddd;
	margin-left: 0;
	padding: 10px;
}
.sub-menu li{
	list-style: none;
	padding-bottom: 0px;
	border-bottom: 1px #e5e5e5 dotted;
}

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

.sub-menu li a{
	font-size: 15px;
}

.menu-item-has-children:hover > .sub-menu {
    display: block; 
}

.nav-right {
    background-color: #ece6e5;
    height: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 50px 0 0 50px;
    padding-left: 30px;
}

.contact-btn {
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(249, 76, 48, 0.3);
}

.contact-btn:hover {
    background: #e03d21;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 76, 48, 0.4);
}

.language-switcher select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.language-switcher select:hover {
    border-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 100px 40px 40px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: 40px;
}

.contact-btn.mobile {
    display: block;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        max-width: 100%;
    }
    
    .primary-menu {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 20px;
    }
    
    .top-link span {
        display: none;
    }
    
    .social-links {
        padding-left: 16px;
        gap: 8px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-center,
    .contact-btn:not(.mobile),
    .language-switcher {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        height: 80px;
    }
    
    .main-nav.sticky {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav.sticky .logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 50px;
        font-size: 12px;
    }
    
    .top-bar-right {
        gap: 12px;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


/* ===========================
   Footer 基础样式
=========================== */
#site-footer {
    position: relative;
    background: #282828;
    color: #fff;
    padding: 60px 20px;
    z-index: 2;
}

/* 中心内容区 */
#site-footer .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* 每一列 */
#site-footer .footer-col {
    flex: 1 1 280px;
}

/* Logo */
#site-footer .footer-logo img {
    max-width: 180px;
}

/* 文本 */
#site-footer p {
    color: #ccc;
    line-height: 1.6;
}

/* 标题 */
#site-footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

/* Quick Links 菜单 */
#site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-footer .footer-menu li {
    margin-bottom: 10px;
}

#site-footer .footer-menu a {
    color: #ccc;
    text-decoration: none;
}

#site-footer .footer-menu a:hover {
    color: #fff;
}

/* 社交按钮 */
#site-footer .footer-social a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
}

#site-footer .footer-social a:hover {
    opacity: 0.7;
}

/* 最新博客 Latest Blog */
#site-footer .footer-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#site-footer .footer-post-item img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
}

#site-footer .footer-post-item a {
    color: #fff;
    text-decoration: none;
}

#site-footer .footer-post-item a:hover {
    text-decoration: underline;
}

/* 版权区域 */
#site-footer .footer-bottom {
    text-align: center;
    color: #999;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* ===========================
   响应式
=========================== */
@media (max-width: 768px) {
    #site-footer .footer-inner {
        flex-direction: column;
    }
}


/*contact us page*/
/* Banner Section */
.contact-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('./images/contact-banner.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-banner h1 {
    font-size: 56px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #f94c30;
}

.breadcrumbs .separator {
    color: #fff;
    user-select: none;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 600;
}


/* Container */
.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Map Section */
.map-section {
    padding: 0px 0;
    background: #fff;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fdf7f6;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-card .icon {
    display: flex;
    margin: 0 auto;
    font-size: 40px;
    color: #f94c30;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 500ms ease;
    justify-content: center;
    align-items: center;
}

.contact-card .icon:hover{
    background-color: #f94c30;
    color: #fff;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.contact-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #fff;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-banner h1 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-container {
        height: 350px;
    }
}

/* --- About Page Template Style Sheet --- */

/* Reset and base styles */
.about-container {
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden; /* Prevents horizontal scroll on wider screens */
}

/* Sections */
.intro-section{
    background-color: var(--grey);
    padding: 20px 20px 100px;
    margin: 0;
}

.mission-vision-section,
.team-section,
.values-section,
.cta-section {
    padding: 80px 20px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1440px; /* Slightly less than container for padding */
    margin: 0 auto;
}

/* Text and Image Content */
.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h2 {
    color: #f94c30;
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.text-content p,
.text-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-content {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInFromRight 1s ease-out;
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-content img:hover {
    transform: scale(1.05);
}

/*about conter*/
.about-counter{
    position: sticky;
    margin: -100px auto -150px auto;    
    border-radius: 8px;
    max-width: 1200px;
    padding: 20px;
    z-index: 9;   
    animation: fadeInUp 1s ease-out; 
}

.counter-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--primary-color);
    flex-wrap: wrap;
    gap:20px;
    padding: 30px 40px 25px;
}

.counter-block{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--white) ;
}

.counter-block:last-child{
    border-right: 1px solid var(--white) ;
}

.counter-first{
    display: flex;
}

.counter-icon{
    width: 50px;
    height: 50px;
    font-size: 50px;
    color: var(--white);
    margin-right: 10px;
}

.counter-text{
    font-size: 50px;
    color: var(--white);
    font-weight: 700;
    text-transform: capitalize;
}

.counter-block p{
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}


/* Mission & Vision Cards */
.mission-vision-section {
    background-color: #fdf6f7;
    z-index: 1;
    padding-top: 200px;
}

.mission-vision-section .content-wrapper {
    justify-content: space-around;
}

.mission-vision-section .card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 0 1 calc(50% - 20px); /* Two cards per row */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInFromLeft 1s ease-out;
}

.mission-vision-section .card:nth-child(2) {
    animation: slideInFromRight 1s ease-out;
}

.mission-vision-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(249, 76, 48, 0.1);
}

.mission-vision-section .card h3 {
    color: #f94c30;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    text-align: center;
    background-color: var(--grey);
}

.team-section h2 {
    color: #f94c30;
    font-size: 2.5rem;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f94c30;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    margin: 0;
}

/* Values Section */
.values-section {
    background-color: #f0f0f0;
}

.values-section .text-content h2 {
    animation: none; /* Disable base fadeInUp for this specific h2 */
    animation: slideInFromRight 1s ease-out;
}

.values-section ul {
    list-style-type: none;
    padding: 0;
}

.values-section li {
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: fadeInRight 1s ease-out;
}

.values-section li strong {
    color: #f94c30;
}

/* CTA Section */
.cta-section {
    position: relative;
    max-width: 1200px;
    margin: -150px auto -30px auto;
    background-color: #f94c30;
    color: white;
    text-align: center;
    padding: 100px 20px;
    z-index: 999;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #f94c30;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet Styles */
@media (max-width: 1024px) {
    .about-container {
        max-width: 95%; /* Slightly smaller than full width on tablets */
    }

    .hero-title {
        font-size: 2.8rem; /* Slightly smaller font */
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .intro-section,
    .mission-vision-section,
    .values-section,
    .cta-section {
        padding: 60px 15px; /* Less padding */
    }

    .content-wrapper {
        gap: 30px; /* Less gap */
    }

    .text-content h2 {
        font-size: 2rem; /* Smaller heading */
    }

    .mission-vision-section .card {
        padding: 30px; /* Less padding inside cards */
        flex: 0 1 100%; /* Stack cards on top of each other */
        max-width: 100%; /* Ensure full width */
        margin-bottom: 20px; /* Add space between stacked cards */
    }

    .mission-vision-section .content-wrapper {
        justify-content: center; /* Center the single stacked card */
    }

    .team-grid {
        gap: 30px; /* Less gap in team grid */
    }

    .cta-section {
        padding: 80px 15px; /* Less padding */
    }

    .cta-section h2 {
        font-size: 2rem; /* Smaller heading */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-container {
        max-width: 100%; /* Full width on mobile */
        overflow-x: hidden; /* Ensure no horizontal scroll */
    }

    .hero-section {
        height: 50vh; /* Shorter hero on mobile */
    }

    .hero-title {
        font-size: 2.2rem; /* Much smaller font */
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-section,
    .mission-vision-section,
    .values-section,
    .cta-section {
        padding: 40px 10px; /* Even less padding */
    }

    .content-wrapper {
        flex-direction: column; /* Stack text and image vertically */
        gap: 20px; /* Less gap */
    }

    .text-content,
    .image-content {
        min-width: 100%; /* Full width for both text and image */
        order: 2; /* Image comes first by default */
    }

    .image-content {
        order: 1; /* On mobile, image appears above text */
    }

    .text-content h2 {
        font-size: 1.8rem; /* Smaller heading */
        text-align: center; /* Center text */
    }

    .text-content p {
        font-size: 1rem; /* Smaller text */
    }

    .mission-vision-section .card {
        padding: 25px; /* Less padding */
        margin-bottom: 25px; /* Space between stacked cards */
    }

    .mission-vision-section .card h3 {
        font-size: 1.5rem; /* Smaller card heading */
    }

    .team-section h2 {
        font-size: 2rem; /* Smaller heading */
    }

    .team-grid {
        grid-template-columns: 1fr; /* Single column for team members */
        gap: 25px; /* Less gap */
    }

    .team-member img {
        width: 120px; /* Smaller team member image */
        height: 120px;
    }

    .values-section .content-wrapper {
        flex-direction: column-reverse; /* On mobile, text comes first */
    }

    .values-section .text-content {
        order: 1; /* This is now the first item */
    }

    .values-section .image-content {
        order: 2; /* Image comes after text */
    }

    .values-section .text-content h2 {
        text-align: center; /* Center text */
    }

    .cta-section {
        max-width: 1440px;
        padding: 60px 10px; /* Less padding */
        margin-bottom: 30px;
    }

    .cta-section h2 {
        font-size: 1.8rem; /* Smaller heading */
    }

    .cta-section p {
        font-size: 1rem; /* Smaller text */
    }

    .cta-button {
        padding: 12px 30px; /* Smaller button */
        font-size: 1rem; /* Smaller button text */
    }
}

/* BLOG LIST Styles */

/* Main Container */
.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 40px;
    position: relative;
}

/* Posts Section */
.posts-section {
    width: 75%;
}

/* Single Post Item */
.post-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(249, 76, 48, 0.15);
}

.post-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f5f5f5;
}

.post-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-item:hover .post-thumbnail-wrapper img {
    transform: scale(1.05);
}

.post-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F94C30;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(249, 76, 48, 0.3);
    z-index: 2;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.post-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h2 a:hover {
    color: #F94C30;
}

.post-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.read-more-btn {
    display: inline-block;
    background: #F94C30;
    color: var(--white)!important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #F94C30;
}

.read-more-btn:hover {
    background: white;
    color: var(--primary-color)!important;
    transform: translateX(5px);
}

/* Sidebar */
.sidebar {
    width: 25%;
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 3px solid #F94C30;
}

.sidebar-post-list {
    list-style: none;
}

.sidebar-post-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    display: block;
    transition: color 0.3s ease;
}

.sidebar-post-item a:hover {
    color: #F94C30;
}

.sidebar-post-date {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #F94C30 0%, #ff6b52 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.contact-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-image {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.contact-image svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.contact-text {
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
}

.list-contact-btn {
    display: block;
    background: white;
    color: #F94C30;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.list-contact-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: #F94C30;
    color: white;
    border-color: #F94C30;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        flex-direction: column;
    }
    
    .posts-section,
    .sidebar {
        width: 100%;
    }
    
    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 36px;
    }
    
    .blog-banner {
        height: 300px;
    }
    
    .post-thumbnail-wrapper {
        height: 300px;
    }
    
    .post-content h2 {
        font-size: 22px;
    }
    
    .blog-container {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .blog-banner {
        height: 250px;
    }
    
    .post-thumbnail-wrapper {
        height: 250px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-content h2 {
        font-size: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/*  post content style  */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner Section */
.post-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #F94C30 0%, #ff6b52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.post-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.post-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.95;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Main Container */
.post-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 30px;
    position: relative;
}

/* Main Content */
.post-main-content {
    width: 70%;
}

/* Featured Image */
.post-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Post Title */
.post-title-section {
    margin-bottom: 40px;
}

.post-title-section h1 {
    font-size: 42px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #666;
    font-size: 15px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Post Content Styles */
.post-content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.post-content-wrapper p {
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    font-size: 17px;
}

/* H3 Heading Style */
.post-content-wrapper h3 {
    font-size: 28px;
    color: #333;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #F94C30;
    line-height: 1.4;
    position: relative;
}

.post-content-wrapper h3::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #F94C30, #ff6b52);
    box-shadow: 0 0 10px rgba(249, 76, 48, 0.3);
}

/* H4 Heading Style */
.post-content-wrapper h4 {
    font-size: 22px;
    color: #F94C30;
    margin: 30px 0 15px 0;
    padding: 8px 10px;
    background: linear-gradient(to right, rgba(249, 76, 48, 0.1), transparent);
    border-radius: 8px;
    position: relative;
}

.post-content-wrapper h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 20px;
    height: 2px;
    background: linear-gradient(to right, #F94C30, transparent);
}

/* Ordered List Style */
.post-content-wrapper ol {
    margin: 25px 0;
    padding-left: 0;
    counter-reset: custom-counter;
    list-style: none;
}

.post-content-wrapper ol li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
    line-height: 1.8;
    counter-increment: custom-counter;
}

.post-content-wrapper ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F94C30, #ff6b52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(249, 76, 48, 0.3);
}

/* Unordered List Style */
.post-content-wrapper ul {
    margin: 25px 0;
    padding-left: 20px;
    list-style: none;
}

.post-content-wrapper ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.post-content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #F94C30;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249, 76, 48, 0.2);
}

/* Blockquote */
.post-content-wrapper blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: #f9f9f9;
    border-left: 5px solid #F94C30;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

/* Tags and Share Section */
.post-footer-section {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.post-tags strong {
    color: #333;
    font-size: 16px;
}

.tag-item {
    display: inline-block;
    padding: 8px 18px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag-item:hover {
    background: #F94C30;
    color: white;
    border-color: #F94C30;
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-share strong {
    color: #333;
    font-size: 16px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white!important;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Post Navigation */
.post-navigation {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-item {
    flex: 1;
    text-decoration: none;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-item:hover {
    background: white;
    border-color: #F94C30;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 76, 48, 0.1);
}

.nav-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.nav-item.prev { text-align: left; }
.nav-item.next { text-align: right; }

/* Sidebar */
.post-sidebar {
    width: 30%;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 3px solid #F94C30;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    margin: 0;
}

.toc-item {
    margin-bottom: 3px;
}

.toc-item a {
    position: relative;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.5;
    border-left: 3px solid transparent;
}

.toc-item a::before {
    content: "";
    position: absolute;
    padding-right: 5px;
    left: 0;
    top: 50%;
    width: 8px; 
    height: 3px; 
    background: var(--primary-color);
    transform: translateY(-50%);
    border-radius: 2px;
}

.toc-item a:hover {
    background: rgba(249, 76, 48, 0.1);
    color: #F94C30;
    border-left-color: #F94C30;
    padding-left: 20px;
}

.toc-item.toc-h4 {
    margin-left: 10px;
}

.toc-item.toc-h4 a {
    font-size: 14px;
    color: #888;
}

/* Related & Latest Posts */
.related-post-item,
.latest-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.related-post-item:last-child,
.latest-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-thumb,
.latest-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-thumb img,
.latest-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-thumb img,
.latest-post-item:hover .latest-post-thumb img {
    transform: scale(1.1);
}

.related-post-info,
.latest-post-info {
    flex: 1;
}

.related-post-info h4,
.latest-post-info h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    line-height: 1.4;
}

.related-post-info h4 a,
.latest-post-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-info h4 a:hover,
.latest-post-info h4 a:hover {
    color: #F94C30;
}

.related-post-date,
.latest-post-date {
    font-size: 13px;
    color: #999;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #F94C30 0%, #ff6b52 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.contact-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-image {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.contact-image svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.contact-text {
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
}

.post-contact-btn {
    display: block;
    background: white;
    color: #F94C30;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.post-contact-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .post-container {
        flex-direction: column;
    }
    
    .post-main-content,
    .post-sidebar {
        width: 100%;
    }
    
    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
    
    .post-banner {
        height: 400px;
    }
    
    .post-featured-image {
        height: 350px;
    }
    
    .post-title-section h1 {
        font-size: 32px;
    }
    
    .post-content-wrapper {
        padding: 25px;
    }
    
    .post-content-wrapper h3 {
        font-size: 24px;
    }
    
    .post-content-wrapper h4 {
        font-size: 20px;
    }
    
    .post-footer-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 24px;
    }
    
    .post-banner {
        height: 300px;
    }
    
    .post-featured-image {
        height: 250px;
    }
    
    .post-container {
        padding: 30px 15px;
    }
    
    .post-content-wrapper {
        padding: 20px;
    }
    
    .post-footer-section {
        padding: 20px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}