/*
Theme Name: Perason
Theme URI: https://perason.vn
Description: Custom WordPress theme for Perason company, based on classic theme structure with configurable options.
Author: Your Name
Version: 1.0.0
Text Domain: perason
*/

/* Import Bootstrap CSS from CDN */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Refined theme colors + polished styles (match PDF/image visual identity) */
:root{
  --primary: #0b4a7a;       /* main blue (navbar / accents) */
  --primary-600: #08355a;   /* darker hero overlay */
  --accent: #ff6b00;        /* orange accent from PDF */
  --soft-bg: #f4f9ff;       /* very light blue background sections */
  --navy: #06283b;          /* footer / deep background */
  --muted: #6b7a86;         /* secondary text */
  --card-border: #e7eff8;
  --glass: rgba(11,74,122,0.75);
  --btn-gradient-start: #0b4a7a;
  --btn-gradient-end: #08355a;
  --white-08: rgba(255,255,255,0.08);
  --blue-secondary: #0075FF;
}

.btn-primary{
    background: var(--primary);
}
.btn-padding{
    padding: 10px 15px;
}
.p-50{
    padding: 50px;
}
.bg-blue-secondary{
    background-color: var(--blue-secondary);
}

/* Base */
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#22313a;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}
h1{
    font-size: 2rem;
}
.text-primary{
    color: #3E74C0;
}
/* Header / Navbar */
.navbar{background:#fff}
.navbar .navbar-brand img{height:50px}
.sub-nav{
  background:var(--primary);
  color:#fff;
  font-size:13px;
  padding:8px 0;
}
.sub-nav a{color:rgba(255,255,255,0.9); text-decoration:none}
.navbar .nav-link{color:var(--muted); padding:.5rem 1rem}
.navbar .nav-link:hover{color:var(--primary)}

/* Hero */
.hero{ position:relative; min-height:420px; display:flex; align-items:center; overflow:hidden; }
.hero-bg{ width:100%; height:100%; object-fit:cover; display:block; filter:contrast(0.95) brightness(0.7); }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,53,90,0.75) 0%, rgba(11,74,122,0.65) 100%);
  mix-blend-mode: multiply;
}
.hero-content{
  position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) !important;
    z-index:3;
    color:#fff;
    text-align:center;
    max-width:980px;
    padding:28px;
}
.hero-content h1{
  font-weight:700; font-size:2rem; letter-spacing:.3px;
  text-shadow:0 6px 18px rgba(3,18,35,0.35);
}
.hero-content p{opacity:.95; margin-top:.6rem; margin-bottom:1rem}

/* Section subtitles & headings */
.section-subtitle{ 
  color: var(--accent); 
  letter-spacing:  1px; 
  font-weight: 600; 
  text-transform: uppercase; 
  font-size: 20px; 
  margin-bottom: 0.6rem; 
}
h2,h3{ color:#0e2b3b; font-weight:700; margin-bottom:1rem; }
.section{ padding:4.5rem 0; }

/* Product cards */
.product-card{
  border:1px solid var(--card-border);
  border-radius:12px;
  transition:transform .18s ease, box-shadow .18s ease;
  background:#fff;
  overflow:hidden;
}
.product-card .card-img-top{ background:#fff; padding:18px; height:230px; object-fit:cover; }
.product-card:hover{ transform:translateY(-8px); box-shadow: 0 18px 40px rgba(9,34,60,0.08); }
.product-card .card-body{ padding:10px }
.product-card .card-title{ font-size:15px; font-weight:600; color:#163046; margin-bottom:.3rem }
.product-card .card-text{ font-size:13px; color:var(--muted) }

/* Light bg sections */
.bg-light, .bg-soft{ background:var(--soft-bg); }

/* Solutions / icons */
.icon-circle{
  width:123px; height:123px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#fff; color:var(--primary); font-size:26px;
  box-shadow:0 10px 24px rgba(8,53,90,0.06);
}

/* Gallery / Carousel */
.gallery-section{
  background: linear-gradient(180deg, var(--primary-600) 0%, var(--navy) 100%);
  padding:3.5rem 0;
  color:#fff;
  background-color: #243E5F;
  height: 724px;
}
.gallery-section .carousel-item img{ height:320px; object-fit:cover; border-radius:8px; }
.carousel-control-prev-icon,
.carousel-control-next-icon{ filter:brightness(3) }

/* Articles */
.article-card{ 
    border:1px solid var(--card-border); 
    border-radius:8px; 
    overflow:hidden; 
    padding: 10px;
}
.article-card img{ 
    height:260px; 
    object-fit:cover 
}
.article-card .card-body{ padding:14px }

/* FAQ / Accordion */
.accordion-button{ color:#0b3a57; }
.accordion-button:not(.collapsed){ background: linear-gradient(90deg, rgba(11,74,122,0.06), rgba(11,74,122,0.02)); }

/* CTA blue box */
.blue-cta{
  background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
  padding:28px;
  border-radius:12px;
  box-shadow: 0 12px 30px rgba(8,53,90,0.12);
}
.blue-cta h5{ color:#fff; margin-bottom:.5rem }
.blue-cta p{ color:rgba(255,255,255,0.92) }

/* Buttons */
.btn-primary{
  background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
  border: none;
  box-shadow: 0 8px 18px rgba(5,70,214,0.18);
}
.btn-outline-primary{
  color:var(--primary);
  border-color: rgba(11,74,122,0.12);
}

/* Footer */
footer{
  background-image: var(--bg-footer-url);
  background-size: cover;
  background-repeat: no-repeat;
  color: rgba(207,230,255,0.95);
  padding: 3.2rem 0 2.4rem;
  background-color: var(--primary-600);
  height: 600px;
  margin-top: 200px !important;
}
#footer{ 
    margin-top: 140px !important;
}
footer h6{ color:#d6e9ff; font-weight:700 }
footer .small, footer p{ color:rgba(207,230,255,0.8) }
.footer-top {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  margin-top: calc(-122px / 2);
  padding: 0;
}
.footer-logo{
  background-color: var(--accent);
  padding: 25px;
  box-shadow: -1px -7px 40px rgb(37 39 41 / 31%);
}
.footer-contact{
  background-color: #F4F4F4;
  height: 122px;
  width: 98%;
  margin-left: 2%;
  box-shadow: -1px -7px 40px rgb(37 39 41 / 31%);
}
.footer-contact i{
  display: block;
  margin-right: 20px;
}
.footer-contact .footer-contact-icon{
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  display: block;
  width: 40px;
  height: 40px;
  color: var(--accent);
}
footer ul li{
  padding: 5px 0;
}
footer ul li a{
  text-decoration: none;
  padding: 25px 0;
  color: #fff;
}
.footer-contact--heading{
  color: var(--accent);
}
.pl-100{
  padding-left: 100px !important;
}
.mright-100{
    margin-right: 30% !important;
}

/* Utility */
.text-orange{ color:var(--accent) }
.text-accent{ color:var(--accent) }

/* Accessibility / focus */
a:focus, button:focus, .accordion-button:focus{ outline:3px solid rgba(11,74,122,0.16); outline-offset:2px; }

/* Header top bar */
.bg-primary {
    background-color: #243E5F !important; /* Màu xanh đậm */
}

.bg-primary .container div {
    font-size: 14px;
    font-weight: 500;
}
.text-muted {
    color: #070707d1 !important; /* Màu chữ trắng nhạt */
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Tạo hiệu ứng đổ bóng */
    height: 80px;
}
.sub-nav {
    height: 56px;
}

.navbar-brand img {
    max-height: 50px; /* Giới hạn chiều cao logo */
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #333; /* Màu chữ */
    padding: 8px 35px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important; /* Màu xanh khi hover hoặc active */
}

.navbar-toggler {
    border: none;
}

/* Search form */
form.d-flex input {
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 5px 15px;
}
.search{
    position: relative;
}
.search input::placeholder{
    padding-left: 20px;
}
.search i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
}

form.d-flex button {
    border-radius: 20px;
    padding: 5px 15px;
}

/* Language selector */
.form-select {
    border-radius: 20px;
    padding: 5px 30px;
    font-size: 14px;
}
#navbarNav{
    margin-left: 10%;
}
#navbarNav .nav-item{
    margin-left: 20px;
}

.home-banner{
    height: 600px;
}
.bg-home-about{
    height: 754px;
    background-image: var(--bg-about-url);
    background-size: auto;
    background-position:bottom left;
    background-repeat: no-repeat;
}
.zIndex {
  z-index: 99;
}
.home-gp{
    margin-top: 100px;
}
.home-gp .col-6{
    z-index: 9;
}
.gp-line{
    z-index: 0;
}
.gp-line .icon-circle{
    z-index: 1;
}
.icon-circle-2{
    margin-top: -60px;
}

.icon-circle-4{
    margin-top: -60px;
}

#heroCarousel{
    width: 100%;
}

.home-banner .carousel-item {
  height: auto;
}

.home-banner .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.home-banner .carousel-caption {
  width: 80%;
  left: 0;
  right: 0;
  padding: 0 15%;
  background: #243e5fb8;
  align-content: center;
  border-radius: 10px;
}

.home-banner .carousel-indicators {
  z-index: 15;
}

.home-banner .carousel-control-prev,
.home-banner .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  z-index: 30;
  transition: background .18s ease, transform .12s ease;
  opacity: 1;
}
.carousel-control-prev{
    left: 5%;
}
.carousel-control-next{
    right: 5%;
}
.home-banner .carousel-control-prev:hover,
.home-banner .carousel-control-next:hover {
  background: rgba(0,0,0,0.6);
  transform: translateY(-50%) scale(1.03);
}

.home-banner .carousel-control-prev-icon,
.home-banner .carousel-control-next-icon {
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.btn-icon {
  position: relative;
  padding-right: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-icon::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 14' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 7H17.5'/%3E%3Cpath d='M17.5 7L11.5 1'/%3E%3Cpath d='M17.5 7L11.5 13'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.btn-icon-hover:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 14' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 7H17.5'/%3E%3Cpath d='M17.5 7L11.5 1'/%3E%3Cpath d='M17.5 7L11.5 13'/%3E%3C/svg%3E");
}

.btn-icon img{ display: none !important; }

.gallery-section{
    background-image: var(--bg-gallery-url);
}

/* Custom Gallery Carousel */
.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-track {
  position: relative;
  height: 450px;
  overflow: hidden;
  width: 100%;
}

.gallery-slide {
  width: 550px; /* Updated size from assets */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: filter 0.3s ease;
}

.gallery-slide.center {
  opacity: 1;
  z-index: 20;
  pointer-events: auto;
  filter: brightness(1) !important;
  width: 480px; /* Tăng thêm 100px từ 380px lên 480px */
  transform: translateX(-50%) translateY(-50%) scale(1.25); /* Enhanced scale from assets */
}

.gallery-slide.left, .gallery-slide.right {
  opacity: 0.8;
  z-index: 15;
  filter: brightness(0.7);
}

.gallery-slide.far-left, .gallery-slide.far-right {
  opacity: 0.5;
  z-index: 10;
  filter: brightness(0.5);
}

.gallery-slide.hide {
  opacity: 0;
  z-index: 1;
  filter: brightness(0.3);
}

/* Hover effects */
.gallery-slide:hover {
  cursor: pointer;
}

.gallery-slide.center:hover img {
  filter: brightness(1.1);
}

.gallery-slide.left:hover,
.gallery-slide.right:hover,
.gallery-slide.far-left:hover,
.gallery-slide.far-right:hover {
  opacity: 0.9;
  transform: translateX(-50%) translateY(-50%) scale(1.05);
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-prev:hover, .gallery-next:hover {
  background: rgba(255,255,255,0.3);
}

.gallery-prev { left: -24px; }
.gallery-next { right: -24px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}

.gallery-dots .dot {
  width: 32px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-dots .dot.active {
  background: #fff;
}

.gallery-dots .dot:hover {
  background: rgba(255,255,255,0.8);
}

.breadcrumb-banner {
  justify-content: center;
  text-align: center;
  width: 100%;
  background: transparent;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb-banner .breadcrumb-item+.breadcrumb-item::before{
  color: white;
}
.hero-content nav[aria-label="breadcrumb"] {
  display: flex;
  justify-content: center;
  width: 100%;
}

.accordion-button { font-size: 1rem; padding: .5rem 1rem; }
.accordion-body ul li a:hover { color: #0d6efd; background: #f5f5f5; border-radius: 4px; }
.product-category .accordion-item {
  /*padding: 10px 0;*/
}
.bg-gray {
    background-color: #F4F4F4 !important;
}

.about-values {
  position: relative;
  min-height: 648px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 648px;
}
.about-values-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  background: linear-gradient(90deg, rgba(8,53,90,0.75) 0%, rgba(11,74,122,0.65) 100%);
}
.about-value-box {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.bg-contact-gradient {
  background: linear-gradient(90deg, rgba(129,186,255,0.03) 0%, rgba(129,186,255,0.35) 50%, rgba(129,186,255,0.03) 100%);
}

/* WordPress Specific Styles */
.wp-block-group,
.wp-block-columns {
    margin-bottom: 2rem;
}

/* Customizer Live Preview */
.site-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
}

/* Custom Post Types */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    background: var(--primary, #0d6efd);
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--primary-600, #08355a);
    transform: translateY(-2px);
}

/* ==========================================
   APPLICATIONS PAGE STYLES
   ========================================== */

/* Sidebar Styles */
.sidebar-menu .sidebar-item {
  margin-bottom: 1px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-link:hover {
  background: var(--soft-bg);
  color: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
  padding-left: 20px;
}

.sidebar-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.sidebar-link:hover i {
  transform: translateX(3px);
}

.sidebar-submenu {
  background: #f8f9fa;
  border-radius: 5px;
  padding: 5px 0;
  margin-top: 5px;
  margin-left: 15px;
  border-left: 2px solid var(--primary);
}

.sidebar-sublink {
  display: block;
  padding: 8px 15px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.sidebar-sublink:hover {
  color: var(--primary);
  background: rgba(11, 74, 122, 0.05);
  padding-left: 20px;
  text-decoration: none;
}

/* Latest News in Sidebar */
.news-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.news-item:hover {
  padding-left: 10px;
}

.news-title a {
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--primary);
}

.news-item .text-muted {
  font-size: 12px;
}

/* Applications Grid */
.applications-grid {
  margin-top: 20px;
}

.application-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  margin-bottom: 25px;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.application-image img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.application-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.application-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.application-title a:hover {
  color: var(--primary);
}

.application-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.application-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #999;
}

.application-meta i {
  color: var(--primary);
  margin-right: 5px;
}

/* Applications Header */
.applications-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.applications-header h2 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

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

.custom-pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-pagination .page-item {
  margin: 0;
}

.custom-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  background: var(--soft-bg);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.custom-pagination .page-item.active .page-link {
  background: var(--primary) !important;
  color: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(11, 74, 122, 0.3);
}

.custom-pagination .page-item.active .page-link:hover {
  transform: none;
  background: var(--primary);
}

/* Ellipsis styling for truncated pagination */
.custom-pagination .page-item.disabled .page-link {
  background: transparent;
  border: none;
  color: #6c757d;
  cursor: default;
  font-weight: bold;
  padding: 0.5rem 0.25rem;
}

.custom-pagination .page-item.disabled:hover .page-link {
  background: transparent;
  color: #6c757d;
  transform: none;
}

/* Distinguish between page numbers and navigation buttons */
.pagination-btn {
  background: #f8f9fa !important;
  border: 2px solid #dee2e6 !important;
  color: #495057 !important;
  font-weight: 600 !important;
}

.pagination-btn:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}

.page-number {
  background: white !important;
  border: 1px solid #dee2e6 !important;
}

/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */

/* Services Grid */
.services-grid {
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}
.service-card .service-detail-btn i{
  color: #fff !important;
}

.applications-grid .service-detail-btn i{
  color: #fff !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.service-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Service Detail Button */
.service-detail-btn {
  background: var(--primary) !important;
  border: none !important;
  color: white !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.service-detail-btn:hover {
  background: #1e4080 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3) !important;
}

.service-detail-btn i {
  font-size: 0.8rem !important;
  transition: transform 0.3s ease !important;
}

.service-detail-btn:hover i {
  transform: translateX(3px) !important;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.service-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.service-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #999;
}

.service-meta i {
  color: var(--primary);
  margin-right: 4px;
}

/* Services Header */
.services-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.services-header h2 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Responsive Services Page */
@media (max-width: 991px) {
  .service-card {
    padding: 20px;
  }
  
  .service-image img {
    height: 140px;
  }
  
  .service-title {
    font-size: 1rem;
  }
  
  .service-excerpt {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
	.achievement-container{
		margin-bottom: 80px !important;
	}
	.home-about .row{
		        flex-direction: column-reverse !important;
	}
	.bg-home-about{
		height: auto !important;
	}
	.footer-logo img{
		margin-left: 27px;
	}
	.bg-partner{
	 background-size: cover !important;
     background-position: 48% !important;
	}
  .services-grid .row .col-5 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  
  .services-grid .row .col-7 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  
  .service-card {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .service-image img {
    height: 120px;
  }
  
  .service-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .service-detail-btn {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
  }
  
  .service-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  
  .service-excerpt {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .service-meta {
    gap: 10px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .services-grid .col-lg-6 {
    margin-bottom: 0;
  }
  
  .service-card .row {
    margin: 0;
  }
  
  .service-card .row [class*="col-"] {
    padding: 0 8px;
  }
  
  .service-image img {
    height: 118px;
    object-fit: cover;
  }
  
  .service-title {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .service-excerpt {
    font-size: 10px;
  }
  
  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Responsive Applications Page */
@media (max-width: 991px) {
  .application-card {
    padding: 20px;
  }
  
  .application-image img {
    height: 150px;
  }
  
  .application-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .applications-grid .application-meta{
    display: flex !important;
    flex-direction: row;
  }
  /* .service-detail-btn{
    display: none !important;
  } */
  .home-banner .carousel-control-prev, .home-banner .carousel-control-next{
    width: 35px !important;
    height: 35px !important;
  }
  .home-banner .carousel-control-prev-icon, .home-banner .carousel-control-next-icon{
    width: 16px !important;
    height: 16px !important;
  }
  .home-banner .hero-content{
    width: 90%;
  }
  .applications-grid .row .col-md-4 {
    margin-bottom: 0;
  }
  
  .applications-grid .row .col-md-8 {
    margin-top: 20px;
  }
  
  .application-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .application-image img {
    height: 200px;
  }
  
  .application-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .application-excerpt {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .sidebar-menu .sidebar-link {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .news-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  
  /* Pagination responsive */
  .custom-pagination .page-link,
  .pagination .page-link {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  
  .pagination-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  
  .page-number {
    min-width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .application-card .row {
    margin: 0;
  }
  
  .application-card .row [class*="col-"] {
    padding: 0;
  }
  
  .application-card .row .col-md-8 {
    margin-top: 15px;
  }
  
  .application-image img {
    height: 230px;
  }
	.document-thumbnail img{
		 height: 250px !important;
	}
  
  .application-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .custom-pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .sidebar-menu {
    margin-bottom: 30px;
  }
}

/* Responsive */
@media (max-width: 575px){
  .hero{ 
    min-height:260px ;
    align-items: unset;
  }
  .hero-content{ padding:16px }
  .gallery-section .carousel-item img{ height:220px }
  
  /* Gallery responsive - Mobile optimized */
  .gallery-carousel {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .gallery-track {
    height: 320px;
    overflow: visible; /* Show side slides on mobile */
  }
  
  .gallery-slide {
    width: 250px;
  }
  
  .gallery-container {
    height: 400px; /* Fixed height for mobile */
    position: relative;
    overflow: hidden;
  }
  
  .gallery-slide img {
    height: 350px;
    object-fit: cover; /* Ensure proper image scaling */
  }
  
  /* Mobile: Convert to normal slider (not multi-slide gallery) */
  .gallery-section {
    display: block !important; /* Ensure gallery is visible on mobile */
    visibility: visible !important;
  }
  
  .gallery-carousel {
    overflow: hidden; /* Hide slides outside container */
    position: relative;
  }
  
  .gallery-track {
    position: relative; /* For absolute positioning of slides */
    height: 400px; /* Match container height */
    overflow: hidden;
  }
  
  .gallery-slide {
    width: 100% !important; /* Full width for mobile slider */
    position: absolute !important; /* Stack slides on top of each other */
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    opacity: 0 !important; /* Hide all slides by default */
    transition: opacity 0.4s ease !important; /* Smooth fade transition */
    z-index: 1;
  }
  
  /* Only active/center slide visible in mobile */
  .gallery-slide.center {
    opacity: 1 !important; /* Only center slide visible */
    z-index: 2 !important;
  }
  
  /* Ensure other slides stay hidden in mobile */
  .gallery-slide.left,
  .gallery-slide.right,
  .gallery-slide.far-left,
  .gallery-slide.far-right {
    opacity: 0 !important; /* Hide side slides completely */
    z-index: 1 !important;
  }
  
  .gallery-slide img {
    width: 100%;
    height: 350px; /* Updated to match container */
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Mobile navigation buttons */
  .gallery-prev, .gallery-next {
    width: 50px;
    height: 50px;
    font-size: 18px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery-prev { 
    left: 15px; 
  }
  
  .gallery-next { 
    right: 15px; 
  }
  
  .gallery-prev:hover,
  .gallery-next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Mobile dots/indicators */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .gallery-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
  }
  
  .gallery-dots .dot:hover {
    background: rgba(255,255,255,0.7);
  }
  
  .gallery-dots .dot {
    width: 24px;
    height: 3px;
  }
  
  .home-banner{
    height: 460px;
  }
  .home-banner .carousel-caption{
    width: 90%;
    padding: 0 5%;
    font-size: 14px;
    height: 92%;
  }
  .home-banner .carousel-item{
    height: 460px;
    background: rgba(25, 7, 7, 0.423);
    width: 100%;
  }
  .bg-home-about{
    height: auto;
  }
  .home-about .row{
   flex-direction: column-reverse !important;
  }
  .gallery-section{
    display: none;
  }
  #footer{
    height: 1200px;
    margin-top: 100px !important;
  }
  .footer-top{
    flex-direction: column;
    height: auto;
    position: static;
    width: 90%;
  }
  .footer-top .footer-logo{
    width: 100%;
    margin-bottom: 15px;
  }
  .footer-top .footer-contact{
    width: 100%;
    flex-direction: column;
    height: auto;
  }
   .footer-top .footer-contact .align-items-center{
    width: 100%;
    height: 90px;
   }
  .mright-100{
    margin-right: 20px;
    margin-bottom: 2rem;
  }
}


/* Refined theme colors + polished styles (match PDF/image visual identity) */
:root{
  --primary: #0b4a7a;       /* main blue (navbar / accents) */
  --primary-600: #08355a;   /* darker hero overlay */
  --accent: #ff6b00;        /* orange accent from PDF */
  --soft-bg: #f4f9ff;       /* very light blue background sections */
  --navy: #06283b;          /* footer / deep background */
  --muted: #6b7a86;         /* secondary text */
  --card-border: #e7eff8;
  --glass: rgba(11,74,122,0.75);
  --btn-gradient-start: #0b4a7a;
  --btn-gradient-end: #08355a;
  --white-08: rgba(255,255,255,0.08);
  --blue-secondary: #0075FF;
}

.btn-primary{
    background: var(--primary);
}
.btn-padding{
    padding: 10px 15px;
}
.p-50{
    padding: 50px;
}
.bg-blue-secondary{
    background-color: var(--blue-secondary);
}
/* Base */

body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#22313a;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* Header / Navbar */
.navbar{background:#fff}
.navbar .navbar-brand img{height:50px}
.sub-nav{
  background:var(--primary);
  color:#fff;
  font-size:13px;
  padding:8px 0;
}
.sub-nav a{color:rgba(255,255,255,0.9); text-decoration:none}
.navbar .nav-link{color:var(--muted); padding:.5rem 1rem}
.navbar .nav-link:hover{color:var(--primary)}

/* Hero */
.hero{ position:relative; min-height:420px; display:flex; align-items:center; overflow:hidden; }
.hero-bg{ width:100%; height:100%; object-fit:cover; display:block; filter:contrast(0.95) brightness(0.7); }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,53,90,0.75) 0%, rgba(11,74,122,0.65) 100%);
  mix-blend-mode: multiply;
}
.hero-content{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  z-index:3; color:#fff; text-align:center;
  max-width:980px; padding:28px;
}
.hero-content h1{
  font-weight:700; font-size:2rem; letter-spacing:.3px;
  text-shadow:0 6px 18px rgba(3,18,35,0.35);
}
.hero-content p{opacity:.95; margin-top:.6rem; margin-bottom:1rem}


/* Section subtitles & headings */
.section-subtitle{ 
  color: var(--accent); 
  letter-spacing:  1px; 
  font-weight: 600; 
  text-transform: uppercase; 
  font-size: 20px; 
  margin-bottom: 0.6rem; 
}
h2,h3{ color:#0e2b3b; font-weight:700; margin-bottom:1rem; }
.section{ padding:4.5rem 0; }

/* Product cards */
.product-card{
  border:1px solid var(--card-border);
  border-radius:12px;
  transition:transform .18s ease, box-shadow .18s ease;
  background:#fff;
  overflow:hidden;
}
.product-card .card-img-top{ background:#fff; padding:18px; height:230px; object-fit:cover; }
.product-card:hover{ transform:translateY(-8px); box-shadow: 0 18px 40px rgba(9,34,60,0.08); }
.product-card .card-body{ padding:14px }
.product-card .card-title{ font-size:15px; font-weight:600; color:#163046; margin-bottom:.3rem }
.product-card .card-text{ font-size:13px; color:var(--muted) }

/* Light bg sections */
.bg-light, .bg-soft{ background:var(--soft-bg); }

/* Solutions / icons */
.icon-circle{
  width:123px; height:123px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#fff; color:var(--primary); font-size:26px;
  box-shadow:0 10px 24px rgba(8,53,90,0.06);
}

/* Gallery / Carousel */
.gallery-section{
  background: linear-gradient(180deg, var(--primary-600) 0%, var(--navy) 100%);
  padding:3.5rem 0;
  color:#fff;
  background-color: #243E5F;
  height: 724px;
}
.gallery-section .carousel-item img{ height:320px; object-fit:cover; border-radius:8px; }
.carousel-control-prev-icon,
.carousel-control-next-icon{ filter:brightness(3) }

/* Articles */
.article-card{ 
    border:1px solid var(--card-border); 
    border-radius:8px; 
    overflow:hidden; 
    padding: 10px;
}
.article-card img{ 
    height:260px; 
    object-fit:cover 
}
.article-card .card-body{ padding:14px }

/* FAQ / Accordion */
.accordion-button{ color:#0b3a57; }
.accordion-button:not(.collapsed){ background: linear-gradient(90deg, rgba(11,74,122,0.06), rgba(11,74,122,0.02)); }

/* CTA blue box */
.blue-cta{
  background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
  padding:28px;
  border-radius:12px;
  box-shadow: 0 12px 30px rgba(8,53,90,0.12);
}
.blue-cta h5{ color:#fff; margin-bottom:.5rem }
.blue-cta p{ color:rgba(255,255,255,0.92) }

/* Buttons */
.btn-primary{
  background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
  border: none;
  box-shadow: 0 8px 18px rgba(5,70,214,0.18);
}
.btn-outline-primary{
  color:var(--primary);
  border-color: rgba(11,74,122,0.12);
}

/* Footer */
footer{
  background-image: var(--bg-footer-url);
  background-size: cover;
  background-repeat: no-repeat;
  color: rgba(207,230,255,0.95);
  padding: 3.2rem 0 2.4rem;
  background-color: var(--primary-600);
  height: 600px;
  margin-top: 200px !important;
}
#footer{ 
    margin-top: 140px !important;
}
footer h6{ color:#d6e9ff; font-weight:700 }
footer .small, footer p{ color:rgba(207,230,255,0.8) }
.footer-top {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  margin-top: calc(-122px / 2);
  padding: 0;
}
.footer-logo{
  background-color: var(--accent);
  padding: 25px;
      box-shadow: -1px -7px 40px rgb(37 39 41 / 31%);
}
.footer-contact{
  background-color: #F4F4F4;
  height: 122px;
  width: 98%;
  margin-left: 2%;
      box-shadow: -1px -7px 40px rgb(37 39 41 / 31%);
}
.footer-contact i{
  display: block;
  margin-right: 20px;
}
.footer-contact .footer-contact-icon{
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  display: block;
  width: 40px;
  height: 40px;
  color: var(--accent);
}
footer ul li{
  padding: 5px 0;
}
footer ul li a{
  text-decoration: none;
  padding: 25px 0;
  color: #fff;
}
.footer-contact--heading{
  color: var(--accent);
}
.pl-100{
  padding-left: 100px !important;
}
.mright-100{
    margin-right: 30% !important;
}

/* Utility */
.text-orange{ color:var(--accent) }


/* Accessibility / focus */
a:focus, button:focus, .accordion-button:focus{ outline:3px solid rgba(11,74,122,0.16); outline-offset:2px; }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    font-size: 16px;
}
/* Header top bar */
.bg-primary {
    background-color: #243E5F !important; /* Màu xanh đậm */
}

.bg-primary .container div {
    font-size: 14px;
    font-weight: 500;
}
.text-muted {
    color: #070707d1 !important; /* Màu chữ trắng nhạt */
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Tạo hiệu ứng đổ bóng */
    height: 80px;
}
.sub-nav {
    height: 56px;
}

.navbar-brand img {
    max-height: 50px; /* Giới hạn chiều cao logo */
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #333; /* Màu chữ */
    padding: 8px 35px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important; /* Màu xanh khi hover hoặc active */
}

.navbar-toggler {
    border: none;
}

/* Search form */
form.d-flex input {
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 5px 15px;
}
.search{
    position: relative;
}
.search input::placeholder{
    padding-left: 20px;
}
.search i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
}

form.d-flex button {
    border-radius: 20px;
    padding: 5px 15px;
}

/* Language selector */
.form-select {
    border-radius: 20px;
    padding: 5px 30px;
    font-size: 14px;
}
#navbarNav{
    margin-left: 8%;
}
#navbarNav .nav-item{
    margin-left: 13px;
}

.home-banner{
    height: 600px;
}
.bg-home-about{
    height: 754px;
    background-image: var(--bg-about-url);
    background-size: auto;
    background-position: left;
    background-repeat: no-repeat;
}
.zIndex {
  z-index: 99;
}
.home-gp{
    margin-top: 100px;
}
.home-gp .col-6{
    z-index: 9;
}
.gp-line{
    z-index: 0;
}
.gp-line .icon-circle{
    z-index: 1;
}
.icon-circle-2{
    margin-top: -60px;
}

.icon-circle-4{
    margin-top: -60px;
}

#heroCarousel{
    width: 100%;
}

.home-banner .carousel-item {
  height: auto;
}

.home-banner .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.home-banner .carousel-caption {
  width: 80%;
  left: 0;
  right: 0;
  padding: 0 15%;
  background: #243e5fb8;
  align-content: center;
  border-radius: 10px;
}

.home-banner .carousel-indicators {
  z-index: 15;
}

.home-banner .carousel-control-prev,
.home-banner .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  z-index: 30;
  transition: background .18s ease, transform .12s ease;
  opacity: 1;
}
.carousel-control-prev{
    left: 5%;
}
.carousel-control-next{
    right: 5%;
}
.home-banner .carousel-control-prev:hover,
.home-banner .carousel-control-next:hover {
  background: rgba(0,0,0,0.6);
  transform: translateY(-50%) scale(1.03);
}

.home-banner .carousel-control-prev-icon,
.home-banner .carousel-control-next-icon {
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.btn-icon {
  position: relative;
  padding-right: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-icon::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  /* Use %23 for # in hex colors for URL encoding */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 14' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 7H17.5'/%3E%3Cpath d='M17.5 7L11.5 1'/%3E%3Cpath d='M17.5 7L11.5 13'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.btn-icon-hover:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 14' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 7H17.5'/%3E%3Cpath d='M17.5 7L11.5 1'/%3E%3Cpath d='M17.5 7L11.5 13'/%3E%3C/svg%3E");

}

.btn-icon img{ display: none !important; }

/* ...existing code... */
/* /tanhien/Desktop/outsource/2025/perason/layout/assets/css/style.css */
.gallery-section{
    background-image: var(--bg-gallery-url);
}
.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-track {
  position: relative;
  height: 420px;
    z-index: 0;
}
.gallery-slide {
  width: 400px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform 0.7s cubic-bezier(.4,1.4,.3,1), opacity 0.7s;
}
.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.gallery-slide.center {
  opacity: 1;
  transform: scale(1.15);
  z-index: 3;
  pointer-events: auto;
}
.gallery-slide.left, .gallery-slide.right {
    height: 350px;
    width: 350px;
  opacity: 0.7;
  transform: scale(0.9);
  z-index: 2;
    top: 5% !important;
}
.gallery-slide.hide {
  opacity: 0;
  transform: scale(0.7);
  z-index: 1;
}
.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-prev { left: -24px; }
.gallery-next { right: -24px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
.gallery-dots .dot {
  width: 32px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  border: none;
  cursor: pointer;
}
.gallery-dots .dot.active {
  background: #fff;
}

/* bg-partner */
/* Partners */
.partners {
  background: var(--primary-600);
  min-height: 360px;
  display: flex;
  align-items: center;
}
.bg-partner {
  background-image: var(--bg-partner-url);
      background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.partner-box {
  height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  min-width: 120px;
  margin: 0 auto;
  margin-right: 25px;
}
.partner-box img {
    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {
  .partners { min-height: 280px; }
  .partner-box { min-width: 90px; height: 40px; }
}

/* FAQ */
#faqAcc .accordion-button{
  background: #eee
}
.breadcrumb-banner {
  justify-content: center;
  text-align: center;
  width: 100%;
  background: transparent;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb-banner .breadcrumb-item+.breadcrumb-item::before{
  color: white;
}
.hero-content nav[aria-label="breadcrumb"] {
  display: flex;
  justify-content: center;
  width: 100%;
}

.accordion-button { font-size: 1rem; padding: .5rem 1rem; }
.accordion-body ul li a:hover { color: #0d6efd; background: #f5f5f5; border-radius: 4px; }
.product-category .accordion-item {
  /*padding: 10px 0;*/
}
.bg-gray {
      background-color: #F4F4F4 !important;
}
.product-cate-detail .accordion-button{
    padding: 5px 10px !important;
}

.about-values {
  position: relative;
  min-height: 648px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 648px;
}
.about-values-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  background: linear-gradient(90deg, rgba(8,53,90,0.75) 0%, rgba(11,74,122,0.65) 100%);

}
.about-value-box {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-value-box { padding: 18px 12px; }
}
.solution-service-box {
  background: #F7F7F7;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  min-height: 100%;
}
.solution-service-box:first-child {
  margin-right: 10px;
}
.solution-service-box:last-child {
  margin-left: 10px;
}
.solution-icon {
  background: #ff6f2c;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
}
.service-icon {
  background: #233a7b;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
}
.step-num {
    background: #fff;
    color: #233a7b;
    border-radius: 8px;
    font-weight: bold;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 2px;
}
.text-navy {
  color: #233a7b;
}
@media (max-width: 767px) {
  .solution-service-box { padding: 18px 10px; }
}

.why-perason-section {
  height: 700px;
  background-color: #19305a;
  padding: 60px 0;
  background-image: var(--bg-gallery-url);
}
.why-perason-list .why-icon {
  width: 40px;
  height: 40px;
  background: #233a7b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: 2px;
}
.why-perason-list h5 {
  font-size: 1.15rem;
}
.why-perason-list p {
  font-size: 0.98rem;
}
.why-perason-section .carousel-inner img {
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}
.why-perason-section .carousel-indicators {
  bottom: -30px;
}
.why-perason-section .carousel-indicators button {
  width: 32px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  border: none;
  margin: 0 3px;
}
.why-perason-section .carousel-indicators .active {
  background: #fff;
}
@media (max-width: 991px) {
  .why-perason-section .carousel-inner img { height: 220px; }
}

.bg-contact-gradient {
  background: linear-gradient(90deg, rgba(129,186,255,0.03) 0%, rgba(129,186,255,0.35) 50%, rgba(129,186,255,0.03) 100%);
}

/* Responsive */
@media (max-width: 480px){
  .btn-icon{ padding-right: 2rem; }
  .btn-icon::after{ right: 0.6rem; width:16px; height:16px; background-size:16px 16px; }
}

@media (max-width: 991px) {
  .row {
    --bs-gutter-x: 10px;
  }
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		--bs-gutter-x: 1.3rem
	}
}

@media (max-width: 575px) {
  .row {
    --bs-gutter-x: 6px;
  }
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		--bs-gutter-x: 1.3rem
	}
}
/* Responsive tweaks */
@media (max-width:991px){
/* 	#products .row>*{ 
	padding-right: 5px;
		padding-left: 5px;
	} */
/* 	.row>*{ 
		padding-right: 5px;
		padding-left: 5px;
	} */
  .hero{ min-height:300px }
  .hero-content h1{ font-size:1.45rem }
  .product-card .card-img-top{ height:180px; padding: 10px !important; }
}
@media (max-width:575px){
  .hero{ 
    min-height:260px ;
    align-items: unset;
  }
  .hero-content{ padding:16px }
  .gallery-section .carousel-item img{ height:220px }
  .home-banner{
    height: 460px;
  }
  .home-banner .carousel-caption{
    width: 90%;
    padding: 0 5%;
    font-size: 14px;
    height: 92%;
  }
  .home-banner .carousel-item{
    height: 460px;
    background: rgba(25, 7, 7, 0.423);
    width: 100%;
  }
  .bg-home-about{
    height: auto;
  }
  .home-about .row{
   flex-direction: column-reverse !important;
  }
  .solutions-section .gp-line{
    display: none;
  }
  .icon-circle-1{
    margin-top: unset;
  }
  .icon-circle-2{
    margin-top: unset;
  }
  .icon-circle-3{
    margin-top: unset;
  }
  .icon-circle-4{
    margin-top: unset;
  }

  .gallery-section{
    display: none;
  }
  #footer{
    height: 1300px;
    margin-top: 140px !important;
  }
  .footer-top{
    flex-direction: column;
    height: auto;
    position: static;
    width: 90%;
  }
  .footer-top .footer-logo{
    width: 100%;
    margin-bottom: 15px;
  }
  .footer-top .footer-contact{
    width: 100%;
    flex-direction: column;
    height: auto;
  }
   .footer-top .footer-contact .align-items-center{
    width: 100%;
    height: 90px;
   }
}

/* Enhanced Hero Slider Styles */
.hero-content {
  transition: all 0.8s ease !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(255,255,255,0.4) !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  margin: 0 4px !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.carousel-indicators .active {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  transform: scale(1.2) !important;
}

/* Enhanced carousel controls */
.home-banner .carousel-control-prev,
.home-banner .carousel-control-next {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(10px) !important;
  opacity: 0.8 !important;
  transition: all 0.3s ease !important;
}

.home-banner .carousel-control-prev:hover,
.home-banner .carousel-control-next:hover {
  background: rgba(0,0,0,0.7) !important;
  transform: translateY(-50%) scale(1.05) !important;
  opacity: 1 !important;
}

.home-banner .carousel-control-prev-icon,
.home-banner .carousel-control-next-icon {
  width: 24px !important;
  height: 24px !important;
  background-size: 24px 24px !important;
  filter: brightness(0) invert(1) !important;
}

/* Slider animation enhancements */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

/* .carousel-item.active .hero-content {
  animation: slideInUp 0.8s ease-out;
} */

@media (hover: none) and (pointer: coarse) {
  .home-banner .carousel-control-prev,
  .home-banner .carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hero:hover .carousel-control-prev,
  .hero:hover .carousel-control-next {
    opacity: 0.8;
  }
  
  /* Article cards responsive */
  .article-card img { 
    height: 220px; 
  }
}

/* About Page Specific Styles */

/* Solutions and Services Section */
.solution-service-box {
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.solution-icon, .service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
}

.step-num {
  background: var(--accent);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Why Choose Perason Section */
.why-perason-section {
  background-color: #19305a !important;
}

.why-perason-list li {
  margin-bottom: 2rem;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Carousel in Why section */
#whyPerasonCarousel img {
  height: 400px;
  object-fit: cover;
}

#whyPerasonCarousel .carousel-indicators {
  bottom: -50px;
}

#whyPerasonCarousel .carousel-indicators button {
  background-color: var(--accent);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* FAQ Section */
.accordion-item {
  border: 1px solid var(--card-border);
  margin-bottom: 0.5rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: #fff;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.accordion-body {
  padding: 1rem 1.25rem;
  background: #fff;
}

/* Quote CTA Section */
.bg-blue-secondary {
  background: linear-gradient(135deg, var(--blue-secondary) 0%, #0066e6 100%);
}

.btn-icon-hover {
  transition: all 0.3s ease;
}

.btn-icon-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* About Values Section (Vision/Mission) */
.about-values {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-values-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 48, 90, 0.85);
  z-index: 1;
}

.about-value-box {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .solution-service-box {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .why-perason-list {
    margin-bottom: 2rem;
  }
  
  .step-num {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }
  
  .why-icon {
    width: 40px;
    height: 40px;
  }
  
  #whyPerasonCarousel img {
    height: 250px;
  }
  
  .about-value-box {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .bg-blue-secondary .flex {
    flex-direction: column !important;
  }
  
  .bg-blue-secondary .w-50 {
    width: 100% !important;
    text-align: center;
  }
}

/* Mobile Menu Styles */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: white;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

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

/* Mobile Menu Container */
.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
/*   transform: translateX(100%); */
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--primary);
  color: white;
  min-height: 80px;
}

.mobile-menu-logo img {
  height: 40px;
  filter: brightness(0) invert(1); /* Make logo white */
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close i::before {
  content: "×" !important;
  font-family: Arial, sans-serif !important;
  font-size: 28px;
  font-weight: normal;
}

/* Mobile Menu Content */
.mobile-menu-content {
  padding: 0;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item.has-dropdown > .mobile-nav-link {
  position: relative;
}

.mobile-nav-link {
  display: block;
  padding: 18px 20px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-item.current-menu-item .mobile-nav-link {
  background-color: var(--soft-bg);
  color: var(--primary);
  padding-left: 30px;
}

.dropdown-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 12px;
}

.mobile-nav-item.has-dropdown.open .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  display: none;
}

.mobile-nav-item.has-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu .mobile-nav-item {
  border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-menu .mobile-nav-link {
  padding: 15px 20px 15px 40px;
  font-size: 15px;
  color: var(--muted);
}

.mobile-dropdown-menu .mobile-nav-link:hover {
  background-color: #e9ecef;
  padding-left: 50px;
}

/* Mobile Menu Contact Section */
.mobile-menu-contact {
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--muted);
}

.mobile-contact-item:last-child {
  margin-bottom: 0;
}

.mobile-contact-item i {
  width: 20px;
  margin-right: 12px;
  color: var(--accent);
}

.mobile-contact-item span {
  font-size: 14px;
}

/* Mobile Menu Language Switcher */
.mobile-menu-language {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

/* Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* Mobile Menu Responsive */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .mobile-menu-container {
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-nav-link {
    font-size: 15px;
    padding: 16px 20px;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;

/* ==========================================
   NEWS DETAIL PAGE STYLES
   ========================================== */
   
.news-detail-section {
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.news-article {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.news-article .entry-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.news-article .entry-meta {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.news-article .entry-meta i {
  color: #6c757d;
}

.news-excerpt {
  font-size: 1.1em;
  color: #495057;
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.news-featured-image img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.news-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
}

.news-body p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.content-image {
  margin: 30px 0;
}

.content-image img {
  border: 1px solid #eee;
}

.news-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%) !important;
  border: none;
}

.news-cta h5 {
  font-weight: 600;
}

.news-cta .btn-light {
  background: white;
  color: var(--primary);
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.news-cta .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Sidebar Styles */
.news-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.sidebar-categories li {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}

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

.sidebar-categories a {
  color: #495057;
  transition: color 0.3s ease;
}

.sidebar-categories a:hover {
  color: var(--primary);
}

.sidebar-categories a:hover i {
  transform: translateX(3px);
}

.sidebar-categories i {
  transition: transform 0.3s ease;
}

.latest-news .news-item {
  transition: background 0.3s ease;
  padding: 10px;
  border-radius: 5px;
  margin: 0 -10px 15px -10px;
}

.latest-news .news-item:hover {
  background: #f8f9fa;
}

.latest-news .news-item h6 {
  font-size: 0.9rem;
  line-height: 1.4;
}

.latest-news .news-item a {
  color: #495057;
  transition: color 0.3s ease;
}

.latest-news .news-item a:hover {
  color: var(--primary);
}

/* Related Posts */
.related-posts h4 {
  color: #2c3e50;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.related-posts h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.related-posts .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-posts .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-posts .card-title a:hover {
  color: var(--primary) !important;
}

/* Tags */
.post-tags .badge {
  font-size: 0.8rem;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  background: #f8f9fa !important;
  color: #6c757d !important;
  transition: all 0.3s ease;
}

.post-tags .badge:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .news-article {
    padding: 25px 20px;
    margin: 0 -15px 20px -15px;
    border-radius: 0;
  }
  
  .news-article .entry-title {
    font-size: 1.5rem;
  }
  
  .news-cta {
    text-align: center;
  }
  
  .news-cta .col-md-4 {
    text-align: center !important;
    margin-top: 20px;
  }
  
  .sidebar-widget {
    margin-bottom: 20px;
  }
  
  .news-sidebar {
    position: static;
    margin-top: 30px;
  }
}

/* ==========================================
   NEWS PAGE STYLES
   ========================================== */

/* News Listing Section */
.news-listing-section {
  background: #f8f9fa;
  min-height: calc(100vh - 500px);
}

.news-grid .row {
  margin: 0 -15px;
}

/* News Grid Reset */
.news-grid .col-lg-4,
.news-grid .col-md-6,
.news-grid .col-sm-12 {
  padding: 0 15px !important;
}

.news-grid article,
.news-grid .news-card {
  margin: 0 !important;
  padding: 0 !important;
}

.news-grid .col-lg-4,
.news-grid .col-md-6,
.news-grid .col-sm-12 {
  padding: 0 15px;
}

/* News Card Styles - High Specificity */
.container .news-grid .news-card,
article.news-card {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid #e9ecef !important;
}

.container .news-grid .news-card:hover,
article.news-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.container .news-grid .news-card .news-card-image,
article.news-card .news-card-image {
  position: relative !important;
  overflow: hidden !important;
  height: 220px !important;
  background: #f8f9fa !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.container .news-grid .news-card .news-card-image .card-img,
.container .news-grid .news-card .news-card-image img,
article.news-card .news-card-image .card-img,
article.news-card .news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.container .news-grid .news-card:hover .news-card-image .card-img,
.container .news-grid .news-card:hover .news-card-image img,
article.news-card:hover .news-card-image .card-img,
article.news-card:hover .news-card-image img {
  transform: scale(1.05) !important;
}

.container .news-grid .news-card .news-card-content,
article.news-card .news-card-content {
  padding: 25px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Handle broken images */
.news-card-image img[src=""],
.news-card-image img:not([src]),
.news-card-image img[src*="placeholder"] {
  background: #f8f9fa;
  position: relative;
}

.news-card-image img[src=""]::before,
.news-card-image img:not([src])::before,
.news-card-image img[src*="placeholder"]::before {
  content: "📰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #6c757d;
}

.news-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-card-title a {
  color: #2c3e50;
  transition: color 0.3s ease;
}

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

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #6c757d;
}

.news-card-meta i {
  color: var(--primary);
}

.news-card-excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Universal Pagination Styles (Applications, News, Products, Archive, Search) */
.pagination-nav,
.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 30px;
}

.custom-pagination,
.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-pagination .page-item,
.pagination .page-item {
  margin: 0;
}

.custom-pagination .page-link,
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover,
.pagination .page-link:hover {
  background: var(--soft-bg);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  text-decoration: none;
}

.custom-pagination .page-item.active .page-link,
.pagination .page-item.active .page-link {
  background: var(--primary) !important;
  color: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(11, 74, 122, 0.3);
}

.custom-pagination .page-item.active .page-link:hover,
.pagination .page-item.active .page-link:hover {
  transform: none;
  background: var(--primary);
}

/* Legacy support for old pagination styles */
.pagination-wrapper {
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
}

.pagination-btn:hover {
  background: var(--soft-bg);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  text-decoration: none;
}

.pagination-numbers {
  gap: 5px;
  margin: 0 10px;
}

.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.page-number:hover {
  background: var(--soft-bg);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  text-decoration: none;
}

.page-number.current {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(11, 74, 122, 0.3);
  cursor: default;
  font-weight: 500;
}

.page-dots {
  color: #6c757d;
  padding: 0 5px;
  font-weight: normal;
}

/* CTA Section */
.news-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  padding: 60px 0;
  margin-top: 50px;
}

.news-cta-section .cta-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.news-cta-section .cta-title {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-cta-section .cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.news-cta-section .cta-button {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.news-cta-section .cta-button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* No Posts Found */
.no-posts-found {
  background: white;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-posts-found h3 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  
  .news-card-content {
    padding: 20px;
  }
  
  .news-card-title {
    font-size: 1.1rem;
  }
  
  .news-cta-section .cta-wrapper {
    padding: 30px 20px;
    text-align: center;
  }
  
  .news-cta-section .cta-title {
    font-size: 1.5rem;
  }
  
  .news-cta-section .col-md-4 {
    text-align: center !important;
    margin-top: 20px;
  }
  
  .pagination-wrapper {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .pagination-numbers {
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .news-grid .col-lg-4 {
    margin-bottom: 25px;
  }
  
  .news-card {
    margin: 0 -15px;
    border-radius: 8px;
  }
  
  .news-card-image {
    height: 250px !important;
  }
  
  .news-card-image .card-img,
  .news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .pagination-numbers .page-number {
    min-width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .pagination-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  /* Hide ellipsis on mobile for better spacing */
  .custom-pagination .page-item.disabled {
    display: none;
  }
  
  /* Show only essential pages on mobile */
  .custom-pagination {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .custom-pagination .page-link,
  .pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .news-cta-section .cta-title {
    font-size: 1.3rem;
  }
  
  .news-card-title {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .news-card-content {
    padding: 18px;
  }
}
    min-height: 70px;
  }
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Ensure mobile menu appears above other content */
.mobile-menu-overlay {
  z-index: 9999;
}

/* Fix for navbar on mobile */
/* Product Gallery Styles */
.product-image-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.product-image-gallery .d-flex {
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-main-slider {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure product images section stays within column bounds */
.col-lg-5 .product-image-gallery {
  max-width: 100%;
  overflow: hidden;
}

.col-lg-5 .product-image-gallery * {
  box-sizing: border-box;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 400px;
  width: 100%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.product-main-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-image-container:hover .product-main-image {
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.zoom-icon i {
  font-size: 16px;
}

/* Vertical Thumbnail Layout */
.product-image-gallery .d-flex {
  align-items: flex-start;
}

.product-thumbs-container {
  width: 80px;
  flex-shrink: 0;
  margin-right: 15px;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 80px;
}

/* Single image layout - no thumbnails */
.product-image-gallery .d-flex.single-image {
  justify-content: center;
}

.product-image-gallery .d-flex.single-image .main-image-container {
  max-width: 100%;
  width: 100%;
}

/* Hide thumbnails when only one image - fallback */
.product-image-gallery .d-flex:has(.product-thumbs-container:empty) .product-thumbs-container,
.product-image-gallery .d-flex .product-thumbs-container:empty {
  display: none;
}

/* When thumbnails are hidden, main image takes full width */
.product-image-gallery .d-flex:has(.product-thumbs-container:empty) .main-image-container,
.product-image-gallery .d-flex .product-thumbs-container:empty + .main-image-container {
  width: 100%;
}

.product-thumbs-slider-vertical {
  height: 400px;
  position: relative;
}

.product-thumbs-slider-vertical .swiper-wrapper {
  flex-direction: column;
}

.product-thumbs-slider-vertical .swiper-slide {
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 10px;
}

.product-thumbs-slider-vertical .product-thumb {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-thumbs-slider-vertical .product-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.product-thumbs-slider-vertical .product-thumb.swiper-slide-thumb-active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.product-thumbs-slider-vertical .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Navigation buttons for vertical thumbs */
.swiper-button-next-thumbs,
.swiper-button-prev-thumbs {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  margin-top: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-button-next-thumbs {
  bottom: -40px;
}

.swiper-button-prev-thumbs {
  top: -40px;
}

.swiper-button-next-thumbs::after,
.swiper-button-prev-thumbs::after {
  font-size: 12px;
  font-weight: bold;
}

.swiper-button-next-thumbs:hover,
.swiper-button-prev-thumbs:hover {
  background: white;
  transform: translateX(-50%) scale(1.1);
}

/* Main image container adjustments */
.main-image-container {
  height: 400px;
  width: calc(100% - 95px);
  max-width: calc(100% - 95px);
  overflow: hidden;
  position: relative;
  flex: 1;
}

.main-image-container .product-main-slider {
  height: 100%;
  width: 100%;
}

.main-image-container .swiper-wrapper {
  height: 100%;
  width: 100%;
}

.main-image-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.main-image-container .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}



.product-thumbs-slider {
  margin-top: 15px;
}

.product-thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f8f9fa;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-thumb:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.product-thumb.swiper-slide-thumb-active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

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

/* Swiper Navigation Buttons */
.product-main-slider .swiper-button-next,
.product-main-slider .swiper-button-prev {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-main-slider .swiper-button-next:hover,
.product-main-slider .swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.product-main-slider .swiper-button-next::after,
.product-main-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Zoom Modal Styles */
.modal-content .zoom-slider {
  max-height: 100vh;
}

.zoom-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 20px;
}

.zoom-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.zoom-slider .swiper-button-next,
.zoom-slider .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.zoom-slider .swiper-button-next:hover,
.zoom-slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.zoom-slider .swiper-pagination {
  bottom: 20px;
}

.zoom-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.zoom-slider .swiper-pagination-bullet-active {
  background: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-image-gallery .d-flex {
    flex-direction: column;
  }
  
  .product-thumbs-container {
    width: 100%;
    order: 2;
    margin-top: 15px;
    margin-right: 0;
    max-width: 100%;
  }
  
  .main-image-container {
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  
  .product-image-container {
    height: 300px;
  }
  
  .main-image-container {
    height: 300px;
  }
  
  .product-thumbs-slider-vertical {
    height: auto;
  }
  
  .product-thumbs-slider-vertical .swiper-wrapper {
    flex-direction: row;
  }
  
  .product-thumbs-slider-vertical .swiper-slide {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  .swiper-button-next-thumbs,
  .swiper-button-prev-thumbs {
    display: none;
  }
  
  .zoom-icon {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }
  
  .zoom-icon i {
    font-size: 14px;
  }
  
  .product-main-slider .swiper-button-next,
  .product-main-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17px;
  }
  
  .product-main-slider .swiper-button-next::after,
  .product-main-slider .swiper-button-prev::after {
    font-size: 14px;
  }
  
  .zoom-image-container {
    min-height: 50vh;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .zoom-slider .swiper-button-next,
  .zoom-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  
  .zoom-slider .swiper-button-next::after,
  .zoom-slider .swiper-button-prev::after {
    font-size: 14px;
  }
}

/* Documents Page Styles */
.documents-hero {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.documents-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
}

.documents-hero .container {
  position: relative;
  z-index: 2;
}

.document-category-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e9ecef;
}

.document-category-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.document-card {
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e9ecef !important;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15) !important;
  border-color: var(--primary) !important;
}

.document-thumbnail {
  position: relative;
  overflow: hidden;
}

.document-thumbnail img {
  transition: transform 0.3s ease;
}

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

.document-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.document-title a:hover {
  color: var(--primary) !important;
}

.document-description {
  line-height: 1.5;
  color: #6c757d;
}

.document-meta {
  font-size: 0.875rem;
}

.file-type {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}

.file-size {
  font-weight: 500;
}

.load-more-documents {
  position: relative;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.load-more-documents:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.load-more-documents:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.documents-grid .document-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.documents-grid .document-item:nth-child(1) { animation-delay: 0.1s; }
.documents-grid .document-item:nth-child(2) { animation-delay: 0.2s; }
.documents-grid .document-item:nth-child(3) { animation-delay: 0.3s; }
.documents-grid .document-item:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive Styles */
@media (max-width: 768px) {
  .documents-hero {
    padding: 40px 0;
  }
  
  .documents-hero .display-4 {
    font-size: 2rem;
  }
  
  .document-category-section {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .document-card {
    margin-bottom: 20px;
  }
  
  .load-more-documents {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .documents-grid .col-lg-3 {
    margin-bottom: 20px;
  }
  
  .document-card .card-body {
    padding: 15px;
  }
  
  .document-title {
    font-size: 1rem;
  }
  
  .document-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  /* Extra small mobile gallery adjustments */
  .gallery-container {
    height: 400px !important; /* Consistent with mobile */
  }
  
  .gallery-slide img {
    height: 350px !important;
    object-fit: cover !important;
  }
  
  .gallery-prev, .gallery-next {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  
  .gallery-prev { 
    left: 10px !important; 
  }
  
  .gallery-next { 
    right: 10px !important; 
  }
  
  .gallery-dots .dot {
    width: 10px !important;
    height: 10px !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
  
  /* Enhanced Mobile Menu Styles from assets */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* Enhanced Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-slide {
    width: 280px;
  }
  
  .gallery-slide.center {
    width: 350px;
    transform: translateX(-50%) translateY(-50%) scale(1.15);
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .about-text {
    font-size: 1.1rem;
  }
  
  .navbar.scrolled {
    padding: 0.75rem 0;
  }
}

a:focus{
    outline: none;
}

/* Footer Social Media Links - Fix underscore issue */
footer .text-white.me-3 {
  font-size: 0 !important; /* Hide any text content that might show "_" */
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

footer .text-white.me-3 i {
  font-size: 1.25rem !important; /* Restore icon size */
  line-height: 1;
  display: inline-block;
}

footer .text-white.me-3:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* === ACHIEVEMENT SECTION === */
.achievement-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 60px 0;
}

.achievement-container {
  position: relative;
  width: 600px;
  height: 500px;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  padding: 20px;
}

/* Achievement Blocks Positioning */
.achievement-block {
  position: absolute;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 25+ Years - Top Left */
.block-years {
  top: 0;
  left: 1%;
  width: 182px;
  height: 112px;
  background: white;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.block-years .achievement-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.block-years .achievement-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-left: 0.1rem;
}

.block-years .achievement-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 5px;
  font-weight: 500;
}

/* Top Right Image */
.top-right-image {
  position: absolute;
  top: 0;
  left: 35%;
  width: 150px;
  height: 150px;
  background: transparent;
  /* border: 2px solid #e5e7eb; */
  border-radius: 12px;
}
.top-right-image img{
  width: 100%;
  object-fit: cover;
}

/* Orange Icon - Left Middle */
.block-satisfaction {
  top: 25%;
  left: 18%;
  width: 80px;
  height: 80px;
  background: #ea580c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-satisfaction .achievement-icon {
  color: white;
  font-size: 1.5rem;
}

/* 99% - Left Bottom */
.block-satisfaction-text {
  top: 48%;
  left: -1%;
  width: 200px;
  height: 100px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.block-satisfaction-text .achievement-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.block-satisfaction-text .achievement-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-left: 0.1rem;
}

.block-satisfaction-text .achievement-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
  font-weight: 400;
}

/* Central P Logo */
.achievement-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #E3F0FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 2px solid #e2e8f0;
}

.center-icon {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Orange Icon - Right Top */
.block-countries {
  top: 29%;
    right: 19%;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-countries .achievement-icon {
  color: white;
  font-size: 1.5rem;
}

/* 200+ - Right Middle */
.block-countries-text {
  top: 48%;
    right: 1%;
    width: 190px;
    height: 100px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
}

.block-countries-text .achievement-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.block-countries-text .achievement-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-left: 0.1rem;
}

.block-countries-text .achievement-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
  font-weight: 400;
}

/* Bottom Left Image */
.bottom-left-image {
  position: absolute;
  bottom: -40px;
  left: 14%;
  width: 200px;
  height: 180px;
  background: transparent;
  border-radius: 12px;
}

/* 100% - Bottom Right */
.block-compliance-text {
    bottom: 7px;
    right: 21%;
    width: 182px;
    height: 136px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
}

.block-compliance-text .achievement-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.block-compliance-text .achievement-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-left: 0.1rem;
}

.block-compliance-text .achievement-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 5px;
  font-weight: 500;
}

/* Blue Icon - Bottom Right Corner */
.bottom-right-icon {
  position: absolute;
    bottom: 12%;
    right: 6%;
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

/* Achievement Content Styling */
.achievement-number {
  display: inline-block;
}

.achievement-suffix {
  display: inline-block;
  margin-left: 0.2rem;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-block.animate .achievement-number {
  animation: countUp 0.8s ease-out;
}

.achievement-block.animate .achievement-suffix {
  animation: countUp 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-perason-section{
    height: auto !important;
  }
  .achievement-section {
    padding: 60px 0;
    min-height: 550px;
  }
  
  .achievement-container {
    width: 100%;
    height: 500px;
    transform-origin: center top;
  }
  
  .block-years, .block-compliance {
    width: 280px;
    height: 140px;
    padding: 15px;
  }
  
  .block-satisfaction, .block-countries {
    width: 220px;
    height: 160px;
    padding: 20px;
  }
  
  .achievement-number {
    font-size: 2.5rem !important;
  }
  
  .achievement-suffix {
    font-size: 2rem !important;
  }
  
  .achievement-center {
    width: 80px;
    height: 80px;
  }
  
  .center-icon {
    font-size: 2rem;
  }
  
  .line {
    height: 3px;
  }
  
  .line-1, .line-2, .line-3, .line-4 {
    width: 120px;
  }
}

@media (max-width: 480px) {
  
  .achievement-number {
    font-size: 2rem !important;
  }
  
  .achievement-suffix {
    font-size: 1.5rem !important;
  }
}

/* === ACHIEVEMENT IN ABOUT SECTION RESPONSIVE === */

/* Tablet responsive (768px - 1024px) - x2 so với mobile */
@media (min-width: 768px) and (max-width: 1024px) {
	.bg-home-about{
		height: auto !important;
	}
	    .home-about .row {
        flex-direction: column-reverse !important;
    }
  .home-about .achievement-container {
    width: 100%;
    height: 600px;
    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
  }
  
  /* 25+ Years - Top Left */
  .home-about .block-years {
   width: 260px;
    height: 140px;
    padding: 16px;
    top: 0%;
    left: 0%;
  }
  
  .home-about .block-years .achievement-number,
  .home-about .block-years .achievement-suffix {
    font-size: 2rem;
  }
  
  .home-about .block-years .achievement-label {
    font-size: 1.2rem;
  }
  
  /* Top Right Image */
  .home-about .top-right-image {
    width: 180px;
    height: 180px;
    top: -2%;
    left: 52%;
  }
  
  /* Orange Icon - Left Middle */
  .home-about .block-satisfaction {
    width: 100px;
    height: 100px;
    top: 28%;
    left: 11%;
  }
  
  .home-about .block-satisfaction .achievement-icon img {
    width: 50px;
    height: 50px;
  }
  
  /* 99% - Left Bottom */
  .home-about .block-satisfaction-text {
    width: 230px;
    height: 140px;
    padding: 12px;
    top: 50%;
    left: -9%;
  }
  
  .home-about .block-satisfaction-text .achievement-number,
  .home-about .block-satisfaction-text .achievement-suffix {
    font-size: 2rem;
  }
  
  .home-about .block-satisfaction-text .achievement-label {
    font-size: 1.1rem;
  }
  
  /* Central P Logo */
  .home-about .achievement-center {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
  }
  
  .home-about .center-icon img {
    width: 116px !important;
    height: 160px !important;
  }
  
  /* Orange Icon - Right Top */
  .home-about .block-countries {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
  }
  
  .home-about .block-countries .achievement-icon img {
    width: 50px;
    height: 50px;
  }
  
  /* 200+ - Right Middle */
  .home-about .block-countries-text {
    width: 230px;
    height: 140px;
    padding: 12px;
    top: 50%;
    right: -9%;
  }
  
  .home-about .block-countries-text .achievement-number,
  .home-about .block-countries-text .achievement-suffix {
    font-size: 2.2rem;
  }
  
  .home-about .block-countries-text .achievement-label {
    font-size: 1.1rem;
  }
  
  /* Bottom Left Image */
  .home-about .bottom-left-image {
    width: 200px;
    height: 170px;
    bottom: -50px;
    left: 10%;
  }
  
  .home-about .bottom-left-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* 100% - Bottom Right */
  .home-about .block-compliance-text {
    width: 230px;
    height: 150px;
    padding: 12px;
    bottom: -4%;
    right: 17%;
  }
  
  .home-about .block-compliance-text .achievement-number,
  .home-about .block-compliance-text .achievement-suffix {
    font-size: 2.2rem;
  }
  
  .home-about .block-compliance-text .achievement-label {
    font-size: 1.1rem;
  }
  
  /* Blue Icon - Bottom Right Corner */
  .home-about .bottom-right-icon {
    width: 100px;
    height: 100px;
    bottom: 5%;
    right: -3%;
  }
  
  .home-about .bottom-right-icon img {
    width: 50px;
    height: 50px;
  }
}

/* Mobile responsive (max-width: 768px) - giữ nguyên */
@media (max-width: 576px) {
  .home-about .achievement-container {
    width: 100%;
    height: 350px;
    max-width: 350px;
    padding: 10px;
    margin: 0 auto;
  }
  
  /* 25+ Years - Top Left */
  .home-about .block-years {
   width: 130px;
    height: 70px;
    padding: 8px;
    top: 0%;
    left: 0%;
  }
  
  .home-about .block-years .achievement-number,
  .home-about .block-years .achievement-suffix {
    font-size: 1.1rem;
  }
  
  .home-about .block-years .achievement-label {
    font-size: 0.6rem;
  }
  
  /* Top Right Image */
  .home-about .top-right-image {
    width: 90px;
    height: 90px;
    top: -2%;
    left: 52%;
  }
  
  /* Orange Icon - Left Middle */
  .home-about .block-satisfaction {
    width: 50px;
    height: 50px;
    top: 28%;
    left: 11%;
  }
  
  .home-about .block-satisfaction .achievement-icon img {
    width: 25px;
    height: 25px;
  }
  
  /* 99% - Left Bottom */
  .home-about .block-satisfaction-text {
    width: 130px;
    height: 70px;
    padding: 6px;
    top: 50%;
    left: -17%;
  }
  
  .home-about .block-satisfaction-text .achievement-number,
  .home-about .block-satisfaction-text .achievement-suffix {
    font-size: 1.1rem;
  }
  
  .home-about .block-satisfaction-text .achievement-label {
    font-size: 0.55rem;
  }
  
  /* Central P Logo */
  .home-about .achievement-center {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
  }
  
  .home-about .center-icon img {
    width: 58px !important;
    height: 80px !important;
  }
  
  /* Orange Icon - Right Top */
  .home-about .block-countries {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 10%;
  }
  
  .home-about .block-countries .achievement-icon img {
    width: 25px;
    height: 25px;
  }
  
  /* 200+ - Right Middle */
  .home-about .block-countries-text {
    width: 125px;
    height: 70px;
    padding: 6px;
    top: 50%;
    right: -19%;
  }
  
  .home-about .block-countries-text .achievement-number,
  .home-about .block-countries-text .achievement-suffix {
    font-size: 1.1rem;
  }
  
  .home-about .block-countries-text .achievement-label {
    font-size: 0.55rem;
  }
  
  /* Bottom Left Image */
  .home-about .bottom-left-image {
    width: 100px;
    height: 85px;
    bottom: -25px;
    left: 12%;
  }
  
  .home-about .bottom-left-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* 100% - Bottom Right */
  .home-about .block-compliance-text {
    width: 120px;
    height: 85px;
    padding: 6px;
    bottom: -2%;
    right: 17%;
  }
  
  .home-about .block-compliance-text .achievement-number,
  .home-about .block-compliance-text .achievement-suffix {
    font-size: 1.1rem;
  }
  
  .home-about .block-compliance-text .achievement-label {
    font-size: 0.55rem;
  }
  
  /* Blue Icon - Bottom Right Corner */
  .home-about .bottom-right-icon {
    width: 50px;
    height: 50px;
    bottom: 5%;
    right: -3%;
  }
  
  .home-about .bottom-right-icon img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 576px) {
  .home-about .achievement-container {
    width: 100%;
    height: 300px;
    max-width: 300px;
  }
  
  /* Further reduce sizes for small mobile */
  .home-about .block-years {
    width: 100px;
    height: 65px;
    padding: 6px;
  }
  
  .home-about .block-years .achievement-number,
  .home-about .block-years .achievement-suffix {
    font-size: 0.95rem !important;
  }
  
  .home-about .block-years .achievement-label {
    font-size: 0.8rem !important;
  }
  
  .home-about .top-right-image {
    width: 90px;
    height: 90px;
  }
  
  .home-about .block-satisfaction,
  .home-about .block-countries {
    width: 42px;
    height: 42px;
  }
  
  .home-about .block-satisfaction .achievement-icon img,
  .home-about .block-countries .achievement-icon img {
    width: 20px;
    height: 20px;
  }
  
  .home-about .block-satisfaction-text,
  .home-about .block-countries-text {
    width: 130px;
    height: 70px;
    padding: 5px;
  }
  
  .home-about .block-satisfaction-text .achievement-number,
  .home-about .block-satisfaction-text .achievement-suffix,
  .home-about .block-countries-text .achievement-number,
  .home-about .block-countries-text .achievement-suffix {
    font-size: 0.95rem !important;
  }
  
  .home-about .block-satisfaction-text .achievement-label,
  .home-about .block-countries-text .achievement-label {
    font-size: 0.48rem !important;
  }
  
  .home-about .achievement-center {
    width: 100px;
    height: 100px;
  }
  
  .home-about .center-icon img {
    width: 42px;
    height: 42px;
  }
  
  .home-about .bottom-left-image {
    width: 85px;
    height: 72px;
  }
  
  .home-about .block-compliance-text {
    width: 100px;
    height: 72px;
    padding: 5px;
  }
  
  .home-about .block-compliance-text .achievement-number,
  .home-about .block-compliance-text .achievement-suffix {
    font-size: 0.95rem !important;
  }
  
  .home-about .block-compliance-text .achievement-label {
    font-size: 0.48rem !important;
  }
  
  .home-about .bottom-right-icon {
    width: 50px;
    height: 50px;
  }
  
  .home-about .bottom-right-icon img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .home-about .achievement-container {
    width: 100%;
    height: 280px;
    max-width: 280px;
  }
  
  /* Extra small adjustments */
  .home-about .block-years {
    width: 130px;
    height: 70px;
    padding: 4px;
  }
  
  .home-about .block-years .achievement-number,
  .home-about .block-years .achievement-suffix {
    font-size: 0.85rem;
  }
  
  .home-about .block-years .achievement-label {
    font-size: 0.45rem;
  }
  
  .home-about .top-right-image {
    width: 90px;
    height: 90px;
  }
  
  .home-about .block-satisfaction,
  .home-about .block-countries {
    width: 50px;
    height: 50px;
  }
  
  .home-about .block-satisfaction-text,
  .home-about .block-countries-text {
    width: 130px;
    height: 70px;
  }
  
  .home-about .achievement-center {
    width: 100px;
    height: 100px;
  }
  
  .home-about .center-icon img {
    width: 35px;
    height: 35px;
  }
  
  .home-about .bottom-left-image {
    width: 90px;
    height: 90px;
  }
  
  .home-about .block-compliance-text {
    width: 100px;
    height: 70px;
    background-color: #fff;
  }
  
  .home-about .bottom-right-icon {
    width: 50px;
    height: 50px;
  }
}

/* === ABOUT PAGE SPECIFIC STYLES === */
.about-page .achievement-container {
  display: none; /* Hide achievement section on about page */
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.value-icon {
  transition: transform 0.3s ease;
}

.card:hover .value-icon {
  transform: scale(1.1);
}

.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

/* ==========================================
   PRODUCT DETAIL STICKY SIDEBAR
   ========================================== */

.product-category-sticky {
  transition: all 0.3s ease;
}

/* Only enable sticky on desktop (min-width: 769px) */
@media (min-width: 769px) {
  .product-category-sticky.sticky-active {
    position: fixed !important;
    top: 13% !important;
    z-index: 1000 !important;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--primary) !important; */
  }
}

/* Ensure sticky is completely disabled on mobile */
.product-category-sticky.sticky-active {
    top: 150px !important;
  }
@media (max-width: 768px) {
  h1{
    font-size: 1.5rem;;
  }
  h2{
    font-size: 1.4rem;
  }
  h3{
    font-size: 1.3rem;
  }
  .why-perason-section{
    background-position: right !important;
  }
  .product-category-sticky.sticky-active {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
    /* border: 1px solid #e9ecef !important; */
    transform: none !important;
  }
  
  /* Disable any sticky behavior on mobile */
  .product-category-sticky {
    position: static !important;
  }
  .breadcrumb li{
    font-size: 12px;
  }
  .breadcrumb li a{
    font-size: 12px;
  }
}

.team-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.breadcrumb-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7);
}
.contact-cta .card{
  background-color: var(--primary);
}
.news-sidebar-item img{
  width: 130px !important;
  height: 100px !important;
}
.latest-applications .card-header{
    background-color: #0b4a7a !important;
    color: #fff;
    padding: 1rem;
}
.application-sidebar .card-header{
    background-color: #0b4a7a !important;
    color: #fff;
    padding: 1rem;
}
.service-sidebar .card-header{
    background-color: #0b4a7a !important;
    color: #fff;
    padding: 1rem;
}

.latest-services .card-header{
    background-color: #0b4a7a !important;
    color: #fff;
    padding: 1rem;
}
.product-thumbs-slider .swiper-slide {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
}
.product-thumbs-container .swiper-button-next, .product-thumbs-container .swiper-button-prev{
  display: none;
}

/* ==========================================
   LANGUAGE SWITCHER STYLES
   ========================================== */

.language-select-wrapper {
  margin-left: 15px;
}

.language-select-wrapper .btn-group {
  position: relative;
}

.language-select-wrapper .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 12px;
  white-space: nowrap;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  transition: all 0.3s ease;
}

.language-select-wrapper .btn:hover {
  border-color: var(--primary);
  background: #f8f9fa;
}

.language-select-wrapper .btn img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.language-select-wrapper .dropdown-menu {
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 4px;
  margin-top: 2px;
}

.language-select-wrapper .dropdown-item {
  padding: 0;
  border-radius: 6px;
  margin: 2px 0;
}

.language-select-wrapper .dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 14px;
}

.language-select-wrapper .dropdown-item a:hover {
  background: var(--soft-bg);
  color: var(--primary);
  text-decoration: none;
}

.language-select-wrapper .dropdown-item img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-select-wrapper {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .language-select-wrapper .btn {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .language-select-wrapper .dropdown-menu {
    min-width: 140px;
  }
}

/* Mobile menu language switcher */
.mobile-menu-language {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-language .language-select-wrapper {
  margin: 0;
}

.mobile-menu-language .btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.mobile-menu-language .btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-language .dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-language .dropdown-item a {
  color: white;
}

.mobile-menu-language .dropdown-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.home-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.application-detail-section .bg-blue-secondary{
    background: #07355a !important;
}
.service-detail-section .bg-blue-secondary{
    background: #07355a !important;
}
.page-template-page-about .home-about .btn-primary{
	display: none;
	
}
.single-product .content figure{
	width: 100% !important;
}
.single-product .content img{
	width: 100%;
}
.mobile-menu-language .btn{
	color: #333;
}
.mobile-menu-language .dropdown-item a{
	color: #fff !important;
}
.news-sidebar-item .news-meta {
	display: flex;
}
.news-sidebar-item .news-meta small{
	padding-right: 10px;
}
.footer-bottom {
	position: relative;
	top: 50px;
}
#heroCarousel .carousel-item img{
  height: 1000px;
}
/* Hiệu ứng xuất hiện mượt */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header sticky mặc định */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: all 0.7s ease-in-out;
}

/* Khi header chuyển sang sticky */
.sticky-header-active .sticky-top {
  animation: slideDown 0.7s ease-out forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: #fff; /* tuỳ bạn, để header rõ ràng hơn khi dính */
}
.custom-logo{
	width: 225px;
	height: 70px;
}
.product-thumbs-slider-vertical .product-thumb:hover{
	border: unset;
	border-color: unset !important;
}
.footer-logo img{
	height: 72px;
}
.mobile-menu-logo img{
	width: 150px;
}
h2.display-5{
	color: #fff !important;
	font-size: 2rem;
}
/* .header-main .mobile-menu-container {
  transform: translateX(100%);
} */
.mobile-menu-container.active {
  transform: translateX(0);
}
.mobile-menu-logo img{
	height: 52px;
}
.document-card:hover .document-thumbnail img{
	    transform: scale(1);
}
article figure{ 
	width: 100%;
	max-width: 100%;
}
article figure img{ 
	width: 100%;
}