html, body {
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 0;
  background: #f7fafc;
  color: #213448;
  scroll-behavior: smooth;
  min-height: 100vh;
}
nav {
  width: 100vw;
  background: linear-gradient(
    to bottom,
    var(--color-background-dark) 80%,
    var(--color-background) 100%
  );
  box-shadow: 0 2px 8px #0006;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s;
  border-bottom: 1px solid #314d6c;
}
.nav-container {
  width: 100vw;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff !important;
  letter-spacing: 0.05em;
  margin-left: 2rem;
  margin-right: 2rem;
}
.navbar-logo {
  height: 38px;
  width: auto;
  margin-left: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 700px) {
  .navbar-logo { height: 30px; margin-left: 0.5rem; }
}
.menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  width: 100%;
}
.menu li {
  display: inline-block;
}
.menu-link {
  display: inline-block;
  padding: 0.5rem 0.8rem 0.5rem 0.8rem;
  border-radius: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  transition: color 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: visible;
}
.menu-link:after {
  content: '';
  display: block;
  position: absolute;
  right: 25%; left: 25%; bottom: 0.2em;
  height: 2.5px;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.menu-link:hover:after, .menu-link:focus:after {
  width: 50%;
}
.menu-link:hover, .menu-link:focus {
  color: #fff;
  background: none;
  box-shadow: none;
}
.logo, .nav-container .menu-link {
  color: #f5f6fa !important;
}
@media (max-width: 700px) {
  .nav-container { flex-direction: column; padding: 0 0.5rem; }
  .menu { gap: 0.7rem; }
  .logo { margin-bottom: 0.5rem; }
}
main {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 0;
  margin: 0;
}
body, main {
  background: linear-gradient(
    to bottom,
    var(--color-background) 60%,
    var(--color-background-light) 100%
  );
}
.hero-slider {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--color-primary);
  box-shadow: 0 4px 24px #33344622;
  min-height: 180px;
}
.hero-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  color: var(--color-text);
  font-size: 1.5rem;
  min-height: 180px;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0; top: 0;
  background: var(--color-primary);
}
.hero-slide.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.hero-slide h1 {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.hero-slide h2 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.hero-slide p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0;
}
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, box-shadow 0.3s;
}
.hero-slider-dot.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--color-secondary);
}
@media (max-width: 700px) {
  .hero-slider { min-height: 120px; }
  .hero-slide { font-size: 1.1rem; padding: 2rem 0.5rem 1.5rem 0.5rem; }
  .hero-slide h1 { font-size: 1.3rem; }
  .hero-slide h2 { font-size: 1rem; }
}
.home-section {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    var(--color-background) 60%,
    var(--color-background-light) 100%
  );
}
#particles-js canvas {
  background: transparent !important;
}
#bg-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  transition: background 0.8s cubic-bezier(.4,0,.2,1);
  background: linear-gradient(135deg, var(--color-background), var(--color-background-light));
}
.main-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100vw;
  color: #fff;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  display: inline-block;
}
.main-content h1 {
  background: none;
  color: #fff !important;
  font-weight: bold;
  font-size: 3.2rem;
  padding: 0.3em 1.2em 0.25em 1.2em;
  border-radius: 0.2em;
  margin-bottom: 1.2rem;
  box-shadow: none;
}
.main-content h2 {
  background: none;
  color: #b0b7c3 !important;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.main-content p {
  background: none;
  color: #e0e1ee !important;
  font-size: 1.3rem;
  margin-bottom: 2.2rem;
}
.main-content .main-btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 2em;
  padding: 0.7em 2.2em;
  margin-top: 1.2rem;
  box-shadow: 0 2px 12px #0003;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-content .main-btn:hover, .main-content .main-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 24px #1857c799;
}
@media (max-width: 700px) {
  .nav-container { flex-direction: column; padding: 0 0.5rem; }
  .menu { gap: 0.7rem; }
  .logo { margin-bottom: 0.5rem; }
  .main-content h1 { font-size: 2rem; padding: 0.2em 0.7em; }
  .main-content h2 { font-size: 1.1rem; }
  .main-content p { font-size: 1rem; }
  .main-content .main-btn { font-size: 1rem; padding: 0.6em 1.2em; }
}
.services-section {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 5rem 0 4rem 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(
    to bottom,
    #466a96 0%,
    #314d6c 100%
  );
}
.services-title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}
.services-title i {
  color: var(--color-accent);
  margin-left: 0.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}
.service-card {
  background: none;
  border-radius: 1.2rem;
  box-shadow: none;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  color: var(--color-text);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 32px #0002;
}
.service-icon {
  font-size: 2.3rem;
  color: var(--color-accent);
  margin-bottom: 1.1rem;
  display: block;
}
.service-card h3 {
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.service-card p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin: 0;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
.about-section {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 4rem 0 3rem 0;
  background: linear-gradient(
    to bottom,
    #2e3d54 0%,
    #314d6c 100%
  );
}
.about-title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}
.about-title i {
  color: var(--color-accent);
  margin-left: 0.5rem;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 2.1;
  text-align: center;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.about-list li {
  color: var(--color-text);
  font-size: 1.08rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1em;
  padding: 0.7em 2em;
  display: inline-block;
}
@media (max-width: 700px) {
  .about-content { font-size: 1rem; }
  .about-title { font-size: 1.3rem; }
  .about-list li { font-size: 0.98rem; padding: 0.6em 1em; }
}
.faq-section {
  width: 100vw;
  max-width: none;
  margin: 3rem 0 0 0;
  padding: 3.5rem 0 2.5rem 0;
  background: rgba(255,255,255,0.04);
  border-radius: 0;
  box-shadow: 0 2px 16px #0001;
  text-align: right;
}
.faq-title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}
.faq-list-wrapper {
  display: grid;
  place-items: center;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}
.faq-list li {
  background: rgba(49,77,108,0.92); /* darker for better contrast */
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #0001;
  padding: 1.3rem 1.5rem 1.1rem 1.5rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.faq-list li strong {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.7em;
  font-size: 1.08em;
  display: block;
}
.faq-list li span {
  color: #e0e1ee;
  font-size: 1em;
  display: block;
}
@media (max-width: 900px) {
  .faq-list { grid-template-columns: 1fr; gap: 1.5rem 0; }
}
@media (max-width: 700px) {
  .faq-title { font-size: 1.3rem; }
  .faq-list li { font-size: 0.98rem; padding: 1rem 0.7rem; }
}
.faq-list li:before {
  content: '\f059'; /* FontAwesome fa-question-circle */
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  color: var(--color-accent);
  position: absolute;
  right: 0;
  top: 0.1em;
  font-size: 1.1em;
}
.faq-list strong {
  color: var(--color-accent);
  font-weight: bold;
}
@media (max-width: 700px) {
  .faq-section { padding: 1.2rem 0.5rem; }
  .faq-list li { font-size: 0.98rem; }
}
.contact-section {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 4rem 0 3rem 0;
  background: linear-gradient(
    to bottom,
    #314d6c 0%,
    #253a50 100%
  );
}
.contact-title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}
.contact-title i {
  color: var(--color-accent);
  margin-left: 0.5rem;
}
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 2.1;
  text-align: center;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.contact-list li {
  color: var(--color-text);
  font-size: 1.08rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1em;
  padding: 0.7em 2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.contact-list a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-list i {
  color: var(--color-accent);
  font-size: 1.2em;
  margin-left: 0.5em;
}
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.contact-social {
  color: var(--color-accent);
  font-size: 2rem;
  transition: color 0.2s, transform 0.2s;
}
.contact-social:hover, .contact-social:focus {
  color: #fff;
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .contact-content { font-size: 1rem; }
  .contact-title { font-size: 1.3rem; }
  .contact-list li { font-size: 0.98rem; padding: 0.6em 1em; }
  .contact-social { font-size: 1.4rem; }
} 
.services-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1100px;
  padding: 2rem 1rem 0 1rem;
}
.service-glass-card {
  background: rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-glass-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px 0 rgba(31,38,135,0.18);
}
.service-glass-icon {
  font-size: 2.8rem;
  color: #b2d7ff;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px #314d6c44);
}
.service-glass-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.service-glass-card p {
  color: #e0e1ee;
  font-size: 1.08rem;
  margin: 0;
}
@media (max-width: 900px) {
  .services-glass-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
    padding: 1.2rem 0.5rem 0 0.5rem;
  }
} 
.about-section-glass, .contact-section-glass {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 4rem 0 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.about-glass-card, .contact-glass-card {
  background: rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.about-glass-card:hover, .contact-glass-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px 0 rgba(31,38,135,0.18);
}
.about-title, .contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}
.about-title i, .contact-title i {
  color: #b2d7ff;
  margin-left: 0.5rem;
  font-size: 1.3em;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.about-list li {
  color: #fff;
  font-size: 1.08rem;
  background: rgba(49,77,108,0.18);
  border-radius: 1em;
  padding: 0.7em 2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.about-list i {
  color: #b2d7ff;
  font-size: 1.2em;
  margin-left: 0.5em;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.contact-list li {
  color: #fff;
  font-size: 1.08rem;
  background: rgba(49,77,108,0.18);
  border-radius: 1em;
  padding: 0.7em 2em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.contact-list a {
  color: #b2d7ff;
  text-decoration: none;
  font-weight: 500;
}
.contact-list i {
  color: #b2d7ff;
  font-size: 1.2em;
  margin-left: 0.5em;
}
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.contact-social {
  color: #b2d7ff;
  font-size: 2rem;
  transition: color 0.2s, transform 0.2s;
}
.contact-social:hover, .contact-social:focus {
  color: #fff;
  transform: scale(1.15);
}
@media (max-width: 900px) {
  .about-glass-card, .contact-glass-card { padding: 1.5rem 0.7rem 1.2rem 0.7rem; }
}
@media (max-width: 700px) {
  .about-title, .contact-title { font-size: 1.3rem; }
  .about-list li, .contact-list li { font-size: 0.98rem; padding: 0.6em 1em; }
  .contact-social { font-size: 1.4rem; }
} 
.about-contact-section-glass {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 4rem 0 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.about-contact-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem 4rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  padding: 0 2vw;
}
.about-glass-card, .contact-glass-card {
  min-width: 280px;
  max-width: 420px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about-contact-glass-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
    padding: 0 0.5rem;
  }
  .about-glass-card, .contact-glass-card {
    min-width: 0;
  }
} 
.posts-section-glass {
  width: 100vw;
  margin: 0;
  max-width: none;
  padding: 4rem 0 3rem 0;
  background: none;
}
.posts-title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}
.posts-title i {
  color: #b2d7ff;
  margin-left: 0.5rem;
  font-size: 1.3em;
}
.posts-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.posts-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.posts-carousel::-webkit-scrollbar { display: none; }
.post-glass-card {
  background: rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.18);
  min-width: 260px;
  max-width: 320px;
  flex: 0 0 320px;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.post-glass-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px 0 rgba(31,38,135,0.18);
}
.post-glass-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}
.post-glass-card a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.post-glass-card a:hover, .post-glass-card a:focus {
  color: #b2d7ff;
}
.carousel-arrow {
  background: rgba(49,77,108,0.18);
  border: none;
  border-radius: 50%;
  color: #b2d7ff;
  font-size: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.carousel-arrow:hover, .carousel-arrow:focus {
  background: #b2d7ff;
  color: #314d6c;
  transform: scale(1.12);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b2d7ff;
  opacity: 0.3;
  border: none;
  transition: opacity 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.carousel-dot.active {
  opacity: 1;
  box-shadow: 0 0 0 2px #314d6c;
}
@media (max-width: 900px) {
  .posts-carousel-wrapper { max-width: 100vw; }
  .post-glass-card { min-width: 220px; max-width: 260px; flex: 0 0 260px; }
}
@media (max-width: 700px) {
  .posts-title { font-size: 1.3rem; }
  .post-glass-card { font-size: 0.98rem; padding: 1.2rem 0.5rem; }
  .carousel-arrow { font-size: 1.3rem; width: 2rem; height: 2rem; }
} 
.post-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 1.1rem 1.1rem 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px #0002;
  background: #314d6c;
}
.post-link {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.5em 1.5em;
  background: rgba(49,77,108,0.18);
  color: #b2d7ff;
  border-radius: 2em;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.post-link:hover, .post-link:focus {
  background: #b2d7ff;
  color: #314d6c;
  box-shadow: 0 4px 16px #b2d7ff44;
} 
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,40,60,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.modal-content {
  background: rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 900px;
  width: 90vw;
  min-width: 320px;
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal-content iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 1.2rem;
  background: #fff;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.modal-close:hover, .modal-close:focus {
  color: #b2d7ff;
}
@media (max-width: 700px) {
  .modal-content { padding: 0.7rem 0.2rem 0.2rem 0.2rem; max-width: 99vw; }
  .modal-content iframe { height: 350px; }
  .modal-close { font-size: 1.5rem; top: 0.5rem; left: 0.5rem; }
} 
.about-contact-section-glass,
.about-section-glass,
.contact-section-glass,
.posts-section-glass,
.faq-section {
  background: linear-gradient(135deg, #466a96, #314d6c) !important;
} 

/* Ensure all links are white */
a, a:link, a:visited, a:hover, a:focus {
  color: #fff !important;
  text-decoration: none;
} 