:root {
  --primary: #1e293b;
  --accent: #38bdf8;
  --bg: #1a1333;
  --section-bg: #fff;
  --divider: #e2e8f0;
}
body { font-family: 'Montserrat', Arial, sans-serif; margin: 0; background: #1a1333 !important; color: #e5e7eb; }
header { background: var(--primary); color: #fff; padding: 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s; }
header.scrolled { background: rgba(30, 41, 59, 0.95); backdrop-filter: blur(10px); }
.navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem; }
.logo { font-size: 2rem; font-weight: 700; letter-spacing: 2px; }
nav { display: flex; gap: 2rem; }
nav a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.2s; position: relative; }
nav a:hover { color: var(--accent); }
nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
nav a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
/* Hero Section - More Transparent Background */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  background: linear-gradient(120deg, rgba(30,41,59,0.75) 60%, rgba(56,189,248,0.45) 100%);
  color: #fff;
  text-align: center;
  padding: 0.2rem 2rem 0.7rem 2rem;
  position: relative;
  padding-top: 0px;
  margin-top: 0px;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; opacity: 0; transform: translateY(30px); animation: fadeInUp 1s ease forwards; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0; transform: translateY(30px); animation: fadeInUp 1s ease 0.3s forwards; }
.hero .cta-btn { background: var(--accent); color: #fff; border: none; padding: 1rem 2.5rem; border-radius: 30px; font-size: 1.1rem; font-weight: 700; cursor: pointer; box-shadow: 0 2px 8px rgba(56,189,248,0.15); transition: all 0.3s; opacity: 0; transform: translateY(30px); animation: fadeInUp 1s ease 0.6s forwards; }
.hero .cta-btn:hover { background: #0ea5e9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(56,189,248,0.25); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.hero-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.10);
  background: #fff;
}
@media (max-width: 600px) {
  .hero {
    min-height: 10vh;
    padding: 0.1rem 0.7rem 0.4rem 0.7rem;
  }
  .hero-logo {
    max-width: 150px;
    margin-bottom: 1.2rem;
  }
}
/* Pro Hero Logo Styles */
.hero-logo-pro {
  display: block;
  margin: 0 auto 2rem auto;
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(56,189,248,0.13), 0 2px 12px rgba(30,41,59,0.10);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border: 2.5px solid rgba(56,189,248,0.13);
  animation: heroLogoFloat 4s ease-in-out infinite;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.04); }
}
.logo-animate-scale {
  transform: scale(1.12) !important;
  box-shadow: 0 8px 32px rgba(56,189,248,0.22), 0 2px 12px rgba(30,41,59,0.13);
  border: 2.5px solid #38bdf8;
}
@media (max-width: 600px) {
  .hero-logo-pro {
    max-width: 180px;
    height: 120px;
  }
}
/* Section Divider */
.divider {
  height: 0.3rem;
  margin: 0;
  background: none;
  border: none;
}
/* Section Styles */
section, .content-wrapper, .vision-section, .personality-section, .yaz-meaning-section, .stores-section {
  background: #1e293b !important;
  color: #fff;
  margin-bottom: 1.2rem;
  padding: 1.7rem 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.04);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}
section.visible { opacity: 1; transform: translateY(0); }
section:not(:first-of-type) { margin-top: 0; }
section h2 { color: var(--primary); margin-top: 0; font-size: 2rem; }
/* Stats Section */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--accent); }
.stat-label { color: #666; margin-top: 0.5rem; }
/* About Section Professional */
.about-section-pro {
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.about-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* About Content Professional */
.about-content-pro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.about-text-pro {
  flex: 1 1 60%;
  text-align: right;
  color: #fff;
}

.about-mission {
  margin-bottom: 2.5rem;
}

.about-mission h3,
.about-values h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-mission h3::after,
.about-values h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed);
  border-radius: 2px;
}

.about-mission p {
  color: #e0e7ef;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.values-list li:hover {
  background: rgba(56, 189, 248, 0.15);
  transform: translateX(-5px);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.2);
}

.values-list li i {
  color: #38bdf8;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* CTA Button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
  position: relative;
  overflow: hidden;
}

.about-cta-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;
}

.about-cta-btn:hover::before {
  left: 100%;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.about-cta-btn i {
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(5px);
}

/* Image Professional */
.about-img-pro {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-team-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(124, 58, 237, 0.1));
  pointer-events: none;
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.stat-item-pro {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item-pro:hover::before {
  transform: scaleX(1);
}

.stat-item-pro:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-item-pro:hover .stat-icon {
  transform: scale(1.1);
  color: #0ea5e9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(56, 189, 248, 0.3);
}

.stat-label {
  color: #e0e7ef;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-content-pro {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .about-text-pro {
    text-align: center;
  }
  
  .about-mission h3::after,
  .about-values h3::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .values-list li {
    justify-content: center;
  }
  
  .values-list li:hover {
    transform: translateY(-3px);
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .about-content-pro {
    gap: 1.5rem;
  }
  
  .about-mission p {
    font-size: 1rem;
  }
  
  .values-list li {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  
  .about-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item-pro {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .about-content {
    gap: 1.2rem;
    min-height: 260px;
  }
  .about-text {
    font-size: 1.05rem;
    padding: 0 0.7rem 0 0;
  }
  .about-img img {
    width: 100%;
    max-width: 220px;
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    min-height: unset;
  }
  .about-text {
    text-align: right;
    width: 100%;
    padding: 0 0.5rem;
    font-size: 1rem;
  }
  .about-img {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  .about-img img {
    width: 70vw;
    max-width: 120px;
    min-width: 60px;
    margin: 0 auto;
  }
}
/* Services */
/* Personality Section Styles */
.personality-section {
  background: #1e293b !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.personality-section h2 {
  color: #fff !important;
  text-shadow: 0 2px 16px #38bdf8aa, 0 1px 4px #0ea5e9aa;
}
.traits-list .trait-card {
  background: rgba(30,41,59,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(56,189,248,0.13);
  padding: 1.5rem 1.2rem;
  margin: 0.5rem;
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.22s, background 0.22s;
  color: #fff !important;
  position: relative;
  z-index: 1;
}
.traits-list .trait-card:hover {
  background: linear-gradient(120deg, #38bdf8 0%, #0ea5e9 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px #38bdf8cc, 0 2px 12px #0ea5e9cc;
  transform: scale(1.06) translateY(-4px);
}
.trait-icon {
  font-size: 2.7rem;
  color: #38bdf8;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 16px #38bdf8cc) drop-shadow(0 1px 8px #0ea5e9cc);
  background: linear-gradient(135deg, #38bdf8 60%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: filter 0.22s, color 0.22s;
}
.trait-card:hover .trait-icon {
  filter: drop-shadow(0 4px 24px #38bdf8cc) drop-shadow(0 2px 12px #0ea5e9cc);
  color: #888;
  background: none;
}
.trait-ar, .trait-en {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 1px 8px #0ea5e9cc;
}
.traits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
}
.trait-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(56,189,248,0.10);
  padding: 1rem 1.1rem 0.8rem 1.1rem;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(.4,2,.3,1);
}
.trait-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.traits-bilingual .trait-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.trait-ar {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
  text-align: center;
}
.trait-en {
  font-size: 0.98rem;
  font-weight: 400;
  color: #64748b;
  margin-top: 0.1rem;
  letter-spacing: 0.1px;
  text-align: center;
  opacity: 0.85;
}
@media (max-width: 700px) {
  .traits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.7rem;
    text-align: center;
  }
  .trait-card {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    padding: 1.2em !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
    width: auto !important;
    height: auto !important;
    margin: 0.4rem;
    flex: none !important;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    gap: 0.3rem;
  }
  .trait-card .trait-icon {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    margin-top: 0;
  }
  .trait-ar, .trait-en {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.1;
    display: block;
    word-break: break-word;
  }
  .stores-logos {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-x: auto !important;
    gap: 1.2rem;
    width: 100%;
  }
  .store-logo-card {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  .store-logo-card img {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
  }
}
/* Social Section Styles */
.social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 1.5rem 0;
}
.social-card {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 32px rgba(56,189,248,0.10);
  border-radius: 22px;
  padding: 2.2rem 2.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  max-width: 480px;
  width: 100%;
}
.social-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.social-icon-link {
  color: #38bdf8;
  font-size: 2.2rem;
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
  border-radius: 50%;
  padding: 0.3em;
  background: rgba(236,245,255,0.5);
  box-shadow: 0 2px 8px rgba(56,189,248,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon-link:hover {
  color: #0ea5e9;
  background: #e0f7fa;
  transform: scale(1.18) rotate(-6deg);
  box-shadow: 0 4px 24px rgba(56,189,248,0.18);
}
@media (max-width: 600px) {
  .social-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-width: 0;
    max-width: 100%;
  }
  .social-icons {
    gap: 0.7rem;
  }
  .social-icon-link {
    font-size: 1.5rem;
  }
}
/* Consultation Floating Button */
#consult-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 1.7rem 1rem 1.2rem;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(56,189,248,0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  z-index: 2000;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#consult-fab:hover, #consult-fab:focus {
  background: #0ea5e9;
  box-shadow: 0 4px 32px 0 #38bdf8, 0 0 16px 4px #38bdf844;
  transform: scale(1.07);
}
#consult-fab i {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 6px #38bdf888);
}
.fab-tooltip {
  font-family: 'Tajawal', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
  margin-right: 0.3rem;
}
@media (max-width: 600px) {
  #consult-fab {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    font-size: 1rem;
  }
  #consult-fab i {
    font-size: 1.1rem;
  }
  .fab-tooltip {
    font-size: 0.98rem;
  }
}
/* Hero YAZ Background Letters */
.hero-bg-yaz {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bg-yaz::before {
  content: 'Y A Z';
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 16vw;
  color: #fff;
  opacity: 0.13;
  letter-spacing: 2vw;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 1;
  user-select: none;
}
@media (max-width: 700px) {
  .hero-bg-yaz::before {
    font-size: 22vw;
    letter-spacing: 1vw;
  }
}
/* Remove old hero-letters styles if present */
.hero-letters, .hero-letter-a { display: none !important; }
/* Enhanced Hero YAZ Stack Styles - Each Letter Unique Animation */
.hero-yaz-stack {
  direction: ltr !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 0.3rem auto;
  z-index: 2;
  position: relative;
  min-width: 120px;
  max-width: 480px;
  width: fit-content;
  margin-top: 0;
}
.hero-yaz-letter {
  font-size: 4.2rem;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  margin: 0 0.2em;
  padding: 0.05em 0.2em;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.hero-yaz-letter:nth-child(1) {
  color: #fff;
  text-shadow: 0 2px 24px #fff, 0 2px 12px #38bdf8;
  animation: yazFadeInUp 0.7s cubic-bezier(.4,2,.3,1) forwards, yazBounce 2.2s infinite 0.8s;
  animation-delay: 0.1s, 0.8s;
}
.hero-yaz-letter:nth-child(2) {
  color: #38bdf8;
  text-shadow: 0 2px 32px #38bdf8, 0 2px 12px #fff;
  animation: yazFadeInUp 0.7s cubic-bezier(.4,2,.3,1) forwards, yazPulse 2.2s infinite 1.1s;
  animation-delay: 0.4s, 1.1s;
}
.hero-yaz-letter:nth-child(3) {
  color: #fff;
  text-shadow: 0 2px 24px #fff, 0 2px 12px #0ea5e9;
  animation: yazFadeInUp 0.7s cubic-bezier(.4,2,.3,1) forwards, yazRotate 2.2s infinite 1.4s;
  animation-delay: 0.7s, 1.4s;
}
@keyframes yazFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
}
@keyframes yazBounce {
  0%, 100% { transform: translateY(0) scale(1.04); }
  50% { transform: translateY(-18px) scale(1.12); }
}
@keyframes yazPulse {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.18); text-shadow: 0 4px 32px #38bdf8, 0 2px 12px #fff; }
}
@keyframes yazRotate {
  0%, 100% { transform: rotate(0deg) scale(1.04); }
  20% { transform: rotate(-8deg) scale(1.08); }
  50% { transform: rotate(8deg) scale(1.12); }
  80% { transform: rotate(-8deg) scale(1.08); }
}
@media (max-width: 600px) {
  .hero-yaz-stack {
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    min-width: 0;
    max-width: 100%;
    gap: 0.5rem;
  }
  .hero-yaz-letter {
    font-size: 4.2rem;
    padding: 0.1em 0.2em;
  }
}
/* Stores Section Professional Styles */
.stores-section {
  position: relative;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 8px 32px rgba(56,189,248,0.10), 0 2px 12px rgba(30,41,59,0.07);
  border-radius: 22px;
  padding: 3rem 2rem 2.2rem 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.stores-section .stores-bg-svg {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 180px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
.stores-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  overflow: visible !important;
  max-width: 100%;
  margin: 0 auto;
}
.carousel-track {
  display: contents !important;
}
.store-logo-card {
  background: none;
  border-radius: 16px;
  box-shadow: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-logo-card img {
  width: 60px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 700px) {
  .stores-section {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .stores-logos {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .store-logo-card {
    height: 50px;
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 60px;
    max-height: 60px;
    padding: 0.4rem;
  }
  .store-logo-card img {
    max-width: 35px;
    max-height: 35px;
  }
}
#cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #e0f7fa 0%, #38bdf8 100%);
  border: 2px solid #38bdf8;
  box-shadow: 0 2px 16px 2px #38bdf855, 0 0 0 2px rgba(56,189,248,0.08);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: background 0.25s, border 0.25s, box-shadow 0.25s, transform 0.18s cubic-bezier(.4,2,.3,1);
  mix-blend-mode: lighten;
  will-change: transform, box-shadow, background;
}
#cursor-follower.active {
  transform: translate(-50%, -50%) scale(0.85);
  box-shadow: 0 2px 24px 4px #38bdf8aa, 0 0 0 6px #38bdf822;
  background: radial-gradient(circle at 60% 40%, #38bdf8 0%, #0ea5e9 100%);
  border-color: #0ea5e9;
}
#cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #38bdf8 60%, #0ea5e9 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 8px 1px #38bdf855;
  pointer-events: none;
  transition: background 0.22s, box-shadow 0.22s, width 0.18s, height 0.18s;
}
#cursor-follower.ring {
  box-shadow: 0 0 0 8px #38bdf822, 0 2px 16px 2px #38bdf855;
  border-color: #0ea5e9;
}
@media (max-width: 700px) {
  #cursor-follower {
    display: none !important;
  }
}
section *, .content-wrapper *, .vision-section *, .personality-section *, .yaz-meaning-section *, .stores-section * {
  color: #fff !important;
}
.yaz-meaning-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 140px;
  padding: 1.2rem 1.5rem;
  border-radius: 50%;
  background: rgba(56,189,248,0.13);
  box-shadow: 0 4px 24px rgba(56,189,248,0.13), 0 2px 12px rgba(30,41,59,0.10);
  border: 2.5px solid #38bdf8;
  position: relative;
  transition: box-shadow 0.3s, background 0.3s, border 0.3s;
  margin: 0 1.2rem;
  animation: yazCircleFadeIn 0.7s cubic-bezier(.4,2,.3,1);
  box-sizing: border-box;
  word-break: break-word;
  text-align: center;
}
.yaz-meaning-letter {
  font-size: 2.7rem;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 2px 16px #38bdf8aa, 0 1px 4px #0ea5e9aa;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.yaz-meaning-desc {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@keyframes yazCircleFadeIn {
  from { opacity: 0; transform: scale(0.7) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
#platforms-carousel {
  overflow: hidden;
  width: calc(2 * 100px + 2 * 1rem);
  max-width: 100vw;
  margin: 0 auto 1.5rem auto;
  position: relative;
}
#platforms-carousel .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.7s cubic-bezier(.4,2,.3,1);
  will-change: transform;
}
#platforms-carousel .store-logo-card {
  flex: 0 0 100px;
  max-width: 100px;
  min-width: 100px;
  margin: 0 0.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.store-logo-card img {
  max-width: 120px;
  max-height: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
@media (max-width: 700px) {
  .store-logo-card img {
    max-width: 80px;
    max-height: 80px;
  }
}
@media (max-width: 700px) {
  #platforms-carousel {
    width: calc(2 * 70px + 2 * 0.4rem);
  }
  #platforms-carousel .store-logo-card {
    flex: 0 0 70px;
    max-width: 70px;
    min-width: 70px;
    margin: 0 0.2rem;
  }
}
.traits-list.traits-bilingual {
  position: relative;
  min-height: 180px;
}
.personality-card {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95) translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 2;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}
.personality-card.active,
.personality-card.exit {
  display: flex;
}
.personality-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  z-index: 3;
}
.personality-card.exit {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95) translateY(-40px) rotate(-8deg);
  z-index: 2;
}
@media (max-width: 700px) {
  .personality-card {
    display: none !important;
  }
  .personality-card.active {
    display: flex !important;
  }
}
@media (max-width: 700px) {
  .personality-card,
  .personality-card.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    background: rgba(30,41,59,0.92);
    min-width: 110px !important;
    min-height: 54px !important;
    max-width: 100% !important;
    padding: 0.7em 1.2em !important;
    margin: 0.4rem auto !important;
    box-sizing: border-box;
    overflow: hidden !important;
    text-align: center !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
  }
  .personality-card .trait-ar,
  .personality-card .trait-en {
    font-size: 0.88rem !important;
    line-height: 1.18 !important;
    margin: 0.1em 0 !important;
    padding: 0 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }
}
#consult-text {
  display: none;
  position: fixed;
  bottom: 6.5rem;
  right: 2.5rem;
  background: #38bdf8;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(56,189,248,0.18);
  font-size: 1.1rem;
  z-index: 2000 !important;
  transition: opacity 0.3s;
  opacity: 1;
}
@media (max-width: 600px) {
  #consult-text {
    right: 1rem;
    left: 1rem;
    bottom: 6.5rem;
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    text-align: center;
  }
}
/* --- Creative Services Section --- */
#services {
  min-height: 480px;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
  background: linear-gradient(120deg, #1e293b 0%, #38bdf8 60%, #7c3aed 100%) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(56,189,248,0.13), 0 2px 12px rgba(30,41,59,0.10);
}
.services-creative-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.services-header h2 {
  background: linear-gradient(90deg, #38bdf8 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.service-card, .service-block {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 98vw;
}
.service-card {
  background: rgba(255,255,255,0.13);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(56,189,248,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  margin: 1.2rem 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 2.5px solid rgba(56,189,248,0.18);
  transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
  color: #fff;
  z-index: 1;
}
.service-card .service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #38bdf8 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 16px #38bdf8cc) drop-shadow(0 1px 8px #7c3aedcc);
}
.service-card:hover {
  box-shadow: 0 8px 32px #38bdf8cc, 0 2px 12px #7c3aedcc;
  border: 2.5px solid #7c3aed;
  transform: scale(1.04) translateY(-4px);
}
.service-card .service-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.service-card .service-desc {
  font-size: 1.08rem;
  color: #e0e7ef;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (max-width: 700px) {
  #services {
    min-height: 480px !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  #services-cards {
    min-height: 320px !important;
  }
  .service-card, .service-block {
    max-width: 95vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  section, .content-wrapper {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
  }
  .service-card {
    max-width: 98vw !important;
    min-width: 0 !important;
    padding: 1.2rem 0.5rem 1rem 0.5rem !important;
    font-size: 1rem !important;
  }
  .service-shadow {
    max-width: 98vw !important;
  }
  #services-desc {
    font-size: 0.98rem !important;
    min-height: 80px !important;
    padding: 0.7rem 0.3rem !important;
    max-width: 99vw;
  }
  #services-progress-bar-wrapper {
    max-width: 98vw !important;
  }
  .services-header h2 { font-size: 1.5rem; }
  #services-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.7rem;
    min-height: 180px;
    padding-bottom: 0.5rem;
    align-items: flex-end;
  }
  #services-cards .service-card {
    min-width: 220px !important;
    max-width: 240px !important;
    padding: 1.2rem 0.7rem 1rem 0.7rem !important;
    font-size: 1rem !important;
  }
  #services-desc {
    font-size: 1.01rem !important;
    min-height: 80px !important;
    padding: 0 0.5rem;
  }
}
#services-desc {
  background: rgba(20, 30, 48, 0.82);
  padding: 1.2rem 1.2rem 1.1rem 1.2rem;
  border-radius: 18px;
  margin: 0.7rem auto 0 auto;
  max-width: 700px;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 500;
  box-shadow: 0 2px 16px rgba(30,41,59,0.10);
  backdrop-filter: blur(6px);
  text-align: center;
}
@media (max-width: 700px) {
  #services-desc {
    font-size: 1.01rem !important;
    min-height: 80px !important;
    padding: 1rem 0.5rem !important;
    max-width: 98vw;
    margin: 0.3rem auto 0 auto !important;
  }
}
#services-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  width: 100vw;
  max-width: 100vw;
  overflow: visible;
}
@media (max-width: 700px) {
  #services-cards {
    min-height: 320px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .service-card, .service-shadow {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
/* Testimonials Glassy Card & Creative Enhancements */
.testimonial-glass-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.13);
  border-radius: 28px;
  box-shadow: 0 8px 32px #38bdf855, 0 2px 12px #7c3aed33, 0 0 0 4px rgba(56,189,248,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  border: 2.5px solid #38bdf8;
  position: relative;
  margin: 0 auto;
  animation: fadeInUp 0.7s;
}
.testimonial-avatar-float {
  animation: testiFloat 3.5s infinite alternate;
}
@keyframes testiFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
.testimonials-bg-shape {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 220px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, #38bdf8cc 0%, #7c3aed55 60%, transparent 100%);
  filter: blur(48px) brightness(1.1);
  opacity: 0.55;
}
@media (max-width: 700px) {
  .testimonial-glass-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .testimonials-bg-shape {
    width: 98vw;
    height: 120px;
    top: 18%;
  }
}
.testimonials-arrows button:active {
  transform: scale(0.93);
  background: #38bdf8;
  color: #fff;
}
#testimonials-progress-bar-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  margin-top: 1.2rem;
  background: rgba(56,189,248,0.10);
  border-radius: 3px;
  height: 5px;
  overflow: hidden;
}
#testimonials-progress-bar {
  height: 5px;
  width: 0;
  background: linear-gradient(90deg,#38bdf8 0%,#7c3aed 100%);
  border-radius: 3px;
  transition: width 0.3s;
}
/* Blog Section Creative Styles */
.pro-blog-section {
  background: none;
  position: relative;
  z-index: 1;
}
.blog-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #38bdf8 0%, #7c3aed 100%);
  opacity: 0.10;
  filter: blur(32px);
  pointer-events: none;
}
.pro-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-top: 2.5rem;
  z-index: 1;
}
@media (min-width: 700px) {
  .pro-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .pro-blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.pro-blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.4,1,.7,1), transform 0.7s cubic-bezier(.4,1,.7,1);
  will-change: opacity, transform;
}
.pro-blog-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.creative-glass {
  background: rgba(255,255,255,0.13);
  border-radius: 22px;
  box-shadow: 0 8px 32px #38bdf855, 0 2px 12px #7c3aed33, 0 0 0 3px rgba(56,189,248,0.10);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  border: 2.5px solid #38bdf8;
  backdrop-filter: blur(12px);
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pro-blog-card:hover .creative-glass {
  box-shadow: 0 12px 36px #38bdf8cc, 0 4px 16px #7c3aed55;
  transform: scale(1.025);
}
.pro-blog-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 60%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px #38bdf855;
  animation: blogIconFloat 2.5s infinite alternate;
}
@keyframes blogIconFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.pro-blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.pro-blog-desc {
  font-size: 1.05rem;
  color: #334155;
  text-align: center;
  margin-bottom: 0.2rem;
  line-height: 1.7;
}
.pro-blog-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1.2rem;
  z-index: 2;
}
.pro-blog-knowmore.creative-btn {
  min-width: 120px;
  height: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #38bdf8 60%, #7c3aed 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 12px #38bdf855;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
  padding: 0.7rem 2.2rem 0.7rem 1.2rem;
  gap: 0.7rem;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  transform: translateY(24px) scale(0.95);
  opacity: 0;
}
.pro-blog-card.visible .pro-blog-knowmore.creative-btn {
  animation: btnFloatUp 0.7s 0.2s cubic-bezier(.4,1,.7,1) forwards;
}
@keyframes btnFloatUp {
  0% { opacity: 0; transform: translateY(24px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1.08); }
}
.pro-blog-knowmore.creative-btn:hover {
  box-shadow: 0 6px 24px #38bdf8cc, 0 2px 8px #7c3aed55;
  transform: scale(1.08);
  background: linear-gradient(135deg, #0ea5e9 60%, #38bdf8 100%);
}
.pro-blog-knowmore.creative-btn .btn-text {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.pro-blog-knowmore.creative-btn i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  transition: transform 0.2s;
}
.pro-blog-knowmore.creative-btn:hover i {
  transform: translateX(-4px) scale(1.15);
}
@media (max-width: 700px) {
  .pro-blog-knowmore.creative-btn {
    min-width: 70px;
    height: 38px;
    font-size: 0.95rem;
    padding: 0.4rem 0.9rem 0.4rem 0.5rem;
    gap: 0.4rem;
  }
  .pro-blog-knowmore.creative-btn .btn-text {
    font-size: 0.95rem;
  }
  .pro-blog-card, .creative-glass {
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .pro-blog-grid {
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  body, html {
    overflow-x: hidden;
  }
}
html[dir="rtl"] .pro-blog-title, html[dir="rtl"] .pro-blog-desc {
  text-align: right;
}

section + section, .content-wrapper + .content-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.divider {
  display: none !important;
}

@media (max-width: 700px) {
  #personality, .personality-section {
    min-height: 220px !important;
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }
  #personality-carousel, .traits-ar, .traits-en, .traits-bilingual {
    min-height: 120px !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  .personality-card {
    min-height: 80px !important;
    padding: 0.7em !important;
  }
  .trait-card .trait-icon {
    font-size: 1.3rem !important;
  }
  .trait-ar, .trait-en {
    font-size: 0.7rem !important;
  }
  .services-header {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 700px) {
  .stores-logos-wrapper {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stores-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 0.5rem;
    width: 100%;
    justify-items: center;
    align-items: center;
  }
  .store-logo-card {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    box-sizing: border-box;
  }
  .store-logo-card img {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .stores-arrow {
    display: none !important;
  }
}

@media (min-width: 701px) {
  .stores-arrow {
    display: none !important;
  }
} 

.pro-blog-knowmore,
.pro-blog-knowmore .btn-text,
.pro-blog-btn-wrap a,
.pro-blog-btn-wrap button {
  text-decoration: none !important;
  border-bottom: none !important;
} 