/* Custom Global Styles - Arial Based */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #081519;
  color: #d7e5ea;
  margin: 0;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.font-bold {
  font-weight: bold;
}

.font-semibold {
  font-weight: 600; /* Semi-bold equivalent in Arial */
}

/* Colors from original theme */
:root {
  --primary: #8ad3d7;
  --primary-dark: #317d81;
  --surface-container: #152126;
  --on-surface-variant: #bdc9c8;
  --outline-variant: #3e4949;
}

.text-primary {
  color: var(--primary);
}

.text-vedic-maths {
  color: var(--primary);
  font-size: 48px;
  font-variation-settings: "opsz" 48;
}

.text-tertiary {
  color: var(--tertiary);
}
.text-on-surface-variant {
  color: var(--on-surface-variant);
}
.text-primary-fixed-dim {
  color: var(--primary-fixed-dim);
}
.bg-background {
  background-color: #081519;
}
.bg-surface-container-low {
  background-color: #101d21;
}
.bg-surface-container-lowest {
  background-color: #041014;
}

.text-black,
.text-input-color {
  color: #000;
}

.glass-card {
  background: rgba(31, 44, 48, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(62, 73, 73, 0.15);
  transition:
    transform 1s ease,
    background 1s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.text-gradient {
  background: linear-gradient(135deg, #8ad3d7 0%, #317d81 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(135deg, #8ad3d7 0%, #317d81 100%);
  color: #003739;
}

/* Subject Grid Styling */
.subject-card {
  background: #1f2c30;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease;
  text-align: center;
}

#experts {
  background-color: var(--surface-container-low);
  color: var(--on-surface);
  font-family: "Arial", sans-serif;
}

.subject-card:hover {
  transform: translateY(-2px);
  background: #2a373b;
}

.subject-card span {
  font-size: 2.5rem;
}

/* Social Buttons */
.social-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;

  display: inline-flex;
  align-items: center;
  gap: 8px; /* controls spacing */
}

.instagram {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.1);
}
.whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}
.telegram {
  color: #0088cc;
  background: rgba(0, 136, 204, 0.1);
}
.linkedin {
  color: #83a7f9;
  background: rgba(0, 136, 204, 0.1);
}

.social-btn:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.border-primary\/10 {
  border-color: rgba(138, 211, 215, 0.1);
}

/* Responsive Alignment */
@media (max-width: 768px) {
  .text-left {
    text-align: left;
  }
}
