body {
    font-family: 'Inter', sans-serif;
    min-width: 375px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    background-color: white;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.header-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.left_side {
    display: flex;
    gap: 225px;
}

.logo img {
    width: 57px;
    height: 64px;
}

.btn-find {
    padding: 12px 10px;
    background-color: #02B000;
    color: black;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1772B9;
}

.left_nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.left_nav ul {
    display: flex;
    gap: 48px;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
}

.left_nav ul li {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

.left_nav ul li a {
    text-decoration: none;
    color: #1772B9;
}

#languageSwitcherDesktop, #languageSwitcherMobile {
    background: none;
    border: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    color: #1772B9;
    cursor: pointer;
    outline: none;
    padding-right: 14px; /* место для стрелки */
    
    /* кастомная стрелка */
    appearance: none; /* отключаем стандартную */
    -moz-appearance: none;
    -webkit-appearance: none;
    
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231772B9' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav a {
    padding: 15px;
    text-decoration: none;
    color: #1772B9;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.custom-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        #1772B9;
    border: none;
}

/* section-start */
.minaret-section {
    font-family: 'Dancing Script', cursive;
    color: #1772B9;
    background-color: #fff;
    margin-bottom: 120px;
}

.minaret-title {
    text-align: center;
    font-size: 62px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 400;
    margin-top: 15px;
}

.minaret-title::after {
    content: "";
    display: block;
    height: 2px;
    width: 740px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        #1772B9;
    margin: 15px auto 0;
}

.minaret-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    align-content: space-around;
}

#ar-prompt {
    display: none;
}

.modelviewer{
    width: 678px;
    height: 400px;
}

.photo-slider {
  position: relative;
  width: 678px;   /* same width as your 3D model */
  height: 400px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slides img.active {
  display: block;
}

.photo-slider .prev,
.photo-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(23, 114, 185, 0.7);
  color: white;
  border: none;
  width: 40px;      /* одинаковая ширина */
  height: 40px;     /* одинаковая высота */
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%; /* делает кнопку круглой */
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #333;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-btn.left {
  left: 10px;
}

.arrow-btn.right {
  right: 10px;
}

.minaret-text-box {
    max-width: 1120px;
    padding: 30px 52px;
    border-radius: 15px;
    border: 1px solid #eee;
    background-color: #fff;
}

.minaret-subtitle {
    font-size: 36px;
    margin-bottom: 13px;
    font-weight: 400;
    text-align: center;
}

.minaret-text {
    font-size: 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #1772B9;
    margin-bottom: 20px;
}

.minaret-text-last {
    font-size: 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #1772B9;
}

.map-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.iframe-google-maps {
    width: 1120px;
    height: 500px;
    border: none;
    border-radius: 8px;
}

/* footer-start */
.footer {
    background-color: #F1F4F6;
    padding: 10px 15px 3px 15px;
}

.footer-quote {
    text-align: center;
    color: #5D5D5D;
    font-size: 16px;
    font-family: 'Cutive Mono', monospace;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-icons {
    display: flex;
    gap: 10px;
    margin-right: 37px;
}

.footer-logo {
    width: 33px;
    height: 37px;
}

.footer-linkedin {
    width: 37px;
    height: 37px;
}

.footer-copy {
    font-size: 11px;
    color: #1772B9;
    margin-right: 22px;
}