html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
.navbar-nav .culture {
  transition: transform .4s;
}
.navbar-nav .culture:hover {
  transform: scale(0.95);
} 
body {
  margin-bottom: 60px;
}

.bg-main {
    background: linear-gradient(to right, #0d6efd, #003cba) !important; 
}

.phone-number {
    direction: ltr;
    unicode-bidi: bidi-override;
}
/* Profile */
.hero {
    background: linear-gradient(to right, #0d6efd, #003cba);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.pricing .card {
    border-radius: 15px;
    transition: transform .2s;
}

.pricing .card:hover {
    transform: scale(1.05);
}

.blinking {
font-size: 8rem;
color: #ffc107; /* أصفر تحذير */
animation: blink 1s infinite;
}

@keyframes blink {
0%, 75%, 100% { opacity: 1; }
25%, 75% { opacity: 0; }
}