@font-face {
  font-family: "Rubik";
  src:
    url("/fonts/Rubik-Regular.woff2") format("woff2"),
    url("/fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src:
    url("/fonts/Rubik-Light.woff2") format("woff2"),
    url("/fonts/Rubik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src:
    url("/fonts/Vazirmatn-Regular.woff2") format("woff2"),
    url("/fonts/Vazirmatn-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zain";
  src:
    url("/fonts/Zain-Regular.woff2") format("woff2"),
    url("/fonts/Zain-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.header {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background-color: #87ceeb;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  color: white;
}
.brand-name {
  color: white;
  font-family: Vazirmatn, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.banner {
  font-family: Vazirmatn, sans-serif;
  font-size: 12px;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
  margin-left: 190px;
  gap: 18px;
}
nav a {
  color: white;
  font-family: Vazirmatn, sans-serif;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
}
nav a:hover {
  transition: 0.3s ease;
  color: #1e3a5f;
}

.phone {
  z-index: 1000;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.phone:hover {
  transition: 0.3s ease;
  color: #1e3a5f;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  background: linear-gradient(
    90deg,
    rgba(79, 195, 247, 0.06),
    rgba(31, 120, 193, 0.02)
  );
  padding: 60px 20px;
  text-align: right;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero h1 {
  font-family: Zain, sans-serif;
  font-size: 32px;
  margin: 0 0 12px;
  color: #1e3a5f;
}

.hero p {
  font-family: Vazirmatn, sans-serif;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.6;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-family: Vazirmatn, sans-serif;
  color: #6b7280;
}

.hero-features li {
  position: relative;
  padding-right: 22px;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 14.5px;
}

.hero-features li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: #0277bd;
  font-size: 20px;
  line-height: 1;
}

.hero-features strong {
  color: #1e3a5f;
  font-weight: 600;
}

@media (max-width: 480px) {
  .hero-features li {
    font-size: 13.5px;
    line-height: 1.7;
  }
}

.hero-cta {
  display: inline-block;
  background: #0277bd;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: Vazirmatn, sans-serif;
  font-weight: 700;
  transition: 0.2s;
}
.hero-cta:hover {
  background-color: #4fc3f7;
  color: #0277bd;
  outline: 1px solid #0277bd;
}

.panel {
  padding: 40px 0;
}
.panel--white {
  background: #ffffff;
}
.panel--muted {
  background: #eef6ff;
}

.panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
}
.panel-inner.reverse {
  flex-direction: row-reverse;
}

.panel-content {
  flex: 1;
  min-width: 300px;
}
.panel-content h2 {
  font-family: Zain, sans-serif;
  font-size: 28px;
  margin: 0 0 10px;
  color: #1e3a5f;
}

.panel-content p {
  font-family: Vazirmatn, sans-serif;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.7;
}
.panel-content ul {
  font-family: Vazirmatn, sans-serif;
  margin: 0 0 24px;
  padding-right: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.btn {
  margin-top: 20px;
  padding: 10px 16px;
  background-color: #0277bd;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-family: Vazirmatn, sans-serif;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}
.btn--outline {
  border: 1px solid rgba(31, 120, 193, 0.15);
}
.btn--outline:hover {
  background-color: #4fc3f7;
  box-shadow: 0 6px 18px rgba(79, 195, 247, 0.3);
}
.btn:hover {
  background-color: #4fc3f7;
  box-shadow: 0 6px 18px rgba(79, 195, 247, 0.3);
}

.panel-media {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31, 120, 193, 0.08);
}

.footer {
  background: #87ceeb;
  color: #fff;
  padding: 40px 20px 10px;
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #1565c0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-col h3,
.footer-col h4 {
  font-family: Zain;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin: 7px 0;
  font-family: Vazirmatn, sans-serif;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #1e3a5f;
}
.footer-col .footer-p {
  font-family: Vazirmatn, sans-serif;
}
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  font-family: Vazirmatn, sans-serif;
  color: #ffff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 10px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col h3,
  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col a {
    margin: 5px 0;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 14px;
  }
}


@media (max-width: 768px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 72px;
    background: #87ceeb;
    flex-direction: column;
    padding: 12px 20px;
    margin-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 90;
  }

  nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    padding: 14px 0;
  }

  nav a:last-child {
    border-bottom: none;
  }
  .banner {
    font-size: 11px;
  }

  .phone {
    display: none;
  }
  .phone:hover {
    transition: 0.3s;
    color: #1e3a5f;
  }
  .menu-toggle {
    display: block;
    color: white;
  }

  .menu-toggle:hover {
    opacity: 0.7;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 425px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 72px;
    background: #87ceeb;
    flex-direction: column;
    padding: 12px 20px;
    margin-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 90;
  }

  nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    padding: 14px 0;
  }

  nav a:last-child {
    border-bottom: none;
  }
  .banner {
    font-size: 9.7px;
  }

  .phone {
    display: none;
  }
  .phone:hover {
    transition: 0.3s;
    color: #1e3a5f;
  }
  .menu-toggle {
    display: block;
    color: white;
  }

  .menu-toggle:hover {
    opacity: 0.7;
  }

  body.menu-open {
    overflow: hidden;
  }
  .hero-inner h1 {
    font-size: 30px;
  }
}
.gallery-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #f8fafc, #f1f9ff);
  border-top: 1px solid #e2e8f0;
}

.gallery-title {
  font-family: Zain, sans-serif;
  font-size: 28px;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #87ceeb;
  margin: 12px auto;
  border-radius: 2px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  height: 240px;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 95, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  filter: brightness(0.7);
  transform: scale(1.05);
}

.overlay-text {
  font-family: Vazirmatn, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 15px;
  }
  
  .gallery-title {
    font-size: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .overlay-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 12px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .overlay-text {
    font-size: 16px;
    padding: 0 15px;
  }
}