html {
scroll-behavior: smooth;
/* overflow-y: hidden; */
}

/* Ensure sections have proper spacing for anchor navigation */
/* section { */
/* scroll-margin-top: 80px; Adjust based on your header height */
/* } */

/* Fix for mobile menu icon structure */
.menuIcon {
list-style: none;
}

/* Language Switcher Styles */
.language-switcher {
margin-left: 15px;
display: flex;
align-items: center;
position: relative;
}

.language-switcher .btn {
border-radius: 20px;
padding: 6px 12px;
font-size: 13px;
font-weight: 500;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.1);
color: white;
backdrop-filter: blur(10px);
min-width: 60px;
}

.language-switcher .btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}

.language-switcher .custom-dropdown-menu {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
padding: 8px 0;
position: absolute;
top: calc(100% + 10px);
right: 0;
min-width: 160px;
z-index: 1000;
display: none;
list-style: none;
margin: 0;
}

.language-switcher .custom-dropdown-menu.show {
display: block;
}

.language-switcher .dropdown-item {
padding: 12px 20px;
color: #333;
transition: all 0.3s ease;
border-radius: 8px;
margin: 2px 8px;
text-decoration: none;
display: block;
font-size: 14px;
}

.language-switcher .dropdown-item:hover {
background: rgba(0, 0, 0, 0.05);
transform: translateX(5px);
color: #333;
}

.language-switcher .dropdown-item.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}

.language-switcher .dropdown-item.active:hover {
color: white;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
margin-top: 20px;
text-align: center;
}

.mobile-lang-buttons {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}

.mobile-lang-buttons .lang-btn {
display: inline-block;
padding: 8px 16px;
background: rgba(255, 255, 255, 0.1);
color: white;
text-decoration: none;
border-radius: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
font-weight: 500;
min-width: 50px;
text-align: center;
}

.mobile-lang-buttons .lang-btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
color: white;
}

.mobile-lang-buttons .lang-btn.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-color: transparent;
}

/* Video Section Styles */
.video-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}

/* Video Slider Styles */
.video-slider-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.video-slider-wrapper {
overflow: hidden;
border-radius: 20px;
/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.video-slider {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
width: 600%;
}

.video-slide {
width: 16.666%;
flex-shrink: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}

.video-card {
background: white;
border-radius: 25px;
overflow: hidden;
/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
transition: all 0.4s ease;
/* max-width: 1000px; */
width: 100%;
margin: 0 30px;
display: flex;
flex-direction: row;
height: 400px;
align-items: stretch;
}

.video-card:hover {
/* transform: translateY(-10px); */
/* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15); */
}

.video-thumbnail {
position: relative;
width: 50%;
height: 100%;
overflow: hidden;
background: #000;
flex-shrink: 0;
}

.video-thumbnail video {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

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

.video-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
background: rgba(0, 0, 0, 0.6);
}

.play-btn {
width: 100px;
height: 100px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
color: white;
font-size: 32px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
position: relative;
z-index: 10;
}

.play-btn::before {
content: '';
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
opacity: 0.3;
z-index: -1;
transition: all 0.3s ease;
}

.play-btn:hover {
transform: scale(1.15);
box-shadow: 0 20px 45px rgba(102, 126, 234, 0.5);
}

.play-btn:hover::before {
opacity: 0.6;
transform: scale(1.3);
}

.video-duration {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
backdrop-filter: blur(15px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-info {
padding: 40px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
width: 50%;
}

.video-category {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 24px;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 0.8px;
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
align-self: flex-start;
}

.video-info h4 {
margin-bottom: 20px;
color: #333;
font-size: 2rem;
line-height: 1.3;
font-weight: 700;
}

.video-info p {
color: #666;
margin: 0 0 25px 0;
font-size: 1.1rem;
line-height: 1.7;
flex-grow: 1;
}

.video-features {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: auto;
}

.feature-tag {
background: #f8f9fa;
color: #667eea;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}

.feature-tag:hover {
background: #667eea;
color: white;
transform: translateY(-2px);
}

/* Video Navigation Arrows */
.video-slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.95);
border: none;
color: #667eea;
font-size: 22px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}

.video-slider-nav:hover {
background: #667eea;
color: white;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.video-slider-nav-prev {
left: -30px;
}

.video-slider-nav-next {
right: -30px;
}

/* Video Dots Navigation */
.video-slider-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 30px;
}

.video-dot {
width: 14px;
height: 14px;
border-radius: 50%;
background: rgba(102, 126, 234, 0.3);
cursor: pointer;
transition: all 0.3s ease;
margin: 0 8px;
}

.video-dot.active {
background: #667eea;
transform: scale(1.2);
}

.video-dot:hover {
background: #667eea;
transform: scale(1.1);
}

/* Desktop Video Slider Enhancements */
@media (min-width: 1200px) {
.video-slider-container {
    max-width: 1400px;
    padding: 0 40px;
}

.video-card {
    max-width: 1200px;
    height: 450px;
    margin: 0 40px;
}

.video-info {
    padding: 50px;
}

.video-info h4 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.video-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.video-category {
    font-size: 18px;
    padding: 14px 28px;
    margin-bottom: 25px;
}

.play-btn {
    width: 120px;
    height: 120px;
    font-size: 36px;
}

.video-duration {
    top: 25px;
    right: 25px;
    font-size: 16px;
    padding: 10px 20px;
}

.video-slider-nav {
    width: 70px;
    height: 70px;
    font-size: 26px;
}

.video-slider-nav-prev {
    left: -35px;
}

.video-slider-nav-next {
    right: -35px;
}

.video-dot {
    width: 16px;
    height: 16px;
    margin: 0 10px;
}
}

/* Responsive Video Slider */
@media (max-width: 768px) {
.video-slider-container {
    padding: 0 15px;
    margin: 0 auto;
}

.video-slider-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.video-slider-nav-prev {
    left: -15px;
}

.video-slider-nav-next {
    right: -15px;
}

.video-card {
    height: auto;
    min-height: 500px;
    margin: 0 15px;
    border-radius: 15px;
    flex-direction: column;
    max-width: 800px;
}

.video-thumbnail {
    height: 200px;
    width: 100%;
}

.video-info {
    padding: 20px;
    width: 100%;
}

.video-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.video-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.video-category {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 12px;
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.video-duration {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 4px 8px;
}

.video-slider-dots {
    margin-top: 20px;
}

.video-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
}
}

@media (max-width: 480px) {
.video-slider-container {
    padding: 0 10px;
}

.video-slider-nav {
    display: none;
}

.video-card {
    height: auto;
    min-height: 450px;
    margin: 0 10px;
    border-radius: 12px;
    flex-direction: column;
    max-width: 600px;
}

.video-thumbnail {
    height: 180px;
    width: 100%;
}

.video-info {
    padding: 15px;
    width: 100%;
}

.video-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.video-info p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.video-category {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 10px;
}

.play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.video-duration {
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 3px 6px;
}

.video-slider-dots {
    margin-top: 15px;
}

.video-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}
}

/* Extra small devices (320px and up) */
@media (max-width: 360px) {
.video-slider-container {
    padding: 0 5px;
}

.video-card {
    margin: 0 5px;
    min-height: 420px;
    flex-direction: column;
    max-width: 500px;
}

.video-thumbnail {
    height: 160px;
    width: 100%;
}

.video-info {
    padding: 12px;
    width: 100%;
}

.video-info h4 {
    font-size: 1.1rem;
}

.video-info p {
    font-size: 0.8rem;
}

.video-category {
    font-size: 10px;
    padding: 4px 10px;
}

.play-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
}
}

.video-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
pointer-events: none;
}

.video-preview-grid {
position: relative;
z-index: 2;
}

.video-preview-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}

.video-preview-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-preview-thumbnail {
position: relative;
height: 280px;
overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-preview-video {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}



/* Special handling for vertical videos (9:16) */
.video-preview-video[data-aspect="vertical"] {
object-fit: contain;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-preview-card:hover .video-preview-video {
transform: scale(1.1);
}

.video-preview-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
}

.video-preview-card:hover .video-preview-overlay {
opacity: 1;
background: rgba(0, 0, 0, 0.5);
}

.play-icon-wrapper {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
transition: all 0.3s ease;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}

.video-preview-card:hover .play-icon-wrapper {
transform: scale(1.1);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

.video-preview-duration {
position: absolute;
top: 15px;
right: 15px;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 6px 12px;
border-radius: 15px;
font-size: 12px;
font-weight: 600;
backdrop-filter: blur(10px);
}

.video-preview-category {
padding: 20px;
text-align: center;
}

.video-preview-category span {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 8px 20px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.video-gallery-btn-wrapper {
text-align: center;
margin-top: 50px;
position: relative;
z-index: 2;
}

.video-gallery-btn-wrapper {
text-align: center;
margin-top: 50px;
position: relative;
z-index: 2;
}

.video-gallery-btn {
display: inline-flex;
align-items: center;
gap: 15px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 18px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 18px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
position: relative;
overflow: hidden;
}

.video-gallery-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}

.video-gallery-btn:hover::before {
left: 100%;
}

.video-gallery-btn:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
color: white;
}

.video-gallery-btn i {
font-size: 24px;
transition: transform 0.3s ease;
}

.video-gallery-btn:hover i {
transform: scale(1.2);
}

/* Achievements Section Styles */
/* ===== THEME (фиолет + бирюза) ===== */
:root{
  --bg:#20173d;           /* глубокий фиолет */
  --bg2:#2e225e;
  --glass:#201a4799;
  --card:#170e3c;
  --ink:#0df2df;          /* бирюзовый акцент */
  --ink-2:#6be8ff;
  --white:#f5f7fb;
  --muted:#b6bfd6;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --ring: 0 0 0 2px rgba(13,242,223,.35);
}

/* ===== SECTION BG с печатной эстетикой ===== */
.achievements-section{
  position:relative; overflow:clip;
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(13,242,223,.20), transparent 55%),
    radial-gradient(900px 600px at 110% 20%, rgba(107,232,255,.15), transparent 60%),
    linear-gradient(160deg, var(--bg), var(--bg2));
  isolation:isolate;
}

/* Халфтон (точечная печать) поверх фона */
.achievements-section::before{
  content:"";
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:
    radial-gradient(currentColor 1px, transparent 1.5px);
  background-size:14px 14px;
  color:rgba(255,255,255,.06);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 60%, transparent 100%);
}

/* ===== BLOCK ===== */
.achievements-block{
  position:relative; z-index:1;
  background: linear-gradient(180deg, rgba(21,17,44,.75), rgba(21,17,44,.55));
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 56px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}

/* светящаяся граница */
.achievements-block::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent, rgba(13,242,223,.12), transparent);
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
  animation:borderSweep 4s linear infinite;
  opacity:.9;
}
@keyframes borderSweep{ to{ transform:translateX(100%);} }

/* Заголовки */
.achievements-header .starta-heading{
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink); font-weight:800;
  text-shadow:0 0 20px rgba(13,242,223,.25);
}
.achievements-header .starta-h1{
  color:var(--white); font-weight:800;
}
.achievements-header .starta-desc{
  color:var(--muted); max-width:720px; margin-inline:auto;
}

/* ===== GRID ===== */
.achievements-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
}

/* ===== CARD (достижение) ===== */
.achievement-item{
  position:relative; overflow:hidden;
  display:flex; align-items:center; gap:18px;
  background: linear-gradient(180deg, rgba(13,242,223,.08), rgba(107,232,255,.05));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px;
  color:var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* диагональные «полосы» как эффект ламинации */
.achievement-item::before{
  content:"";
  position:absolute; inset:-1px; pointer-events:none;
  background:
    repeating-linear-gradient( 135deg,
      rgba(255,255,255,.06) 0 6px,
      transparent 6px 16px);
  opacity:.15;
  mix-blend-mode: screen;
}

/* глянец-блик при ховере */
.achievement-item::after{
  content:"";
  position:absolute; inset:0; transform:translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: transform .6s ease;
}
.achievement-item:hover::after{ transform:translateX(120%); }

.achievement-item:hover{
  transform: translateY(-6px);
  border-color: rgba(13,242,223,.45);
  box-shadow: 0 16px 40px rgba(13,242,223,.12);
}

/* Иконка */
.achievement-icon{
  width:72px; height:72px; flex:0 0 72px;
  display:grid; place-items:center;
  border-radius:16px;
  background: radial-gradient(100% 100% at 30% 20%, rgba(13,242,223,.35), rgba(107,232,255,.1));
  border:1px solid rgba(255,255,255,.12);
  font-size:30px; color:var(--ink-2);
  box-shadow: inset 0 0 0 1px rgba(13,242,223,.25);
}

/* Текст */
.achievement-number{
  margin:0 0 6px; font-weight:800; font-size:2.25rem; line-height:1.1;
  letter-spacing:.5px; color:var(--white);
  text-shadow: 0 6px 22px rgba(0,0,0,.35);
}
.achievement-text{
  margin:0; color:var(--muted); font-weight:600;
}

/* Печатные метки реза (crop marks) */
.print-notch{
  position:absolute; width:22px; height:22px; border:2px solid rgba(13,242,223,.55);
}
.print-notch--tl{ top:14px; left:14px; border-right:none; border-bottom:none; }
.print-notch--tr{ top:14px; right:14px; border-left:none; border-bottom:none; }
.print-notch--bl{ bottom:14px; left:14px; border-right:none; border-top:none; }
.print-notch--br{ bottom:14px; right:14px; border-left:none; border-top:none; }

/* Адаптив */
@media (max-width:576px){
  .achievements-block{ padding:36px 18px; border-radius:18px; }
  .achievement-icon{ width:60px; height:60px; font-size:24px; border-radius:12px; }
  .achievement-number{ font-size:1.9rem; }
}

/* Уважение к reduced motion */
@media (prefers-reduced-motion:reduce){
  .achievement-item, .achievement-item::after { transition:none!important; animation:none!important; }
}









.technology-progress {
background: #f8f9fa;
border-radius: 15px;
padding: 30px;
border: 2px solid #e9ecef;
}

.progress-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.progress-header h4 {
font-size: 1.5rem;
font-weight: 600;
color: #333;
margin: 0;
}

.progress-percentage {
font-size: 1.5rem;
font-weight: 700;
color: #667eea;
}

.progress-bar {
height: 12px;
background: #e9ecef;
border-radius: 10px;
overflow: hidden;
position: relative;
}

.progress-fill {
height: 100%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
width: 100%;
position: relative;
overflow: hidden;
}

.progress-fill::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: progressShine 2s infinite;
}

@keyframes progressShine {
0% { left: -100%; }
100% { left: 100%; }
}

/* Responsive Design for Achievements */
@media (max-width: 768px) {
.achievements-block {
    padding: 40px 20px;
}

.achievements-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.achievement-item {
    padding: 25px;
    gap: 15px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.achievement-number {
    font-size: 2rem;
}

.achievement-text {
    font-size: 1rem;
}

.technology-progress {
    padding: 25px;
}

.progress-header h4 {
    font-size: 1.3rem;
}

.progress-percentage {
    font-size: 1.3rem;
}
}

@media (max-width: 480px) {
.achievements-block {
    padding: 30px 15px;
}

.achievement-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.achievement-number {
    font-size: 1.8rem;
}

.progress-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
}

/* Branches Section Styles */
.branches-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}

.branches-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="branches-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23branches-grain)"/></svg>');
pointer-events: none;
}

.branches-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.branch-card {
background: white;
border-radius: 25px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 2px solid transparent;
}

.branch-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
transition: left 0.5s ease;
}

.branch-card:hover::before {
left: 100%;
}

.branch-card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
border-color: #667eea;
}

.branch-header {
text-align: center;
margin-bottom: 30px;
position: relative;
z-index: 2;
}

.branch-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 32px;
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.branch-header h3 {
font-size: 2rem;
font-weight: 700;
color: #333;
margin: 0 0 10px 0;
}

.branch-status {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 8px 20px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.branch-info {
margin-bottom: 30px;
position: relative;
z-index: 2;
}

.branch-info > div {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
padding: 15px;
background: #f8f9fa;
border-radius: 15px;
transition: all 0.3s ease;
}

.branch-info > div:hover {
background: #e9ecef;
transform: translateX(5px);
}

.branch-info i {
color: #667eea;
font-size: 1.2rem;
margin-top: 2px;
flex-shrink: 0;
}

.branch-info span {
color: #555;
font-size: 1rem;
line-height: 1.5;
}

.branch-rating {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 15px;
}

.rating-stars {
display: flex;
gap: 3px;
}

.rating-stars i {
color: #ffc107;
font-size: 1.1rem;
}

.rating-text {
color: #666;
font-weight: 600;
font-size: 0.95rem;
}

.branch-actions {
text-align: center;
position: relative;
z-index: 2;
}

.branch-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 30px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.branch-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
color: white;
text-decoration: none;
}

.branch-btn i {
font-size: 1.1rem;
}

.delivery-info {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
border-radius: 25px;
box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
position: relative;
overflow: hidden;
}

.delivery-info::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
animation: deliveryShine 3s infinite;
}

@keyframes deliveryShine {
0% { left: -100%; }
100% { left: 100%; }
}

.delivery-info i {
font-size: 3rem;
margin-bottom: 20px;
display: block;
}

.delivery-info h4 {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.delivery-info p {
font-size: 1.1rem;
margin: 0;
opacity: 0.9;
line-height: 1.6;
}

/* Responsive Design for Branches */
@media (max-width: 768px) {
.branches-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.branch-card {
    padding: 30px 20px;
}

.branch-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.branch-header h3 {
    font-size: 1.6rem;
}

.branch-info > div {
    padding: 12px;
}

.delivery-info {
    padding: 30px 20px;
}

.delivery-info i {
    font-size: 2.5rem;
}

.delivery-info h4 {
    font-size: 1.5rem;
}

.delivery-info p {
    font-size: 1rem;
}
}

@media (max-width: 480px) {
.branches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.branch-card {
    padding: 25px 15px;
}

.branch-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.branch-header h3 {
    font-size: 1.4rem;
}

.branch-info > div {
    padding: 10px;
    gap: 10px;
}

.branch-info i {
    font-size: 1rem;
}

.branch-info span {
    font-size: 0.9rem;
}

.delivery-info {
    padding: 25px 15px;
}

.delivery-info i {
    font-size: 2rem;
}

.delivery-info h4 {
    font-size: 1.3rem;
}

.delivery-info p {
    font-size: 0.9rem;
}
}

/* Services Slider Styles */
.services-slider-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.services-slider-wrapper {
overflow: hidden;
border-radius: 20px;
/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.services-slider {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
width: 600%;
}

.service-slide {
width: 16.666%;
flex-shrink: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}

.service-card {
background: white;
border-radius: 25px;
overflow: hidden;
/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
border: 3px solid rgb(0, 0, 0);
transition: all 0.4s ease;
max-width: 800px;
width: 100%;
margin: 0 20px;
display: flex;
flex-direction: column;
height: 600px;
}

.service-card:hover {
/* transform: translateY(-10px); */
/* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15); */
}

.service-title {
padding: 40px 40px 20px 40px;
text-align: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}

.service-title h2 {
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 10px 0;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-subtitle {
font-size: 1.1rem;
opacity: 0.9;
font-weight: 400;
}

.service-image {
height: 250px;
overflow: hidden;
position: relative;
}

.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

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

.service-description {
padding: 30px 40px;
flex-grow: 1;
display: flex;
align-items: center;
}

.service-description p {
color: #555;
line-height: 1.7;
font-size: 1.1rem;
margin: 0;
text-align: center;
}

.service-actions {
padding: 0 40px 40px 40px;
text-align: center;
}

.our-works-btn {
display: inline-flex;
align-items: center;
gap: 12px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 35px;
border: none;
border-radius: 30px;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
position: relative;
overflow: hidden;
}

.our-works-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}

.our-works-btn:hover::before {
left: 100%;
}

.our-works-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
color: white;
}

.our-works-btn i {
font-size: 18px;
transition: transform 0.3s ease;
}

.our-works-btn:hover i {
transform: scale(1.1);
}

/* Navigation Arrows */
.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
border: none;
color: #667eea;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
}

.slider-nav:hover {
background: #667eea;
color: white;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.slider-nav-prev {
left: -25px;
}

.slider-nav-next {
right: -25px;
}

/* Dots Navigation */
.slider-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 30px;
}

.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(102, 126, 234, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.dot.active {
background: #667eea;
transform: scale(1.2);
}

.dot:hover {
background: #667eea;
transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
.services-slider-container {
    padding: 0 15px;
    margin: 0 auto;
}

.slider-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-nav-prev {
    left: -15px;
}

.slider-nav-next {
    right: -15px;
}

.service-card {
    height: auto;
    min-height: 500px;
    margin: 0 15px;
    border-radius: 15px;
}

.service-title {
    padding: 25px 25px 15px 25px;
}

.service-title h2 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 0.95rem;
    margin-top: 8px;
}

.service-image {
    height: 180px;
    border-radius: 0;
}

.service-description {
    padding: 20px 25px;
}

.service-description p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-actions {
    padding: 0 25px 25px 25px;
}

.our-works-btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
}

.slider-dots {
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
}
}

@media (max-width: 480px) {
.services-slider-container {
    padding: 0 10px;
}

.slider-nav {
    display: none;
}

.service-card {
    height: auto;
    min-height: 450px;
    margin: 0 10px;
    border-radius: 12px;
}

.service-title {
    padding: 20px 20px 12px 20px;
}

.service-title h2 {
    font-size: 1.6rem;
    line-height: 1.1;
}

.service-subtitle {
    font-size: 0.85rem;
    margin-top: 6px;
}

.service-image {
    height: 160px;
}

.service-description {
    padding: 15px 20px;
}

.service-description p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-actions {
    padding: 0 20px 20px 20px;
}

.our-works-btn {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
}

.slider-dots {
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}
}

/* Extra small devices (320px and up) */
@media (max-width: 360px) {
.services-slider-container {
    padding: 0 5px;
}

.service-card {
    margin: 0 5px;
    min-height: 420px;
}

.service-title {
    padding: 15px 15px 10px 15px;
}

.service-title h2 {
    font-size: 1.4rem;
}

.service-subtitle {
    font-size: 0.8rem;
}

.service-image {
    height: 140px;
}

.service-description {
    padding: 12px 15px;
}

.service-description p {
    font-size: 0.85rem;
}

.service-actions {
    padding: 0 15px 15px 15px;
}

.our-works-btn {
    padding: 10px 15px;
    font-size: 12px;
}
}

/* Service Gallery Modal Styles */
.service-gallery-modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
padding: 20px;
box-sizing: border-box;
}

.service-gallery-content {
position: relative;
margin: 0 auto;
width: 100%;
max-width: 1200px;
height: 100%;
background: transparent;
border-radius: 20px;
overflow: hidden;
display: flex;
flex-direction: column;
}

.service-gallery-close {
position: absolute;
top: -50px;
right: 0;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
z-index: 10001;
transition: all 0.3s ease;
background: rgba(0, 0, 0, 0.5);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-gallery-close:hover {
color: #667eea;
transform: scale(1.1);
background: rgba(102, 126, 234, 0.8);
border-color: #667eea;
}

.service-gallery-title {
color: white;
text-align: center;
margin-bottom: 30px;
font-size: 2.5rem;
font-weight: 700;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
max-height: calc(100vh - 200px);
overflow-y: auto;
}

.service-gallery-item {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
cursor: pointer;
}

.service-gallery-item:hover {
transform: scale(1.05);
}

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

.service-gallery-item:hover img {
transform: scale(1.1);
}

/* Responsive Service Gallery */
@media (max-width: 768px) {
.service-gallery-modal {
    padding: 10px;
}

.service-gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

.service-gallery-item img {
    height: 200px;
}

.service-gallery-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 30px;
}
}

@media (max-width: 480px) {
.service-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.service-gallery-item img {
    height: 180px;
}
}

/* Video Modal Styles */
.video-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
padding: 20px;
box-sizing: border-box;
}

.video-modal-content {
position: relative;
margin: 0 auto;
width: 100%;
max-width: 90vw;
height: 90vh;
background: transparent;
border-radius: 20px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.video-modal-close {
position: absolute;
top: -50px;
right: 0;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
z-index: 10000;
transition: all 0.3s ease;
background: rgba(0, 0, 0, 0.5);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-modal-close:hover {
color: #667eea;
transform: scale(1.1);
background: rgba(102, 126, 234, 0.8);
border-color: #667eea;
}

.video-modal-body {
position: relative;
width: 100%;
height: 100%;
border-radius: 20px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.video-modal-body video {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
border-radius: 20px;
background: #000;
}

/* Mobile responsive for video modal */
@media (max-width: 768px) {
.video-modal {
    padding: 15px;
}

.video-modal-content {
    width: 100%;
    height: auto;
    max-height: 80vh;
    margin: 10vh auto;
}

.video-modal-body {
    height: auto;
    min-height: 300px;
}

.video-modal-body video {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
}

.video-modal-close {
    top: -45px;
    right: 0;
    width: 45px;
    height: 45px;
    font-size: 32px;
}
}

.video-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}

.video-slide:hover .video-overlay {
background: rgba(0, 0, 0, 0.6);
}

.video-duration {
position: absolute;
top: 15px;
right: 15px;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 4px 8px;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
}

.play-btn {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
color: white;
font-size: 24px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
position: relative;
z-index: 10;
}

.play-btn::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
opacity: 0.3;
z-index: -1;
transition: all 0.3s ease;
}

.play-btn:hover {
transform: scale(1.1);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.play-btn:hover::before {
opacity: 0.6;
transform: scale(1.2);
}

.video-info {
padding: 25px;
}

.video-category {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4px 12px;
border-radius: 15px;
font-size: 12px;
font-weight: 600;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.video-info h4 {
margin-bottom: 10px;
color: #333;
font-size: 18px;
line-height: 1.3;
}

.video-info p {
color: #666;
margin: 0 0 15px 0;
font-size: 14px;
line-height: 1.5;
}

.video-features {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.feature-tag {
background: #f8f9fa;
color: #667eea;
padding: 4px 10px;
border-radius: 12px;
font-size: 11px;
font-weight: 500;
border: 1px solid #e9ecef;
}

/* Responsive Video Blocks */
@media (max-width: 768px) {
.video-block {
    margin-bottom: 20px;
}

.video-thumbnail {
    height: 200px;
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    font-size: 16px;
}

.video-info p {
    font-size: 14px;
}
}

@media (max-width: 480px) {
.video-thumbnail {
    height: 180px;
}

.play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.video-info {
    padding: 12px;
}

.video-info h4 {
    font-size: 15px;
}

.video-info p {
    font-size: 13px;
}
}

/* Video Modal */
.video-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
padding: 20px;
box-sizing: border-box;
}

.video-modal-content {
position: relative;
margin: 0 auto;
width: 100%;
max-width: 90vw;
height: 90vh;
background: transparent;
border-radius: 20px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.video-modal-close {
position: absolute;
top: -50px;
right: 0;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
z-index: 10000;
transition: all 0.3s ease;
background: rgba(0, 0, 0, 0.5);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-modal-close:hover {
color: #667eea;
transform: scale(1.1);
background: rgba(102, 126, 234, 0.8);
border-color: #667eea;
}

.video-modal-body {
position: relative;
width: 100%;
height: 100%;
border-radius: 20px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.video-modal-body video {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
border-radius: 20px;
background: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.language-switcher {
    margin-left: 0;
    margin-top: 15px;
}

.video-slider-section {
    padding: 30px 0;
}

.video-section-header {
    padding: 0 15px;
}

.video-slider-container {
    margin: 0 -15px;
    padding: 0 15px;
}

.video-thumbnail {
    height: 280px;
    min-height: 280px;
}

.video-preview {
    object-fit: cover;
}

.play-btn {
    width: 80px;
    height: 80px;
    font-size: 28px;
}

.video-duration {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 3px 6px;
}

.video-info {
    padding: 20px;
}

.video-category {
    font-size: 11px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.video-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.video-info p {
    font-size: 14px;
    margin-bottom: 12px;
}

.feature-tag {
    font-size: 10px;
    padding: 3px 8px;
}

.video-modal {
    padding: 15px;
}

.video-modal-content {
    width: 100%;
    height: auto;
    max-height: 80vh;
    margin: 10vh auto;
}

.video-modal-body {
    height: auto;
    min-height: 300px;
}

.video-modal-body video {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
}

.video-modal-close {
    top: -45px;
    right: 0;
    width: 45px;
    height: 45px;
    font-size: 32px;
}
}

@media (max-width: 480px) {
.video-thumbnail {
    height: 200px;
    min-height: 200px;
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.video-modal-content {
    margin: 5vh auto;
    max-height: 90vh;
}

.video-modal-body video {
    max-height: 80vh;
}
}

/* Gallery Slider Styles */
.gallery-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-slider-container {
position: relative;
margin-top: 30px;
overflow: hidden;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-slider-wrapper {
overflow: hidden;
border-radius: 20px;
}

.gallery-slider {
display: flex;
transition: transform 0.5s ease;
gap: 20px;
padding: 20px;
}

.gallery-slide {
flex: 0 0 calc(25% - 15px);
min-width: 0;
}

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
aspect-ratio: 1;
height: 300px;
}

.gallery-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.gallery-overlay i {
color: white;
font-size: 2rem;
transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
transform: scale(1.2);
}

/* Navigation arrows */
.gallery-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
background: white;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav-prev {
left: 20px;
}

.gallery-nav-next {
right: 20px;
}

.gallery-nav i {
font-size: 1.2rem;
color: #333;
}

/* Dots indicator */
.gallery-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
}

.gallery-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.gallery-dot.active {
background: #007bff;
transform: scale(1.2);
}

.gallery-dot:hover {
background: #007bff;
transform: scale(1.1);
}

.gallery-modal-content {
text-align: center;
}

.gallery-modal-content img {
max-width: 100%;
max-height: 70vh;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Gallery Slider */
@media (max-width: 1200px) {
.gallery-slide {
    flex: 0 0 calc(33.333% - 14px);
}
}

@media (max-width: 768px) {
.gallery-slide {
    flex: 0 0 calc(50% - 10px);
}

.menuIcon {
    display: none;
}

.order_c_1 {
    min-height: 100px;
    margin-top: 30px;
}

.language-switcher {
    display: none;
}

.order_c {
    display: flex;
    flex-direction: column-reverse;
}

.gallery-item {
    height: 250px;
}

.gallery-nav {
    width: 40px;
    height: 40px;
}

.gallery-nav i {
    font-size: 1rem;
}

.gallery-nav-prev {
    left: 10px;
}

.gallery-nav-next {
    right: 10px;
}

.gallery-overlay i {
    font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.gallery-slide {
    flex: 0 0 calc(100% - 0px);
}

.gallery-item {
    height: 200px;
}

.gallery-nav {
    width: 35px;
    height: 35px;
}

.gallery-nav i {
    font-size: 0.9rem;
}

.gallery-overlay i {
    font-size: 1.2rem;
}
}