/* ==========================================
   ETHOS PROPERTY MANAGEMENT - MAIN STYLESHEET
   ========================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #237bd7;
  --primary-hover: #1e3a8a;
  --azure: #167cdf;
  --dark-blue: #0a1741;
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--azure);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== BOOTSTRAP CUSTOMIZATION ===== */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-control, .form-select {
  border-color: var(--border-color);
  padding: 10px 15px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.pagination .page-link {
  color: var(--primary);
  border-color: var(--border-color);
}
.pagination .active .page-link {
	color:#fff !important;
	
}
.pagination .page-link:hover {
  background-color: var(--light-bg);
  border-color: var(--primary);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--dark-blue);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--azure);
  font-weight: 500;
}

.top-bar a:hover {
  color: white;
}

.portal-links {
  display: flex;
  gap: 20px;
}

.portal-links a {
  transition: var(--transition);
}

/* ===== NAVBAR ===== */
nav.navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav.navbar .navbar-brand img {
  max-height: 50px;
}

nav.navbar .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 5px;
  transition: var(--transition);
}

nav.navbar .nav-link:hover,
nav.navbar .nav-link.active {
  color: var(--azure) !important;
}

nav.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 10px 0;
}

nav.navbar .dropdown-item {
  padding: 10px 20px;
  transition: var(--transition);
}

nav.navbar .dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--azure);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--azure) 100%);
 
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero .breadcrumb {
  background-color: transparent;
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-bottom: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== HERO SWIPER ===== */
.hero-swiper {
  height: 600px;
  margin-bottom: 0;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1;
}

.swiper-slide .container {
  position: relative;
  z-index: 2;
}

.slide-content {
  color: white;
  max-width: 600px;
  animation: slideUp 0.8s ease;
}

.badge-tag {
  display: inline-block;
  background-color: var(--azure);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Swiper Controls */
.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5) !important;
  width: 12px !important;
  height: 12px !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background-color: var(--azure) !important;
  width: 30px !important;
  border-radius: 6px !important;
}

.swiper-button-next, .swiper-button-prev {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--azure);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px;
}

/* ===== SECTION PADDING ===== */
.section-pad {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 50px 0;
  }
}

/* ===== SECTION TITLES & DIVIDERS ===== */
.section-subtitle {
  color: var(--azure);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title span {
  color: var(--azure);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--azure));
  border-radius: 2px;
  margin: 20px auto;
}

.section-divider.left {
  margin-left: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background-color: var(--light-bg);
  padding: 40px 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

/* ===== BENEFIT CARDS ===== */
.benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.benefit-card .icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--azure));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.benefit-card h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--azure);
  transition: var(--transition);
}

.service-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.service-block .svc-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-block h6 {
  margin-bottom: 10px;
}

/* ===== AREA TAGS ===== */
.area-tag {
  display: inline-block;
  background-color: white;
  color: var(--primary);
  padding: 8px 16px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.area-tag:hover {
  background-color: var(--primary);
  color: white;
}

.area-tag i {
  margin-right: 5px;
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--azure) 100%);
  padding: 60px 0;
  color: white;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-control,
.contact-form .form-select {
  border-color: var(--border-color);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form label {
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--azure);
  margin-bottom: 20px;
}

.contact-info-card h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== BUSINESS HOURS ===== */
.business-hours {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--azure);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span {
  color: var(--text-dark);
}

/* ===== TEAM CARDS ===== */
.team-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: var(--azure);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* ===== VALUE CARDS ===== */
.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--azure);
  margin-bottom: 15px;
}

.value-card h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== EXPERIENCE BOX ===== */
.experience-box {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.experience-box:hover {
  box-shadow: var(--shadow-md);
}

.experience-box h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.experience-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--azure);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-content h5 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h5 a {
  color: inherit;
}

.blog-content h5 a:hover {
  color: var(--azure);
}

.blog-content > p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  align-self: flex-start;
}

.read-more:hover {
  color: var(--azure);
}

/* ===== AREAS BG ===== */
.areas-bg {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: var(--azure);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
}

footer h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li i {
  color: var(--azure);
  margin-right: 10px;
  width: 15px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

footer a:hover {
  color: var(--azure);
}

footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 50px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(14, 165, 233, 0.2);
  color: var(--azure);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1rem;
}

.social-icons a:hover {
  background-color: var(--azure);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-bottom span {
  display: block;
}

@media (min-width: 768px) {
  .footer-bottom span {
    display: inline;
    margin: 0 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-up {
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

/* Staggered animation */
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2rem;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .hero-swiper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-content {
    max-width: 100%;
  }

  .hero-swiper {
    height:400px;
  }

  .swiper-button-next, .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .benefit-card {
    padding: 20px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  nav.navbar {
    padding: 10px 0;
  }

  nav.navbar .navbar-brand img {
    max-height: 40px;
  }

  .portal-links {
    gap: 10px;
    font-size: 0.85rem;
  }

  .section-pad {
    padding: 40px 0;
  }

  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }

  .footer-logo img {
    max-height: 40px;
  }

  footer h6 {
    margin-top: 20px;
  }

  footer ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .top-bar {
    font-size: 0.8rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

/*  .hero-swiper {
    height: 250px;
  }
*/
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .benefit-card {
    text-align: center;
  }

  .section-divider.left {
    margin: 15px auto;
  }

  nav.navbar .navbar-brand img {
    max-height: 35px;
  }

  nav.navbar .nav-link {
    margin: 0;
    padding: 10px 0;
  }

  .cta-section .row {
    flex-direction: column;
  }

  .cta-section form {
    flex-direction: column;
  }

  .cta-section input,
  .cta-section button {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 15px;
  }

  .page-hero .breadcrumb {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .footer-bottom span {
    margin: 10px 0;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-muted {
  color: var(--text-light) !important;
}

.rounded-4 {
  border-radius: 12px;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}
.criteria-item{ display:flex;}
.ci-num { margin-right: 10px;width: 30px;
  height:30px;
  min-width: 30px;
  background: linear-gradient(135deg, var(--primary), var(--azure));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  
 }
/* ===== PRINT STYLES ===== */
@media print {
  .top-bar, nav.navbar, #backToTop, footer {
    display: none;
  }
}
.text-white,a.text-white{ color:#fff !important;}
.top-bar a{ color:#c7e3ff;}
footer ul{ padding-left:0px;}
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        display: none;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }
}
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        border: 0;
        box-shadow: none;
        margin-left: 15px;
        background: transparent;
    }
	     .navbar {
        position: relative;
        z-index: 1050;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
        z-index: 999;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .btn {
        margin-left: 0 !important;
        margin-top: 10px;
    }
	 .dropdown-menu {
        border: 0;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 10px;
        margin-top: 10px;
        padding: 10px;
    }

    .dropdown-item {
        padding: 10px 15px;
        border-radius: 8px;
    }

    .dropdown-item:hover {
        background: #eaf3ff;
    }
}