@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------
   RESET & BASE
   ---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: #f8f9fa;
  direction: rtl;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------------------------
   TOPBAR
   ---------------------------------------------- */
.topbar {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid #e4e4e4;
  background: #fff;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.topbar-menu ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.topbar-menu ul li {
  padding: 0 12px;
  font-weight: 400;
  position: relative;
}

.topbar-menu ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #e4e4e4;
}

.address {
  display: flex;
  align-items: center;
  gap: 4px;
}

.address i {
  color: #1266AF;
  font-size: 16px;
}

/* ----------------------------------------------
   HEADER
   ---------------------------------------------- */
.header {
  background: #005baa;
  color: white;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-header {
  background-color: #fff;
  padding: 12px 0;
}

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

.logo {
  height: 50px;
}

.logo img {
  height: 50px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #1266AF;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #1266AF;
  color: #fff;
}

/* Navigation */
.nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 16px 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 80%;
}
.sub-menu{
	display: none!important;
}
/* Search */
.header-inner .search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-bar input {
  border: 0;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 400;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  width: 200px;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.search-btn a {
  font-size: 20px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-btn a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1266AF;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f5f5f5;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1266AF;
  color: #fff;
}

.desktop-only {
  display: flex;
}

/* ----------------------------------------------
   MOBILE SIDEBAR
   ---------------------------------------------- */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e4e4e4;
  background: #fff;
}

.sidebar-logo img {
  height: 40px;
  width: auto;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  background-color: #f5f5f5;
  color: #1266AF;
}

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e4e4e4;
}

.sidebar-search form {
  display: flex;
  gap: 4px;
}

.sidebar-search .search-bar input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-family: 'Vazirmatn', sans-serif;
}

.sidebar-search .search-bar input::placeholder {
  color: #999;
}

.sidebar-search .search-bar input:focus {
  outline: none;
  border-color: #1266AF;
}

.sidebar-search .search-btn button {
  color: #1266AF;
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e4e4e4;
  transition: all 0.3s ease;
}

.sidebar-search .search-btn a:hover {
  background: #1266AF;
  color: #fff;
  border-color: #1266AF;
}

.sidebar-menu {
  padding: 10px 0;
  border-bottom: 1px solid #e4e4e4;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.sidebar-nav a {
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
	display: block;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(18, 102, 175, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.sidebar-nav a:hover::before {
  width: 100%;
}

.sidebar-nav a:hover {
  background: #f5f5f5;
  color: #1266AF;
  border-right-color: #1266AF;
  padding-right: 25px;
}

.sidebar-topbar {
  padding: 20px;
  border-bottom: 1px solid #e4e4e4;
  background: #f8f9fa;
}

.sidebar-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #666;
}

.sidebar-address i {
  color: #1266AF;
  font-size: 16px;
  min-width: 20px;
}

.sidebar-topbar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-topbar-menu ul li {
  margin-bottom: 10px;
}

.sidebar-topbar-menu ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar-topbar-menu ul li a:hover {
  color: #1266AF;
  padding-right: 5px;
}

.sidebar-topbar-menu ul li a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #1266AF;
  border-radius: 50%;
  display: inline-block;
}

.sidebar-social {
  padding: 20px;
  text-align: center;
}

.sidebar-social h4 {
  color: #333;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.sidebar-social .social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.sidebar-social .social-links a {
  color: #1266AF;
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.sidebar-social .social-links a:hover {
  background: #1266AF;
  color: #fff;
  transform: translateY(-3px);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* ----------------------------------------------
   HERO SECTION
   ---------------------------------------------- */
.slideshow {
  position: relative;
}

.hero-item {
  display: flex;
  align-items: center;
  position: relative;
}

.mob-slide-ratio {
  display: none !important;
}

.hero-inner {
  z-index: 3;
  position: absolute;
  color: #fff;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-inner span {
  border-bottom: 2px solid #fff;
  font-weight: 600;
  padding-bottom: 5px;
  display: inline-block;
}

.hero-inner h1 {
  font-size: 40px;
  margin: 20px 0 30px;
  max-width: 50%;
  line-height: 1.3;
}

.hero-inner a {
  padding: 12px 28px;
  font-size: 16px;
  background: #1266AF;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #1266AF;
}

.hero-inner a:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.hero-ov-shade{
    background-color: rgba(0, 21, 51, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------
   FEATURES
   ---------------------------------------------- */
.features-section {
  background: #001533;
  color: white;
  padding: 60px 0 100px;
  position: relative;
  margin-bottom: 160px;
}

.feature-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-title-bar h3 {
  font-size: 24px;
}

.feature-title-bar a {
  padding: 10px 24px;
  font-size: 16px;
  color: #1266AF;
  background: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-title-bar a:hover {
  background: #1266AF;
  color: #fff;
}

.features-inner {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}

.features-item-holder {
  margin: 0 -10px;
}

.feature-item {
  padding: 0 10px;
  outline: none;
}

.feature-card {
  background: white;
  color: #001533;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  border-bottom: 4px solid #1266AF;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card-icon i {
  color: #558DBC;
  font-size: 48px;
  display: inline-block;
}

.feature-card h4 {
  font-size: 16px;
  margin: 12px 0 8px;
}

.feature-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

/* Slick overrides for features */
.features-item-holder .slick-slide {
  height: auto;
}

.features-item-holder .slick-slide>div {
  height: 100%;
}

.features-item-holder .slick-track {
  display: flex;
  align-items: stretch;
}

/* ----------------------------------------------
   ABOUT
   ---------------------------------------------- */
.about-section{
  padding-top: 60px;
}
.about-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  padding-bottom: 80px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text span {
  color: #1266AF;
  font-weight: 600;
  font-size: 18px;
}

.about-text h2 {
  margin: 15px 0 20px;
  font-size: 32px;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
}

.about-text a {
  padding: 12px 28px;
  font-size: 16px;
  background: #005baa;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #005baa;
}

.about-text a:hover {
  background: transparent;
  color: #005baa;
}

/* ----------------------------------------------
   PRODUCTS
   ---------------------------------------------- */
.products {
  padding: 60px 0;
  /*background: #f5f5f5;*/
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  color: #1266AF;
  font-weight: 600;
  font-size: 18px;
}

.section-title h2 {
  margin: 10px 0 0;
  font-size: 32px;
  color: #001533;
}

.products-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  border-radius: 12px;
  background: white;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card a {
  display: block;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  color: #001533;
  font-size: 18px;
}

/* ----------------------------------------------
   BLOG
   ---------------------------------------------- */
/* Blog Page Styles - مطابق با HTML */

.blog-header {
    background: linear-gradient(rgba(0, 21, 51, 0.9), rgba(0, 21, 51, 0.9)), url('img/blog-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.blog-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.blog-main {
    padding: 0 0 80px;
}

/* Blog Layout */
.blog-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.blog-content {
    flex: 2.5;
    min-width: 300px;
}

.blog-sidebar {
    flex: 1.2;
    min-width: 280px;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Post Card */
.blog-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1266AF;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
}

.post-meta i {
    color: #1266AF;
    margin-left: 4px;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
}

.post-title {
    font-size: 18px;
    color: #001533;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.post-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #1266AF;
}

.post-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1266AF;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.post-read-more:hover {
    gap: 10px;
    color: #005baa;
}

/* Featured Post */
.featured-post {
    margin-bottom: 50px;
}

.featured-post-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.featured-post-thumbnail {
    flex: 1 1 40%;
    min-width: 300px;
}

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

.featured-post-content {
    flex: 1 1 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.featured-label {
    background: #1266AF;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.featured-post-content .post-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-post-content .post-excerpt {
    font-size: 16px;
    margin-bottom: 25px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: #001533;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1266AF;
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #1266AF;
}

/* Search Widget */
.search-widget form {
    display: flex;
    gap: 10px;
}

.search-widget input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
}

.search-widget input:focus {
    outline: none;
    border-color: #1266AF;
}

.search-widget button {
    width: 45px;
    height: 45px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-widget button:hover {
    background: #005baa;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #e4e4e4;
}

.categories-widget a:hover {
    color: #1266AF;
    padding-right: 10px;
}

.categories-widget span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

/* Recent Posts Widget */
.recent-posts-widget ul {
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

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

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.recent-post-info h4 a {
    color: #001533;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: #1266AF;
}

.recent-post-date {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-post-date i {
    color: #1266AF;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: #f5f5f5;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-item:hover {
    background: #1266AF;
    color: #fff;
}

/* Newsletter Widget */
.newsletter-widget p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.newsletter-widget button {
    width: 100%;
    padding: 12px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-widget button:hover {
    background: #005baa;
}

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

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-item.active {
    background: #1266AF;
    color: #fff;
    border-color: #1266AF;
}

.page-item:hover:not(.active) {
    background: #f5f5f5;
    color: #1266AF;
    border-color: #1266AF;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-header h1 {
        font-size: 36px;
    }
    
    .featured-post-content {
        padding: 30px;
    }
    
    .featured-post-content .post-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
	body {
		padding-top: 64px;
	}
	.header{
				position: fixed;
	right: 0;
		left: 0;
	top: 0;
	z-index: 2;
	}
    .blog-header {
        padding: 60px 0;
    }
    
    .blog-header h1 {
        font-size: 28px;
    }
    
    .blog-header p {
        font-size: 16px;
    }
    
    .featured-post-card {
        flex-direction: column;
    }
    
    .featured-post-content {
        padding: 25px;
    }
    
    .featured-post-content .post-title {
        font-size: 22px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 24px;
    }
    
    .post-meta {
        gap: 10px;
    }
    
    .featured-post-content {
        padding: 20px;
    }
    
    .featured-post-content .post-title {
        font-size: 20px;
    }
}

/* ----------------------------------------------
   CUSTOMERS
   ---------------------------------------------- */
.customers {
  padding: 60px 0;
  border-top: 1px solid #E4E4E4;
  background: white;
}

.customers-carousel {
  margin: 0 auto;
}

.customers-item {
  padding: 15px;
  text-align: center;
}

.customers-item img {
  margin: 0 auto;
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.customers-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ----------------------------------------------
   FOOTER
   ---------------------------------------------- */
.footer {
  background: #001533;
  color: #ededed;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  flex: 1 1 250px;
  font-size: 14px;
}

.footer-info img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-info p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.footer-info span {
  display: block;
  color: #1266AF;
}

.footer-contact {
  flex: 1 1 200px;
}

.footer-contact h3 {
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #1266AF;
}

.contact-item {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(-5px);
  color: #1266AF;
}

.contact-item i {
  font-size: 18px;
  color: #1266AF;
}

.footer-credits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex: 1 1 200px;
  justify-content: flex-end;
}

.credit-item {
  background: white;
  padding: 10px;
  border-radius: 8px;
  max-width: 120px;
}

.credit-item img {
  height: 100px;
  width: auto;
  display: block;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  font-size: 18px;
}

.footer-menu ul li a {
  transition: all 0.3s ease;
  display: flex;
}

.footer-menu ul li a:hover {
  color: #1266AF;
  transform: translateY(-3px);
}

/* ----------------------------------------------
   SHOP & PRODUCTS GRID
   ---------------------------------------------- */
.shop-layout {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.shop-sidebar {
  flex: 0 0 280px;
}

.shop-content {
  flex: 1;
  min-width: 300px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Product Card (shop) */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  list-style: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

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

.product-card:hover .product-thumbnail img {
  transform: scale(1.05);
}

/* Sale Badge */
.onsale {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #dc3545;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* Quick View */
.quick-view-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(18, 102, 175, 0.9);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  font-size: 20px;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
  background: #005baa;
  transform: translateX(-50%) scale(1.1);
}

/* Product Info (shop) */
.product-info {
  padding: 20px;
}

.product-info h2 {
  font-size: 16px;
  color: #001533;
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-info h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-info h2 a:hover {
  color: #1266AF;
}

.product-info .star-rating {
  margin: 10px auto;
  font-size: 14px;
  display: inline-block;
}

.product-info .price {
  color: #1266AF;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-top: 10px;
}

.product-info .price del {
  color: #999;
  font-size: 13px;
  margin-left: 5px;
  text-decoration: line-through;
}

.product-info .price ins {
  text-decoration: none;
}

.product-actions {
/*   padding: 0 20px 20px; */
  text-align: center;
}

.product-actions .button {
  display: none !important;
  padding: 10px 25px;
  background: #1266AF;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.product-actions .button:hover {
  background: #005baa;
  transform: translateY(-2px);
}

.product-actions .added_to_cart {
  display: none!important;
  margin-top: 10px;
  padding: 8px 20px;
  background: #28a745;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 21, 51, 0.85), rgba(0, 21, 51, 0.85));
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  color: #001533;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1266AF;
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 50px;
  height: 2px;
  background: #1266AF;
}

.product-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-categories li {
  margin-bottom: 12px;
  border-bottom: 1px dashed #e4e4e4;
}

.product-categories li:last-child {
  border-bottom: none;
}

.product-categories a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-categories a:hover {
  color: #1266AF;
  padding-right: 10px;
}

.product-categories span {
  color: #999;
  font-size: 12px;
}

.featured-product-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.featured-product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.featured-product-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-product-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.5;
}

.featured-product-info h4 a {
  color: #001533;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-product-info h4 a:hover {
  color: #1266AF;
}

.featured-product-info .price {
  font-size: 14px;
  font-weight: 700;
  color: #1266AF;
}

/* Products Header (ordering, count) */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.products-count {
  color: #666;
  font-size: 14px;
}

.products-ordering select {
  padding: 10px 15px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.products-ordering select:focus {
  outline: none;
  border-color: #1266AF;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination .page-numbers li {
  margin: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: block;
  padding: 10px 15px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 40px;
}

.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination .page-numbers a:hover {
  background: #1266AF;
  color: #fff;
  border-color: #1266AF;
}

/* No Products Found */
.woocommerce-info,
.woocommerce-info a {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #555;
  border: 1px solid #e4e4e4;
}

.woocommerce-info a {
  color: #1266AF;
  text-decoration: none;
}

.woocommerce-info a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------
   SINGLE PRODUCT
   ---------------------------------------------- */
.product-single {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 50px 0;
  background: #fff;
}

.product-gallery-column {
  flex: 1;
  min-width: 300px;
}

.product-summary-column {
  flex: 1;
  min-width: 300px;
}

/* Product Gallery */

/* Product Gallery Thumbnails Slider - Square with 4 items visible */
.product-gallery {
    position: relative;
}

.product-gallery-main {
    margin-bottom: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

/* Thumbnail Slider Container */
.product-gallery-thumbs {
    /* direction: ltr; */
    margin-top: 15px;
}

.product-gallery-thumbs .thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 2px solid transparent;
    margin: 0 5px;
}

.product-gallery-thumbs .thumb-item:hover,
.product-gallery-thumbs .thumb-item.active {
    opacity: 1;
    border-color: #1266AF;
}

.product-gallery-thumbs .thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Slick Slider Custom Styles for Thumbnails */
.product-gallery-thumbs .slick-track {
    display: flex;
    align-items: center;
}

.product-gallery-thumbs .slick-slide {
    padding: 0 5px;
}

/* Custom Arrows */
.product-gallery-thumbs .slick-prev,
.product-gallery-thumbs .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-gallery-thumbs .slick-prev {
    right: 0;
}

.product-gallery-thumbs .slick-next {
    left: 0;
}

.product-gallery-thumbs .slick-prev:hover,
.product-gallery-thumbs .slick-next:hover {
    background: #1266AF;
}

.product-gallery-thumbs .slick-prev:before,
.product-gallery-thumbs .slick-next:before {
    font-family: "Phosphor" !important;
    font-size: 18px;
    line-height: 1;
    opacity: 1;
    color: white;
}

.product-gallery-thumbs .slick-prev:before {
    content: '\e06c';
}

.product-gallery-thumbs .slick-next:before {
    content: '\e058';
}

/* RTL arrow adjustments */
[dir="rtl"] .product-gallery-thumbs .slick-prev {
    left: auto;
    right: 0;
}

[dir="rtl"] .product-gallery-thumbs .slick-next {
    right: auto;
    left: 0;
}

[dir="rtl"] .product-gallery-thumbs .slick-prev:before {
    content: '←';
}

[dir="rtl"] .product-gallery-thumbs .slick-next:before {
    content: '→';
}

/* Responsive */
@media (max-width: 768px) {
    .product-gallery-thumbs .thumb-item img {
        aspect-ratio: 1 / 1;
        min-height: 60px;
    }
    
    .product-gallery-thumbs .slick-prev,
    .product-gallery-thumbs .slick-next {
        width: 28px;
        height: 28px;
    }
    
    .product-gallery-thumbs .slick-prev:before,
    .product-gallery-thumbs .slick-next:before {
        font-size: 14px;
    }
}

/* Slick thumbs version */
.product-gallery-thumbs.slick-slider {
  display: block;
}

.product-gallery-thumbs .slick-slide {
  padding: 0 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.product-gallery-thumbs .slick-slide:hover,
.product-gallery-thumbs .slick-slide.slick-current {
  opacity: 1;
}

.product-gallery-thumbs .slick-slide img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

/* Product Info Single */
.product-info h1 {
  font-size: 28px;
  color: #001533;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-info .product-price {
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.current-price {
  font-size: 32px;
  font-weight: 700;
  color: #1266AF;
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price span.woocommerce-Price-currencySymbol {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  padding-right: 6px;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-top: 5px;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
  color: #28a745;
}

.product-stock i {
  font-size: 20px;
}

.product-stock.out-of-stock {
  color: #dc3545;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  display: flex;
  gap: 2px;
}

.rating-count {
  color: #666;
  font-size: 14px;
}

.product-short-desc {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
}

/* Variations */
.product-variations {
  margin-bottom: 25px;
}

.variation-row {
  margin-bottom: 20px;
}

.variation-row label {
  display: block;
  font-weight: 600;
  color: #001533;
  margin-bottom: 8px;
}

.variation-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.variation-select:focus {
  outline: none;
  border-color: #1266AF;
}

.variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variation-btn {
  padding: 10px 20px;
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 6px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variation-btn:hover,
.variation-btn.active {
  background: #1266AF;
  color: #fff;
  border-color: #1266AF;
}

/* Quantity */
.product-info .product-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-label {
  font-weight: 600;
  color: #001533;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.quantity-btn:hover {
  background: #1266AF;
  color: #fff;
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  text-align: center;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 16px;
  padding: 0;
  line-height: 40px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart */
.product-actions {
  display: flex;
  gap: 15px;
/*   margin-bottom: 30px; */
  flex-wrap: wrap;
}

.add-to-cart-btn {
  flex: 2;
  min-width: 200px;
  padding: 15px 30px;
  background: #1266AF;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #005baa;
  transform: translateY(-2px);
}

.wishlist-btn {
  flex: 1;
  min-width: 120px;
  padding: 15px;
  background: #fff;
  color: #1266AF;
  border: 1px solid #1266AF;
  border-radius: 6px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: #1266AF;
  color: #fff;
}

/* Cart form (WooCommerce style) */
.cart {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.quantity {
  display: inline-block;
}

.quantity input {
  width: 80px;
  padding: 12px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  text-align: center;
}

.single_add_to_cart_button {
  padding: 12px 30px;
  background: #1266AF;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Vazirmatn';
}

.single_add_to_cart_button:hover {
  background: #005baa;
  transform: translateY(-2px);
}

/* Product Meta */
.product-meta {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #e4e4e4;
}

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

.meta-item i {
  color: #1266AF;
  font-size: 18px;
  min-width: 24px;
}

.meta-item a:hover {
  color: #1266AF;
}

.product_meta {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.product_meta>span {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.product_meta a {
  color: #1266AF;
  text-decoration: none;
}

/* Sharing */
.product-sharing {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sharing-label {
  font-weight: 600;
  color: #001533;
}

.sharing-icons {
  display: flex;
  gap: 10px;
}

.sharing-icons a {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  color: #1266AF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sharing-icons a:hover {
  background: #1266AF;
  color: #fff;
  transform: translateY(-3px);
}

/* Product Tabs */
.product-tabs {
  margin: 60px 0;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid #e4e4e4;
  gap: 5px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #1266AF;
}

.tab-btn.active {
  color: #1266AF;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #1266AF;
}

.tab-panel {
  padding: 40px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: #001533;
  margin-bottom: 20px;
  font-size: 22px;
}

.tab-panel p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #e4e4e4;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #001533;
  width: 200px;
}

.specs-table td:last-child {
  color: #555;
}

/* WooCommerce Tabs */
.woocommerce-tabs {
  margin: 60px 0;
}

.woocommerce-tabs .tabs {
  display: flex;
  border-bottom: 2px solid #e4e4e4;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-tabs .tabs li {
  margin: 0;
}

.woocommerce-tabs .tabs li a {
  display: block;
  padding: 15px 30px;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li.active a {
  color: #1266AF;
  position: relative;
}

.woocommerce-tabs .tabs li.active a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1266AF;
}

.woocommerce-Tabs-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-top: none;
}

/* Related Products */
.related-products {
  padding: 60px 0;
  background: #f8f9fa;
}

.related.products {
  margin-top: 60px;
}

.related.products h2 {
  font-size: 24px;
  color: #001533;
  margin-bottom: 30px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-part {
  padding: 40px 0 0;
}

.woocommerce-breadcrumb , .breadcrumb{
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.woocommerce-breadcrumb a, .breadcrumb a {
  color: #1266AF;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------
   RESPONSIVE STYLES
   ---------------------------------------------- */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-inner h1 {
    font-size: 32px;
    max-width: 80%;
  }

  .features-section {
    margin-bottom: 0;
  }

  .features-inner {
    position: relative;
  }

  .feature-card {
    min-width: 140px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .footer-credits {
    justify-content: flex-start;
  }

  .product-info {
    padding-right: 0;
    margin-top: 30px;
  }

  .product-info h1 {
    font-size: 24px;
  }

  .current-price {
    font-size: 28px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .tab-panel {
    padding: 30px 20px;
  }

  .shop-layout {
    flex-direction: column;
  }

  .shop-sidebar {
    flex: auto;
    order: 2;
  }

  .shop-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }

  .address {
    justify-content: center;
  }

  .topbar-menu ul {
    justify-content: center;
  }

  .topbar-menu ul li {
    padding: 0 8px;
  }

  .top-header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    height: 40px;
  }

  .logo img {
    height: 40px;
  }

  .header-inner {
    flex-direction: column;
    padding: 15px 0;
  }

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

  .nav a {
    padding: 12px 10px;
    font-size: 14px;
  }

  .search {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .search-bar {
    flex: 1;
    max-width: 300px;
  }

  .search-bar input {
    width: 100%;
  }

  .search-bar input:focus {
    width: 100%;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-inner h1 {
    font-size: 24px;
    max-width: 100%;
    margin: 15px 0 25px;
  }

  .hero-inner a {
    padding: 10px 20px;
  }

  .features-section {
    margin-bottom: 0;
    padding: 40px 0 80px;
  }

  .feature-title-bar {
    flex-direction: column;
    text-align: center;
  }

  .feature-title-bar h3 {
    font-size: 20px;
  }

  .feature-card {
    max-width: 100%;
    flex: 1 1 calc(50% - 20px);
    min-width: 140px;
  }

  .about-inner {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text a {
    padding: 10px 24px;
  }

  .about-image {
    width: 100%;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .products-inner,
  .blog-inner {
    gap: 20px;
  }

  .product-card,
  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .customers-item img {
    max-height: 140px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .footer-info {
    max-width: 100%;
  }

  .footer-contact h3::after {
    right: 50%;
    transform: translateX(50%);
  }

  .contact-item {
    justify-content: center;
  }

  .footer-credits {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu ul {
    justify-content: center;
  }

  .dsk-slide-ratio {
    display: none !important;
  }

  .mob-slide-ratio {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions .social-links {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .product-actions {
    flex-direction: column;
  }

  .add-to-cart-btn,
  .wishlist-btn {
    width: 100%;
  }

  .tabs-header {
    flex-direction: column;
    border-bottom: none;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    border: 1px solid #e4e4e4;
    margin-bottom: 5px;
    border-radius: 6px;
  }

  .tab-btn.active::after {
    display: none;
  }

  .tab-btn.active {
    background: #1266AF;
    color: #fff;
  }

  .specs-table td:first-child {
    width: 120px;
  }

  .product-single {
    flex-direction: column;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-tabs .tabs {
    flex-direction: column;
  }

  .woocommerce-tabs .tabs li.active a::after {
    display: none;
  }

  .woocommerce-tabs .tabs li.active a {
    background: #1266AF;
    color: #fff;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 16px;
  }

  .products-header {
    flex-direction: column;
    text-align: center;
  }

  .products-ordering select {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .topbar-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-menu ul li {
    padding: 5px 8px;
  }

  .topbar-menu ul li:not(:last-child)::after {
    display: none;
  }

  .social-links {
    gap: 8px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav a {
    padding: 8px 6px;
    font-size: 13px;
  }

  .hero-inner h1 {
    font-size: 18px;
  }

  .hero-inner span {
    font-size: 14px;
  }

  .hero-inner a {
    padding: 8px 16px;
    font-size: 14px;
  }

  .features-section {
    margin-bottom: 0;
  }

  .feature-card {
    flex: 1 1 100%;
    max-width: 280px;
  }

  .feature-card-icon i {
    font-size: 40px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  .about-text h2 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 14px;
  }

  .section-title span {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .blog-card h3 {
    font-size: 16px;
  }

  .blog-card p {
    font-size: 13px;
  }

  .section-more a {
    padding: 10px 24px;
    font-size: 14px;
  }

  .customers-item img {
    max-height: 140px;
  }

  .footer-info p,
  .footer-info span {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
  }

  .credit-item {
    max-width: 80px;
  }

  .credit-item img {
    height: 70px;
  }

  .footer-menu ul {
    gap: 12px;
    font-size: 16px;
  }

  .mobile-sidebar {
    width: 280px;
  }

  .sidebar-logo img {
    height: 35px;
  }

  .sidebar-nav a {
    padding: 12px 15px;
    font-size: 14px;
  }

  .sidebar-address {
    font-size: 12px;
  }

  .sidebar-topbar-menu ul li a {
    font-size: 13px;
  }

  .sidebar-social h4 {
    font-size: 14px;
  }

  .sidebar-social .social-links a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .product-info h1 {
    font-size: 20px;
  }

  .current-price {
    font-size: 24px;
  }

  .variation-buttons {
    gap: 5px;
  }

  .variation-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .tab-panel {
    padding: 20px 15px;
  }

  .specs-table td {
    display: block;
    padding: 8px 0;
  }

  .specs-table td:first-child {
    width: 100%;
    padding-bottom: 0;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .features-section {
    margin-bottom: 0;
  }

  .feature-card {
    max-width: 240px;
  }

  .hero-inner h1 {
    font-size: 16px;
  }

  .hero-inner a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .customers-item img {
    max-height: 140px;
  }

  .footer-credits {
    gap: 10px;
  }

  .credit-item {
    max-width: 60px;
  }

  .credit-item img {
    height: 50px;
  }
}


/* Ensure all images have proper aspect ratio */
.post-thumbnail img,
.featured-post-thumbnail img,
.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default image background */
.post-thumbnail {
    background: #f5f5f5;
}

/* Empty state handling */
.sidebar-widget:empty {
    display: none;
}

/* Category Header Styles */
.category-header {
    position: relative;
}

.category-stats {
    margin-top: 20px;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.category-count i {
    font-size: 16px;
}

/* Back to Blog Button */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 25px;
    background: #1266AF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #005baa;
    gap: 12px;
}
/* Back to Blog Button */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 25px;
    background: #1266AF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #005baa;
    gap: 12px;
}

/* Tag Header Styles */
.tag-header {
    position: relative;
}

.tag-header .category-count i {
    font-size: 16px;
}

/* Single Article Page Styles */
.article-header {
    background: linear-gradient(rgba(0, 21, 51, 0.85), rgba(0, 21, 51, 0.85));
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: #fff;
    margin-bottom: 50px;
}

.article-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: #1266AF;
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.article-category:hover {
    background: #005baa;
    color: #fff;
}

.article-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.article-meta-item i {
    color: #1266AF;
    font-size: 18px;
}

.article-main {
    padding: 0 0 80px;
}

.article-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.article-content-wrapper {
    flex: 2.5;
    min-width: 300px;
}

.article-sidebar {
    flex: 1.2;
    min-width: 280px;
}

/* Featured Image */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.article-content h2 {
    font-size: 28px;
    color: #001533;
    margin: 40px 0 20px;
    line-height: 1.4;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 22px;
    color: #001533;
    margin: 30px 0 15px;
    line-height: 1.4;
}

.article-content h4 {
    font-size: 18px;
    color: #001533;
    margin: 25px 0 12px;
    font-weight: 600;
}

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

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 20px;
    padding-right: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.8;
}

.article-content li::marker {
    color: #1266AF;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: #f8f9fa;
    border-right: 4px solid #1266AF;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
    font-size: 17px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.article-content table th {
    background: #1266AF;
    color: #fff;
    padding: 12px;
    font-weight: 600;
}

.article-content table td {
    padding: 10px 12px;
    border: 1px solid #e4e4e4;
}

.article-content table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.table-of-contents h3 {
    color: #001533;
    margin-bottom: 15px;
    font-size: 18px;
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    border-bottom: 1px dashed #e4e4e4;
    transition: all 0.3s ease;
}

.table-of-contents a:hover {
    color: #1266AF;
    padding-right: 10px;
}

/* Info Box */
.info-box {
    background: #e8f0fe;
    border-right: 4px solid #1266AF;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.info-box h4 {
    color: #1266AF;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Author Box */
.author-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1266AF;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    color: #001533;
    margin-bottom: 5px;
}

.author-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 34px;
    height: 34px;
    background: #f5f5f5;
    color: #1266AF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #1266AF;
    color: #fff;
    transform: translateY(-3px);
}

/* Article Footer Tags & Share */
.article-footer {
    margin-top: 30px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

.tags-label {
    font-weight: 600;
    color: #001533;
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-item {
    background: #f5f5f5;
    color: #555;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-item:hover {
    background: #1266AF;
    color: #fff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.share-label {
    font-weight: 600;
    color: #001533;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: #1266AF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-icons a:hover {
    background: #1266AF;
    color: #fff;
    transform: translateY(-3px);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.nav-prev,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-content {
    flex: 1;
}

.nav-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

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

.nav-icon {
    font-size: 24px;
    color: #1266AF;
}

.nav-next .nav-link {
    text-align: left;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-title {
    font-size: 22px;
    color: #001533;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-thumb {
    height: 160px;
    overflow: hidden;
}

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

.related-card:hover .related-thumb img {
    transform: scale(1.05);
}

.related-info {
    padding: 15px;
}

.related-info h4 {
    color: #001533;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.related-date {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: #001533;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1266AF;
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #1266AF;
}

/* Search Widget */
.search-widget form {
    display: flex;
    gap: 10px;
}

.search-widget input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
}

.search-widget button {
    width: 45px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e4e4e4;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #555;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.categories-widget a:hover {
    color: #1266AF;
    padding-right: 10px;
}

.categories-widget span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

/* Recent Posts Widget */
.recent-posts-widget ul {
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

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

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.recent-post-info h4 a {
    color: #001533;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: #1266AF;
}

.recent-post-date {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-item {
    background: #f5f5f5;
    color: #555;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-cloud-item:hover {
    background: #1266AF;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .article-header h1 {
        font-size: 36px;
    }
    
    .article-content {
        padding: 30px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 60px 0 40px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .article-meta-item {
        font-size: 13px;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .comment-body {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
    
    .comment-list .children {
        margin-right: 20px;
        padding-right: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .article-header h1 {
        font-size: 24px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .article-content p {
        font-size: 14px;
    }
    
    .comments-section {
        padding: 25px;
    }
    
    .comment-respond {
        padding: 20px;
    }
}

/* Search Header Styles */
.search-header {
    position: relative;
}

.search-header h1 span {
    color: #1266AF;
}

.search-stats {
    margin-top: 20px;
}

.search-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.search-count i {
    font-size: 16px;
}

/* No Results Found */
.no-results-found {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-content h2 {
    font-size: 28px;
    color: #001533;
    margin-bottom: 15px;
}

.no-results-content p {
    color: #666;
    margin-bottom: 30px;
}

.no-results-suggestions {
    text-align: right;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.no-results-suggestions h4 {
    color: #001533;
    margin-bottom: 10px;
}

.no-results-suggestions ul {
    margin-right: 20px;
    color: #555;
}

.no-results-suggestions li {
    margin-bottom: 5px;
}

.no-results-search {
    margin-bottom: 30px;
}

.no-results-search h4 {
    color: #001533;
    margin-bottom: 15px;
}

.no-results-search .search-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.no-results-search .search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
}

.no-results-search .search-form button {
    width: 45px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.no-results-search .search-form button:hover {
    background: #005baa;
}

.no-results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.back-to-home,
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-home {
    background: #1266AF;
    color: #fff;
}

.back-to-home:hover {
    background: #005baa;
    gap: 12px;
}

.back-to-blog {
    background: #f5f5f5;
    color: #001533;
}

.back-to-blog:hover {
    background: #e4e4e4;
    gap: 12px;
}

/* Highlight Search Terms in Results */
.search-highlight {
    background: #ffeb3b;
    color: #333;
    padding: 0 2px;
    border-radius: 3px;
}

/* Responsive for No Results */
@media (max-width: 768px) {
    .no-results-found {
        padding: 40px 20px;
    }
    
    .no-results-content h2 {
        font-size: 24px;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-home,
    .back-to-blog {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .search-header h1 {
        font-size: 24px;
    }
    
    .search-header p {
        font-size: 14px;
    }
    
    .no-results-content h2 {
        font-size: 20px;
    }
}



/* Tags Styles - Matching HTML Sample */
.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

.tags-label {
    font-weight: 600;
    color: #001533;
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-item {
    background: #f5f5f5;
    color: #555;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-item:hover {
    background: #1266AF;
    color: #fff;
}

/* Post Navigation - Matching HTML Sample */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.nav-prev,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-content {
    flex: 1;
}

.nav-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

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

.nav-icon {
    font-size: 24px;
    color: #1266AF;
}

.nav-next .nav-link {
    text-align: left;
}

/* Comments Section - Matching HTML Sample */
.comments-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 24px;
    color: #001533;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1266AF;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-item {
    margin-bottom: 30px;
}

.comment-body {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #1266AF;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 700;
    color: #001533;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comment-reply-link {
    color: #1266AF;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.comment-reply-link:hover {
    gap: 8px;
    color: #005baa;
}

/* Nested Comments */
.comment-list .children {
    list-style: none;
    margin-right: 50px;
    margin-top: 20px;
    padding-right: 20px;
    border-right: 2px solid #1266AF;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.comment-reply-title {
    font-size: 20px;
    color: #001533;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.comment-submit {
    padding: 12px 35px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-submit:hover {
    background: #005baa;
    transform: translateY(-2px);
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-section {
        padding: 25px;
    }
    
    .comment-body {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
    
    .comment-list .children {
        margin-right: 20px;
        padding-right: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .comment-respond {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .comments-section {
        padding: 20px;
    }
    
    .comments-title {
        font-size: 20px;
    }
}

/* 404 Error Page Styles */
.error-header {
    background: linear-gradient(rgba(0, 21, 51, 0.9), rgba(0, 21, 51, 0.9)), url('img/404-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.error-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.error-digit {
    font-size: 120px;
    font-weight: 800;
    color: #1266AF;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 1s ease infinite;
    display: inline-block;
}

.error-digit:nth-child(1) { animation-delay: 0s; }
.error-digit:nth-child(2) { animation-delay: 0.1s; }
.error-digit:nth-child(3) { animation-delay: 0.2s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.error-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.error-header p {
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.9;
}

.error-main {
    padding: 0 0 80px;
}

.error-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.error-content-wrapper {
    flex: 2.5;
    min-width: 300px;
}

.error-sidebar {
    flex: 1.2;
    min-width: 280px;
}

/* Error Search Box */
.error-search-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
}

.error-search-box h3 {
    font-size: 24px;
    color: #001533;
    margin-bottom: 15px;
}

.error-search-box p {
    color: #666;
    margin-bottom: 25px;
}

.error-search-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.error-search-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.error-search-form input:focus {
    outline: none;
    border-color: #1266AF;
}

.error-search-form button {
    padding: 14px 30px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.error-search-form button:hover {
    background: #005baa;
    transform: translateY(-2px);
}

/* Error Suggestions */
.error-suggestions {
    margin-bottom: 40px;
}

.error-suggestions h3 {
    font-size: 22px;
    color: #001533;
    margin-bottom: 25px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.suggestion-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.suggestion-icon {
    width: 70px;
    height: 70px;
    background: #e8f0fe;
    color: #1266AF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.suggestion-card:hover .suggestion-icon {
    background: #1266AF;
    color: #fff;
}

.suggestion-card h4 {
    font-size: 18px;
    color: #001533;
    margin-bottom: 10px;
}

.suggestion-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.suggestion-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1266AF;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suggestion-link:hover {
    gap: 10px;
    color: #005baa;
}

/* Recent Posts Section */
.error-recent-posts {
    margin-bottom: 40px;
}

.error-recent-posts h3 {
    font-size: 22px;
    color: #001533;
    margin-bottom: 25px;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.recent-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.error-recent-posts .recent-post-thumb {
  width: 100%;  
  height: 140px;
    overflow: hidden;
}
.error-recent-posts .recent-post-thumb a {
  display: block;  
  width: 100%;
}

.error-recent-posts .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.error-recent-posts .recent-post-card:hover .recent-post-thumb img {
    transform: scale(1.05);
}

.recent-post-info {
    padding: 15px;
}

.recent-post-info h4 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.recent-post-info h4 a {
    color: #001533;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: #1266AF;
}

.recent-post-date {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Contact Support Box */
.error-contact {
    margin-top: 30px;
}

.contact-support-box {
    background: linear-gradient(135deg, #1266AF 0%, #005baa 100%);
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
}

.contact-support-box i {
    font-size: 48px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-support-content {
    flex: 1;
}

.contact-support-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-support-content p {
    opacity: 0.9;
    margin: 0;
}

.contact-support-btn {
    background: #fff;
    color: #1266AF;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-support-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    gap: 12px;
}

/* Sidebar Widgets (reuse from blog) */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: #001533;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1266AF;
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #1266AF;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e4e4e4;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #555;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.categories-widget a:hover {
    color: #1266AF;
    padding-right: 10px;
}

.categories-widget span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-item {
    background: #f5f5f5;
    color: #555;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-cloud-item:hover {
    background: #1266AF;
    color: #fff;
}

/* Newsletter Widget */
.newsletter-widget p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.newsletter-widget button {
    width: 100%;
    padding: 12px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-widget button:hover {
    background: #005baa;
}

/* Responsive */
@media (max-width: 992px) {
    .error-digit {
        font-size: 80px;
    }
    
    .error-header h1 {
        font-size: 28px;
    }
    
    .contact-support-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .error-header {
        padding: 60px 0;
    }
    
    .error-digit {
        font-size: 60px;
        gap: 10px;
    }
    
    .error-header h1 {
        font-size: 24px;
    }
    
    .error-header p {
        font-size: 16px;
    }
    
    .error-search-box {
        padding: 30px 20px;
    }
    
    .error-search-box h3 {
        font-size: 20px;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .recent-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .error-layout {
        flex-direction: column;
    }
    
    .error-sidebar {
        order: 2;
    }
    
    .error-content-wrapper {
        order: 1;
    }
}

@media (max-width: 576px) {
    .error-digit {
        font-size: 40px;
        gap: 5px;
    }
    
    .error-header h1 {
        font-size: 20px;
    }
    
    .error-search-form {
        flex-direction: column;
    }
    
    .error-search-form button {
        justify-content: center;
    }
    
    .suggestion-card {
        padding: 25px 20px;
    }
    
    .contact-support-box i {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .contact-support-content h4 {
        font-size: 18px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: #1266AF;
    font-weight: 600;
    font-size: 18px;
}

.section-title h2 {
    margin: 10px 0 0;
    font-size: 32px;
    color: #001533;
}

.blog-inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-inner .blog-card {
    background: white;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.blog-card-inner .blog-card-thumb{
  width: 100%;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-card h3 {
    margin: 15px 0 12px;
    font-size: 18px;
    color: #001533;
}

.blog-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-card a {
    color: #005baa;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-card a:hover {
    gap: 10px;
    color: #1266AF;
}

.section-more {
    text-align: center;
    padding: 50px 0 0;
}

.section-more a {
    padding: 12px 32px;
    background: #005baa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #005baa;
    text-decoration: none;
}

.section-more a:hover {
    background: transparent;
    color: #005baa;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .blog-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 22px;
    }
    
    .blog-card {
        padding: 20px;
    }
    
    .blog-card h3 {
        font-size: 16px;
    }
    
    .blog-card p {
        font-size: 14px;
    }
}

/* Cart Page Styles */
.cart-header {
    background: linear-gradient(rgba(0, 21, 51, 0.85), rgba(0, 21, 51, 0.85));
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.cart-header p {
    font-size: 16px;
    opacity: 0.9;
}

.cart-page {
    padding: 0 0 80px;
}

/* Cart Table */
.cart-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cart-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    color: #001533;
    font-weight: 600;
    border-bottom: 2px solid #1266AF;
}

.cart-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
    vertical-align: middle;
}

.cart-table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: #001533;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #1266AF;
}

.remove-btn {
    color: #dc3545;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.remove-btn:hover {
    color: #c82333;
    transform: scale(1.1);
}

/* Quantity Input */
.cart-table .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
}

.cart-table .quantity .qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
}

.cart-table .quantity .qty:focus {
    outline: none;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
    margin-bottom: 40px;
}

.coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.coupon input {
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Vazirmatn', sans-serif;
    min-width: 200px;
}

.coupon input:focus {
    outline: none;
    border-color: #1266AF;
}

.coupon-btn,
.update-cart-btn {
    padding: 12px 25px;
    background: #1266AF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coupon-btn:hover,
.update-cart-btn:hover {
    background: #005baa;
    transform: translateY(-2px);
}

.update-cart-btn {
    background: #6c757d;
}

.update-cart-btn:hover {
    background: #5a6268;
}

/* Cart Totals */
.cart-collaterals {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cart-totals {
    width: 100%;
    max-width: 450px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.cart-totals-inner h2 {
    font-size: 20px;
    color: #001533;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1266AF;
}

.totals-details {
    margin-bottom: 25px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e4e4e4;
}

.totals-label {
    color: #666;
}

.totals-value {
    color: #001533;
    font-weight: 600;
}

.grand-total {
    border-bottom: none;
    font-size: 18px;
    padding-top: 15px;
}

.grand-total .totals-label,
.grand-total .totals-value {
    font-weight: 700;
    color: #1266AF;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    font-size: 80px;
    color: #1266AF;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 28px;
    color: #001533;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

.empty-cart-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.shop-now-btn,
.back-home-btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.shop-now-btn {
    background: #1266AF;
    color: #fff;
}

.shop-now-btn:hover {
    background: #005baa;
    transform: translateY(-2px);
}

.back-home-btn {
    background: #f5f5f5;
    color: #001533;
}

.back-home-btn:hover {
    background: #e4e4e4;
    transform: translateY(-2px);
}

/* Popular Products in Empty Cart */
.popular-products {
    margin-top: 40px;
    text-align: right;
}

.popular-products h3 {
    font-size: 20px;
    color: #001533;
    margin-bottom: 20px;
}

.popular-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.popular-product-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popular-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.popular-product-card a {
    text-decoration: none;
}

.popular-product-thumb {
    height: 150px;
    overflow: hidden;
}

.popular-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-product-card:hover .popular-product-thumb img {
    transform: scale(1.05);
}

.popular-product-info {
    padding: 15px;
    text-align: center;
}

.popular-product-info h4 {
    font-size: 14px;
    color: #001533;
    margin-bottom: 8px;
}

.popular-product-info .price {
    font-size: 14px;
    font-weight: 700;
    color: #1266AF;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-wrapper {
        padding: 20px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 15px 10px;
    }
    
    .cart-table .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .cart-header h1 {
        font-size: 28px;
    }
    
    .cart-wrapper {
        padding: 15px;
    }
    
    /* Make table responsive */
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody tr {
        display: block;
        margin-bottom: 30px;
        border: 1px solid #e4e4e4;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 12px 15px;
        border-bottom: 1px solid #e4e4e4;
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #001533;
    }
    
    .product-thumbnail {
        justify-content: flex-start;
    }
    
    .product-quantity .quantity {
        margin: 0;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .coupon {
        width: 100%;
    }
    
    .coupon input {
        flex: 1;
    }
    
    .update-cart-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cart-totals {
        max-width: 100%;
    }
    
    .empty-cart h2 {
        font-size: 24px;
    }
    
    .popular-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cart-header h1 {
        font-size: 24px;
    }
    
    .empty-cart-icon {
        font-size: 60px;
    }
    
    .empty-cart h2 {
        font-size: 20px;
    }
    
    .popular-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Quantity Controls */
.cart-item .quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.cart-item .quantity-btn {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cart-item .quantity-btn:hover {
    background: #1266AF;
    color: #fff;
}

.cart-item .quantity-input {
    width: 60px;
    height: 35px;
    border: none;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    text-align: center;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
}

.cart-item .quantity-input:focus {
    outline: none;
}

/* Spinner animation */
.ph-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Us Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 21, 51, 0.85), rgba(0, 21, 51, 0.85));
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e4e4e4;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.breadcrumb-inner a {
    color: #1266AF;
    text-decoration: none;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

/* About Intro */
.about-intro {
    padding: 0 0 60px;
}

.about-intro-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-intro-content {
    flex: 1;
    min-width: 300px;
}

.about-intro-content span {
    color: #1266AF;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.about-intro-content h2 {
    font-size: 36px;
    color: #001533;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-intro-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #1266AF;
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(18, 102, 175, 0.3);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: #001533;
    color: #fff;
    padding: 60px 0;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 48px;
    color: #1266AF;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Company Story */
.company-story {
    padding: 0 0 60px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.story-content h2 {
    font-size: 32px;
    color: #001533;
    margin-bottom: 20px;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Milestones */
.milestones {
    background: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #1266AF;
    font-weight: 600;
    font-size: 18px;
}

.section-title h2 {
    font-size: 36px;
    color: #001533;
    margin-top: 10px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 2px;
    background: #1266AF;
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-year {
    display: inline-block;
    background: #1266AF;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: #001533;
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #1266AF;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(18, 102, 175, 0.3);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: calc(50% - 10px);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: calc(50% - 10px);
}

/* Values Section */
.values-section {
    padding: 0 0 60px;
}

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

.value-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: #1266AF;
}

.value-icon {
    font-size: 56px;
    color: #1266AF;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #001533;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Certifications */
.certifications {
    padding: 0 0 60px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.cert-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cert-item img {
    max-height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.cert-item h4 {
    color: #001533;
    font-size: 16px;
    margin-bottom: 5px;
}

.cert-item p {
    color: #666;
    font-size: 13px;
}

.view-all-certs-btn {
    display: inline-block;
    background: #1266AF;
    color: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-certs-btn:hover {
    background: #005baa;
    transform: translateY(-2px);
}

/* Call to Action */
.cta-section {
    background: #1266AF;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .cta-btn-primary {
    background: #fff;
    color: #1266AF;
}

.cta-btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #1266AF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Customers Section */
.customers {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

/* Responsive */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 42px;
    }
    
    .about-intro-content h2 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-right: 80px !important;
        margin-left: 0 !important;
    }
    
    .timeline-dot {
        right: 20px !important;
        left: auto !important;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .about-intro-content h2 {
        font-size: 28px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 20px;
        bottom: -15px;
        left: -15px;
    }
    
    .experience-badge .years {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .about-intro-content h2 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

 .page-header {
            background: linear-gradient(rgba(0, 21, 51, 0.85), rgba(0, 21, 51, 0.85));
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            margin-bottom: 60px;
        }

        text .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
            color: #fff;
        }

        .page-header p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            border-bottom: 1px solid #e4e4e4;
        }

        .breadcrumb-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .breadcrumb-inner a {
            color: #1266AF;
            text-decoration: none;
        }

        .breadcrumb-inner a:hover {
            text-decoration: underline;
        }

        .breadcrumb-inner i {
            color: #999;
            font-size: 12px;
        }

        /* Contact Info Cards */
        .contact-info-cards {
            padding: 0 0 40px;
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .info-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-bottom-color: #1266AF;
        }

        .info-card-icon {
            width: 70px;
            height: 70px;
            background: #e8f0fe;
            color: #1266AF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .info-card:hover .info-card-icon {
            background: #1266AF;
            color: #fff;
        }

        .info-card h3 {
            color: #001533;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .info-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 5px;
        }

        .info-card .phone-number {
            direction: ltr;
            display: inline-block;
        }

        /* Contact Form & Map Section */
        .contact-main {
            padding: 0 0 60px;
        }

        .contact-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-form-wrapper {
            flex: 1.5;
            min-width: 300px;
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-map-wrapper {
            flex: 1;
            min-width: 300px;
        }

        .form-title {
            color: #001533;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: #666;
            margin-bottom: 30px;
        }

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

        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e4e4e4;
            border-radius: 8px;
            font-family: 'Vazirmatn', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1266AF;
            box-shadow: 0 0 0 3px rgba(18, 102, 175, 0.1);
        }

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

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .checkbox-group input {
            width: auto;
            accent-color: #1266AF;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-weight: 400;
            color: #555;
        }

        .submit-btn {
            background: #1266AF;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 15px 40px;
            font-family: 'Vazirmatn', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #005baa;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(18, 102, 175, 0.3);
        }

        .submit-btn i {
            font-size: 20px;
        }

        /* Map Card */
        .map-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .map-card h3 {
            color: #001533;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            margin: 20px 0;
            border: 1px solid #e4e4e4;
        }

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

        .map-address {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .map-address i {
            color: #1266AF;
            font-size: 20px;
            flex-shrink: 0;
        }

        .map-address p {
            color: #555;
            line-height: 1.7;
        }

        .direction-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1266AF;
            font-weight: 600;
            margin-top: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .direction-btn:hover {
            gap: 12px;
            color: #005baa;
        }

        /* Business Hours */
        .business-hours {
            background: #f8f9fa;
            padding: 60px 0;
            margin-bottom: 0;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .hours-content h2 {
            color: #001533;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .hours-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .hours-table {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #e4e4e4;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 600;
            color: #001533;
        }

        .hours-time {
            color: #1266AF;
            font-weight: 500;
        }

        .hours-note {
            margin-top: 20px;
            color: #666;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hours-note i {
            color: #1266AF;
        }

        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
            background: #fff;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .faq-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .faq-question i {
            color: #1266AF;
            font-size: 20px;
        }

        .faq-question h4 {
            color: #001533;
            font-size: 16px;
            margin: 0;
        }

        .faq-answer {
            color: #555;
            line-height: 1.7;
            margin-right: 32px;
        }

        /* Representatives Section */
        .representatives {
            padding: 60px 0;
            background: #f8f9fa;
        }

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

        .rep-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .rep-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .rep-icon {
            width: 70px;
            height: 70px;
            background: #e8f0fe;
            color: #1266AF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
        }

        .rep-card h4 {
            color: #001533;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .rep-city {
            color: #1266AF;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .rep-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #555;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .rep-detail i {
            color: #1266AF;
        }

        .rep-detail .phone-number {
            direction: ltr;
        }

        /* Social Section */
        .social-section {
            padding: 60px 0;
            text-align: center;
            background: #fff;
        }

        .social-icons-large {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 30px 0 20px;
            flex-wrap: wrap;
        }

        .social-icon-large {
            width: 70px;
            height: 70px;
            background: #f5f5f5;
            color: #1266AF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: all 0.3s ease;
        }

        .social-icon-large:hover {
            background: #1266AF;
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(18, 102, 175, 0.3);
        }

        .social-text {
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 42px;
            }

            .form-title {
                font-size: 22px;
            }

            .hours-content h2 {
                font-size: 28px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .page-header p {
                font-size: 16px;
            }

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

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .rep-card {
                padding: 25px 20px;
            }

            .social-icon-large {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 28px;
            }

            .info-card {
                padding: 25px 20px;
            }

            .info-card-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .form-title {
                font-size: 20px;
            }

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

            .faq-item {
                padding: 20px;
            }

            .faq-question h4 {
                font-size: 15px;
            }

            .faq-answer {
                font-size: 14px;
            }
        }

        /* Product Card Enhancements */
.product-card {
    position: relative;
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
}

.product-icon-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(18, 102, 175, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-overlay {
    background: #1266AF;
    transform: scale(1.1);
}

.product-card .product-info {
    text-align: center;
    padding: 15px;
}

.product-count {
    display: inline-block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
