/* Цвета из палитры */
    :root {
      --color-light-blue: #B3D3FA;
      --color-blue: #77A9E0;
      --color-medium-blue: #3B63A6;
      --color-dark-blue: #0B2346;
      --color-black: #101015;
	  --color-gold: #d4af37;
	  --transition: 0.3s ease;
      --color-light-bg: #f9fafb;
  }	
    /* Сброс и базовые стили */
    * {
      box-sizing: border-box;
    }
    html, body {
		min-width:320px;
      margin: 0; padding: 0;
      font-family: 'Inter', sans-serif;
      background-color: var(--color-light-blue);
      color: var(--color-black);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Navbar */
    .navbar {
      *background-color: var(--color-dark-blue);
      transition: all 0.3s;
      min-height: 90px;
      *box-shadow: 0 2px 8px rgb(11 35 70 / 0.08);
      padding: 0.5rem 1rem;
      z-index: 1030;
    }
    .navbar.shrink {
      min-height: 56px;
      padding: 0.25rem 1rem;
	  background-color: var(--color-dark-blue);
	  box-shadow: 0 2px 8px rgb(11 35 70 / 0.08);
    }
    .navbar-brand img {
      height: 100px;
      transition: height 0.3s;
    }
    .navbar.shrink .navbar-brand img {
      height: 32px;
    }
    .navbar-nav .nav-link {
      color: white;
      font-weight: 600;
      margin-right: 1rem;
      transition: color 0.3s;
      position: relative;
      white-space: nowrap;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:hover {
      color: var(--color-blue);
    }
    .navbar-nav .nav-link.active::after {
      content: '';
      display: block;
      *margin: 0.25rem auto 0;
      width: 10%;
      border-bottom: 2px solid var(--color-blue);
    }
    /* Hero Section */
    #hero {
      position: relative;
      height: 90vh;
	  width: 100%;
	  max-width:unset;
      *background: url('bg_01.jpg') center center/cover no-repeat;
	  color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 0 1rem;
    }
    #hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(11, 35, 70, 0.7);
      z-index: 0;
    }
    #hero .content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }
    #hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.1;
	  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }
    #hero p.h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.1;
	  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }	
    #hero p {
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin-bottom: 2rem;
	  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }
    #hero .btn-primary {
      background-color: var(--color-blue);
      border: none;
	padding: 3rem 1rem;
    margin-top: 2.1em;
	  width: 100%;
	  font-size: 1.5rem;
      font-weight: 600;
      border-radius: 30px;
      transition: background-color 0.3s;
    }
    #hero .btn-primary:hover {
      background-color: var(--color-medium-blue);
    }
	.hero-video-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		filter: brightness(0.7) saturate(1.1);
		z-index: 1;
		pointer-events: none;
	}
    /* Отступы для секций и предотвращение горизонтального скролла */
    section {
      scroll-margin-top: 90px;
      padding-left: 1rem;
      padding-right: 1rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    /* Quick Search */
    #quick-search {
      background-color: white;
      padding: 3rem 1rem;
      box-shadow: 0 2px 8px rgb(11 35 70 / 0.1);
      margin-top: -4rem;
      border-radius: 12px;
      position: relative;
      z-index: 10;
    }
    #quick-search h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: var(--color-dark-blue);
      font-weight: 700;
    }
    .form-control, .form-select {
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      max-width: 100%;
    }
    .btn-search {
      background-color: var(--color-blue);
      color: white;
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
      transition: background-color 0.3s;
      width: 100%;
    }
    .btn-search:hover {
      background-color: var(--color-medium-blue);
    }
    /* Popular Properties */
    #popular-properties {
      padding: 4rem 0 2rem;
      background-color: var(--color-light-blue);
    }
    #popular-properties h2 {
      text-align: center;
      margin-bottom: 2rem;
      color: var(--color-dark-blue);
      font-weight: 700;
    }
    .property-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgb(11 35 70 / 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
      height: 100%;
    }
    .property-card:hover {
      transform: translateY(-10px);
    }
    .property-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.3s;
      cursor: pointer;
    }
    .property-img:hover {
      transform: scale(1.05);
    }
    .property-info {
      padding: 1rem 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .property-title {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--color-medium-blue);
    }
    .property-desc {
      font-size: 0.95rem;
      color: #555;
      flex-grow: 1;
      margin-bottom: 1rem;
    }
    .property-price {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--color-blue);
      margin-bottom: 1rem;
    }
    .btn-details {
      align-self: auto;
      background-color: var(--color-blue);
      color: white;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 30px;
      font-weight: 600;
      transition: background-color 0.3s;
      margin-top: auto;
    }
    .btn-details:hover {
      background-color: var(--color-light-blue);
    }
	
	article.card {*margin-left: 8px; *margin-right: 8px;}
	.card-title {text-align:center;}
	.card-text {text-align: justify;}
	.card-button-container {text-align:center;margin-top:auto;}
	.card-img-top {object-fit: cover; height: 200px;}
	
	
    /* Parallax sections через одну */
    .parallax {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
	  max-width:unset;
      color: white;
      padding: 6rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin: 4rem auto;
      *border-radius: 12px;
    }
	.parallax::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.2);
	  z-index: 0;
	}
	.parallax > * {
	  position: relative;
	  z-index: 1;
	}	
	.parallax .section-title {color:#fff;text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);}
	
    .section-title {
      color: var(--color-dark-blue);
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
      font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    }
    /* Gallery */
    #gallery .gallery-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s;
      cursor: pointer;
      margin-bottom: 1rem;
    }
    #gallery .gallery-img:hover {
      transform: scale(1.05);
    }
    /* Full Property Card */
    #property-full {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 15px rgb(11 35 70 / 0.15);
      padding: 2rem;
      margin-bottom: 4rem;
    }
    #property-full h2 {
      color: var(--color-medium-blue);
      margin-bottom: 1rem;
      font-weight: 700;
    }
    #property-full .gallery-thumbs {
      display: flex;
      gap: 10px;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }
    #property-full .gallery-thumbs img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.3s;
    }
    #property-full .gallery-thumbs img.active,
    #property-full .gallery-thumbs img:hover {
      border-color: var(--color-blue);
    }
    #property-full .main-image {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgb(11 35 70 / 0.2);
    }
    #property-full .description {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: var(--color-black);
    }
    #property-full table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1.5rem;
    }
    #property-full table th,
    #property-full table td {
      border: 1px solid #ddd;
      padding: 0.75rem 1rem;
      text-align: left;
      color: var(--color-dark-blue);
    }
    #property-full table th {
      background-color: var(--color-light-blue);
      font-weight: 600;
    }
    #property-full iframe {
      width: 100%;
      *height: 300px;
      border-radius: 12px;
      border: 1px solid #eee;
    }
    /* FAQ */
    .faq-question {
      cursor: pointer;
      font-weight: 600;
      color: var(--color-medium-blue);
      margin-top: 1rem;
      user-select: none;
    }
    .faq-answer {
      display: none;
      color: var(--color-black);
      margin-bottom: 1rem;
      padding-left: 1rem;
      border-left: 3px solid var(--color-blue);
    }
    /* Responsive fixes */
    @media (max-width: 991px) {
      .navbar {
        min-height: 56px;
        padding: 0.25rem 1rem;
      }
      .navbar-brand img {
        height: 32px;
      }
      #property-full .gallery-thumbs img {
        width: 60px;
        height: 45px;
      }
      #property-full .main-image {
        max-height: 250px;
      }
    }
	/* Footer */
	footer {
	  background-color: var(--color-dark-blue);
	  color: white;
	  padding: 2rem 1rem;
	  text-align: center;
	  font-size: 0.9rem;
	}
	
	#blog {
		.card {padding-top:20px;}
	}
	#contact {
		border-radius: 12px;
		box-shadow: 0 2px 15px rgb(11 35 70 / 0.15);
		padding: 2rem;
		margin-bottom: 4rem;
		background-color: var(--color-dark-blue);
		color: #fff;
		h5, p {text-align:right;}
		.section-title {color:#fff;}
		.ratio {height:100%}
	}
	#contact a {color:#fff;}
	#contact a:hover {color:var(--color-light-blue);}
	
	svg {
		display: inline-block;
		vertical-align: middle;
	}
	.feature-icon:hover {transform: scale(1.2);}
	.feature-icon {
		width: 60px;
		height: 60px;
		margin: 0 auto 20px auto;
		color: var(--color-blue);
		transition: transform var(--transition);
	}
	
  /*.faq-section {
    background: #f9fafb;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }*/
  #faqAccordion{max-width:700px;margin: 0 auto;}
  .faq-section .section-title {
    *color: var(--color-dark-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  }
  .accordion-button {
    font-weight: 600;
    color: var(--color-medium-blue);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(11 35 70 / 0.1);
    transition: background-color 0.3s, color 0.3s;
  }
  .accordion-button:hover, .accordion-button:focus {
    background-color: var(--color-blue);
    color: white;
    text-decoration: none;
  }
  .accordion-button:not(.collapsed) {
    background-color: var(--color-blue);
    color: white;
    box-shadow: 0 4px 12px rgb(11 35 70 / 0.2);
  }
  .accordion-body {
    background-color: white;
    color: var(--color-black);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgb(11 35 70 / 0.1);
    padding: 1rem 1.5rem;
	text-align: left;
  }
  .icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: fill 0.3s;
  }
  .accordion-button:hover .icon,
  .accordion-button:focus .icon,
  .accordion-button:not(.collapsed) .icon {
    fill: white;
  }	
  

  .fixed-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-blue);
    border-radius: 30px;//50%;
	border: 1px gray solid;
    width: auto; //60px;
	padding: 20px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(11,35,70,0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    z-index: 1050;
    transition: background-color 0.3s ease;
	animation: pulse-scale 2.0s infinite;
  }
  .fixed-contact-btn:hover {
    background-color: var(--color-medium-blue);
  }
  .contact-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--color-light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11,35,70,0.3);
    width: 280px;
    max-width: 90vw;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1050;
  }
  .contact-panel.show {
    display: flex;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(11,35,70,0.1);
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark-blue);
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  .contact-item:hover {
    background-color: var(--color-blue);
    color: white;
  }
  .contact-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  #openFormBtn {
	background-color: var(--color-light-blue);
  }
  #openFormBtn:hover {
	background-color: var(--color-medium-blue);
  }

  /* Модальное окно */
  .modal-backdrop-c {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    display: none;
  }
  .modal-backdrop-c.show {
    display: block;
  }
/*  
  .modal0 {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 20px rgba(11,35,70,0.3);
    transform: translate(-50%, -50%);
    z-index: 1101;
    display: none;
    flex-direction: column;
  }
  .modal0.show {
    display: flex;
  }
*/  
  .modal-header {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark-blue);
  }
  .modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-blue);
    cursor: pointer;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-dark-blue);
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
  }
  .form-group textarea {
    resize: vertical;
  }
  .btn-submit {
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .btn-submit:hover {
    background-color: var(--color-medium-blue);
  }
  .form-message {
    margin-top: 10px;
    font-weight: 600;
  }
  .form-message.success {
    color: green;
  }
  .form-message.error {
    color: red;
  }  
  

  /* Модальное окно из виджета обр.связи*/
  .modal-backdrop-c {
    position: fixed;
    inset: 0;
    background: rgba(11, 35, 70, 0.6);
    z-index: 1100;
    display: none;
    backdrop-filter: blur(4px);
  }
  .modal-backdrop-c.show {
    *display: block;
  }
  .modal0 {
    position: fixed;
    top: 50%;
    left: 50%;
	height: auto;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 35px 35px;
    box-shadow: 0 12px 30px rgba(11, 35, 70, 0.25);
    transform: translate(-50%, -50%);
    z-index: 1101;
    display: none;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
  }
  .modal0.show {
    display: flex;
  }
  .modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  .modal-close:hover,
  .modal-close:focus {
    color: var(--color-blue);
    outline: none;
  }
  .modal-header {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-dark-blue);
    text-align: center;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-medium-blue);
    user-select: none;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 8px var(--color-blue);
    outline: none;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  .btn-submit {
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 14px 0;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    user-select: none;
  }
  .btn-submit:hover,
  .btn-submit:focus {
    background-color: var(--color-medium-blue);
    outline: none;
  }
  .form-message {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
  }
  .form-message.success {
    color: green;
  }
  .form-message.error {
    color: red;
  }  
  

  /* Модальное окно modal2 для полной карточки объекта*/
  #modal2Backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 35, 70, 0.6);
    z-index: 1200;
    display: none;
    backdrop-filter: blur(4px);
  }
  #modal2Backdrop.show {
    display: block;
  }
  #modal2 {
    position: fixed;
    top: 50%;
    left: 50%;
    background: white;
    border-radius: 16px;
    padding: 20px 25px 30px;
    box-shadow: 0 12px 30px rgba(11, 35, 70, 0.25);
    transform: translate(-50%, -50%);
    z-index: 1201;
    display: none;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    max-width: 900px;
    font-family: 'Inter', sans-serif;
  }
  #modal2.show {
    display: flex;
  }
  #modal2 .modal-close {
    position: absolute;
    top: 15px;
    right: 33px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  #modal2 .modal-close:hover,
  #modal2 .modal-close:focus {
    color: var(--color-blue);
    outline: none;
  }  

/* slider Property Catalog */
  .slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.slider-item {
  flex: 0 0 auto;
  padding: 5px 10px 0 10px;
  border:1px solid gray;
  box-sizing: border-box;
  width: 100%; /* будет переопределено JS */
  margin: 10px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-blue);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.slider-btn:hover {
  background-color: var(--color-medium-blue);
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}
.slider-item:first-child {
  padding-left: 10px;
}
.slider-item:last-child {
  padding-right: 10px;
}


/* modal3 */

  /* Кнопка с пульсацией и мерцанием */
  
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(119, 169, 224, 0.7); }
    50% { box-shadow: 0 0 15px 8px rgba(119, 169, 224, 0.4); }
  }
  @keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      opacity: 1;
    }
    20%, 22%, 24%, 55% {
      opacity: 0.6;
    }
  }
  
@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(119, 169, 224, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px 8px rgba(119, 169, 224, 0.4);
  }
}

.director-contact-btn {
  *position: fixed;
  bottom: 111px;
  right: 30px;
  background-color: #030687; //var(--color-dark-blue);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1050;
  *animation: pulse-scale 2.0s infinite;/*, flicker 3.5s infinite, pulse 1.0s infinite;*/
  box-shadow: 0 0 10px rgba(119, 169, 224, 0.7);
  user-select: none;
  transition: background-color 0.3s ease;
}
  .director-contact-btn:hover,
  .director-contact-btn:focus {
    background-color: var(--color-medium-blue);
    outline: none;
  }

  /* Модальное окно */
  #modal3Backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 35, 70, 0.6);
    z-index: 1200;
    display: none;
    backdrop-filter: blur(4px);
  }
  #modal3Backdrop.show {
    display: block;
  }
  #modal3 {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 35px 35px;
    box-shadow: 0 12px 30px rgba(11, 35, 70, 0.25);
    transform: translate(-50%, -50%);
    z-index: 1201;
    display: none;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
  }
  #modal3.show {
    display: flex;
  }
  #modal3 .modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  #modal3 .modal-close:hover,
  #modal3 .modal-close:focus {
    color: var(--color-blue);
    outline: none;
  }
  #modal3 .modal-header {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-dark-blue);
    text-align: center;
  }
  #modal3 .form-group {
    margin-bottom: 10px;
  }
  #modal3 .form-group label {
    display: block;
    font-weight: 600;
    *margin-bottom: 8px;
    color: #030687; //var(--color-medium-blue);
    user-select: none;
  }
  #modal3 .form-group input,
  #modal3 .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  #modal3 .form-group input:focus,
  #modal3 .form-group textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 8px var(--color-blue);
    outline: none;
  }
  #modal3 .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  #modal3 .btn-submit {
    background-color: #030687; //var(--color-blue);
    color: white;
    border: none;
    padding: 14px 0;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    user-select: none;
  }
  #modal3 .btn-submit:hover,
  #modal3 .btn-submit:focus {
    background-color: var(--color-medium-blue);
    outline: none;
  }
  #directorFormMessage {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
  }
  #directorFormMessage.success {
    color: green;
  }
  #directorFormMessage.error {
    color: red;
  }
  
  .modal_video {
    position: fixed;
    top: 50%;
    left: 50%;
	max-height: 90%;
    width: 90%;
    *max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(11, 35, 70, 0.25);
    transform: translate(-50%, -50%);
    z-index: 1101;
    display: none;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
	cursor:pointer;
  }  
  .closevideo {
	  cursor:pointer;
	  font-size:3em;
	  font-weight:600;
	  color:gray;
	  right: 20px;
	  top: 0;
	  z-index:133;
	  position: absolute;
  }
  .closevideo:hover {color:#fff;}
  #modalVideo {
	border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(11, 35, 70, 0.25);	  
  }
  
  .currency-switcher {
    position: relative;
    width: 101px;
    font-family: Arial, sans-serif;
    user-select: none;
    cursor: pointer;
    font-size: 14px;
  }
  .currency-switcher__selected {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .currency-switcher__selected img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
  }
  .currency-switcher__selected svg {
    fill: #555;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  .currency-switcher__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
  }
  .currency-switcher.open .currency-switcher__options {
    display: block;
  }
  .currency-switcher__option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
  }
  .currency-switcher__option:hover {
    background-color: #e6f0ff;
  }
  .currency-switcher__option img {
    width: 20px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
  }

.card-body span {cursor:default; white-space: nowrap; margin-right:5px;}
.card-body span i {font-size: 25px;width: 35px;text-align: center;margin-right:3px;}
.card-body span:hover i {
    transform: scale(1.2);
    transform-origin: center;
    transition: all 0.3s ease
} 
.color-cast4 {
    color: #120b8f;
}
.card-btn {color:#fff;background-color:#120b8f;}
.card-btn:hover {background-color:var(--color-light-blue);}