/* [project]/src/app/about/about.css [app-client] (css) */
.heroSection {
  background-color: #555;
  height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.imageContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

.aboutImage {
  object-fit: cover;
  object-position: center;
}

.desktopImage {
  display: block;
}

.mobileImage {
  display: none;
}

@media (max-width: 768px) {
  .heroSection {
    height: 80vh;
    margin-top: 50px;
  }

  .desktopImage {
    display: none;
  }

  .mobileImage {
    display: block;
  }
}

.text-serif {
  font-family: Playfair Display, serif;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-sec {
  background-color: var(--bg-sec);
}

.padding {
  padding: 80px 0;
}

.about-section {
  background: var(--whitebg);
  min-height: 100vh;
  padding: 40px 0;
}

.parallax-image-container {
  border-radius: 0;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.parallax-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.section-subtitle {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.section-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.content-text {
  color: #718096;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.content-wrapper {
  padding-left: 2rem;
}

.horizontal-section {
  background-color: #0000;
  background-image: linear-gradient(#0006, #0006), url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-repeat: repeat, repeat;
  background-size: cover;
  background-attachment: fixed;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
  position: relative;
}

.horizontal-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.horizontal-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
}

.horizontal-subtitle {
  opacity: .9;
  color: #f9fcff;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.heritage-section {
  background: #fff;
  padding: 80px 0;
}

.heritage-image-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.heritage-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.heritage-content {
  padding-right: 2rem;
}

.heritage-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.departments-section {
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
  padding-top: 2rem;
}

.departments-title {
  color: var(--primary-color-M);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.departments-list {
  color: #718096;
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .heritage-title {
    font-size: 2rem;
  }

  .horizontal-title {
    font-size: 2.2rem;
  }

  .parallax-image-container, .heritage-image-container {
    height: 400px;
    margin-bottom: 2rem;
  }

  .horizontal-section {
    background-attachment: scroll;
    height: 300px;
  }

  .content-wrapper, .heritage-content {
    padding-left: 0;
    padding-right: 0;
  }

  .padding {
    padding: 60px 0;
  }
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.v-m-v-section {
  text-align: center;
  background-size: cover;
  padding: 80px 0;
}

.v-m-v-item {
  padding: 30px 20px;
  transition: all .3s ease-in-out;
}

.v-m-v-icon {
  border: 1px solid var(--primary-color-M);
  width: 100px;
  height: 100px;
  color: var(--primary-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 4px 10px #0000001a;
}

.v-m-v-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0 6px 20px #0003;
}

.v-m-v-title {
  color: var(--primary-color-M);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.v-m-v-desc {
  color: #333;
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .v-m-v-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .about-section, .heritage-section {
    padding: 40px 15px;
  }

  .content-text {
    text-align: center;
  }
}

.text-gold, .bg-gold {
  color: var(--primary-color);
}

.icon-circle.bg-gold {
  background-color: var(--whitebg);
}

.icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.business-philosophy {
  background-color: var(--primary-color-M);
  padding: 80px 0;
}

.business-philosophy .fw-bold {
  color: #f3f2f2;
}

.stat-value {
  color: var(--primary-color-M);
}

.property-section {
  background: var(--primary-color-M);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.property-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, #58873c08 0%, #0000 50%), radial-gradient(circle at 80% 80%, #f8000008 0%, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-wrapper {
  z-index: 2;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 600;
}

.section-title {
  color: var(--text-dark);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  font-family: Playfair Display, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-description {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.properties-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 40px;
  display: grid;
}

.property-item {
  background: var(--bg-card);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: .5px solid #fdc303 !important;
}

.property-item:before {
  content: "";
  background: var(--gradient-luxury);
  opacity: 0;
  z-index: 1;
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover {
  transform: translateY(-16px)scale(1.03);
  box-shadow: 0 32px 64px #0000001f, 0 16px 32px #00000014, 0 0 0 1px #d4af3733;
  border-color: #fff !important;
}

.property-item:hover:before {
  opacity: 1;
}

.image-container {
  background: var(--gradient-luxury);
  height: 380px;
  position: relative;
  overflow: hidden;
}

.image-container:before {
  content: "";
  z-index: 2;
  background: linear-gradient(135deg, #d4af371a 0%, #58873c0d 50%, #0000 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover .image-container:before {
  opacity: .3;
}

.property-image {
  object-fit: scale-down;
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
  width: 100%;
  height: 100%;
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.05);
}

.property-item:hover .property-image {
  filter: brightness(1.2) contrast(1.2) saturate(1.2);
  transform: scale(1.15)rotate(.5deg);
}

.image-overlay {
  opacity: 0;
  z-index: 3;
  background: linear-gradient(#0000001a 0%, #0003 70%, #0006 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover .image-overlay {
  opacity: 1;
}

.luxury-frame {
  opacity: 0;
  z-index: 4;
  border: 2px solid #d4af374d;
  border-radius: 16px;
  transition: all .5s;
  position: absolute;
  inset: 16px;
}

.property-item:hover .luxury-frame {
  opacity: 1;
  border-color: #d4af3799;
}

.property-content {
  z-index: 2;
  background: var(--bg-card);
  padding: 36px 32px 40px;
  position: relative;
}

.property-title {
  color: var(--text-dark);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  font-family: Playfair Display, serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color .3s;
}

.property-item:hover .property-title {
  color: var(--primary-color);
}

.property-role {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: .875rem;
  font-weight: 600;
  position: relative;
}

.property-role:before {
  content: "";
  background: var(--accent-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px #d4af3733;
}

.property-description {
  color: var(--text-light);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.7;
  transition: color .3s;
  position: relative;
  overflow: hidden;
}

.property-description.truncated {
  max-height: 5.1em;
  position: relative;
  overflow: hidden;
}

.property-description.truncated:after {
  content: "";
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
  width: 100%;
  height: 1.5em;
  position: absolute;
  bottom: 0;
  right: 0;
}

.property-item:hover .property-description {
  color: var(--text-dark);
}

.read-more-btn {
  background: var(--gradient-primary);
  color: #fff;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 12px #58873c33;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #58873c4d;
}

.read-less-btn {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
}

.read-less-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.bottom-description {
  text-align: center;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #d4af371a;
  border-radius: 24px;
  max-width: 800px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  box-shadow: 0 16px 48px #00000014, 0 8px 24px #0000000a;
}

.bottom-description .section-description {
  color: var(--text-light);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.bottom-description .section-description:before, .bottom-description .section-description:after {
  content: "\"";
  color: var(--accent-color);
  opacity: .4;
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  position: absolute;
}

.bottom-description .section-description:before {
  top: -15px;
  left: -24px;
}

.bottom-description .section-description:after {
  bottom: -25px;
  right: -24px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.property-item:first-child {
  animation: 7s ease-in-out infinite float;
}

.property-item:nth-child(2) {
  animation: 7s ease-in-out 2.5s infinite float;
}

.property-item:nth-child(3) {
  animation: 7s ease-in-out 5s infinite float;
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
  }

  .property-section {
    padding: 60px 0 80px;
  }

  .section-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .property-section {
    padding: 40px 0 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .property-content {
    padding: 28px 24px 32px;
  }

  .image-container {
    height: 320px;
  }

  .bottom-description {
    margin-top: 60px;
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .property-item {
    border-radius: 20px;
  }

  .image-container {
    height: 280px;
  }

  .property-content {
    padding: 24px 20px 28px;
  }

  .property-title {
    font-size: 1.375rem;
  }

  .property-description {
    font-size: .875rem;
  }

  .bottom-description {
    margin-top: 40px;
    padding: 28px 24px;
  }

  .bottom-description .section-description:before, .bottom-description .section-description:after {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .property-item:first-child, .property-item:nth-child(2), .property-item:nth-child(3) {
    animation: none;
  }

  .property-item, .property-image {
    transition: none;
  }
}

/* [project]/src/app/about/HeroAbout.module.css [app-client] (css) */
.HeroAbout-module__sqeIrG__heroSection {
  background-color: #555;
  height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__imageContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

.HeroAbout-module__sqeIrG__aboutImage {
  object-fit: cover;
  object-position: center;
}

.HeroAbout-module__sqeIrG__desktopImage {
  display: block;
}

.HeroAbout-module__sqeIrG__mobileImage {
  display: none;
}

@media (max-width: 768px) {
  .HeroAbout-module__sqeIrG__heroSection {
    height: 80vh;
    margin-top: 50px;
  }

  .HeroAbout-module__sqeIrG__desktopImage {
    display: none;
  }

  .HeroAbout-module__sqeIrG__mobileImage {
    display: block;
  }
}

.HeroAbout-module__sqeIrG__text-serif {
  font-family: Playfair Display, serif;
}

.HeroAbout-module__sqeIrG__text-primary {
  color: var(--primary-color) !important;
}

.HeroAbout-module__sqeIrG__bg-sec {
  background-color: var(--bg-sec);
}

.HeroAbout-module__sqeIrG__padding {
  padding: 80px 0;
}

.HeroAbout-module__sqeIrG__about-section {
  background: var(--whitebg);
  min-height: 100vh;
  padding: 40px 0 !important;
}

.HeroAbout-module__sqeIrG__parallax-image-container {
  border-radius: 0;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__parallax-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.HeroAbout-module__sqeIrG__section-subtitle {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.HeroAbout-module__sqeIrG__section-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.HeroAbout-module__sqeIrG__content-text {
  color: #718096;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.HeroAbout-module__sqeIrG__content-wrapper {
  padding-left: 2rem;
}

.HeroAbout-module__sqeIrG__horizontal-section {
  background-color: #0000;
  background-image: linear-gradient(#0006, #0006), url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-repeat: repeat, repeat;
  background-size: cover;
  background-attachment: fixed;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
  position: relative;
}

.HeroAbout-module__sqeIrG__horizontal-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.HeroAbout-module__sqeIrG__horizontal-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
}

.HeroAbout-module__sqeIrG__horizontal-subtitle {
  opacity: .9;
  color: #f9fcff;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.HeroAbout-module__sqeIrG__heritage-section {
  background: #fff;
  padding: 80px 0;
}

.HeroAbout-module__sqeIrG__heritage-image-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__heritage-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.HeroAbout-module__sqeIrG__heritage-content {
  padding-right: 2rem;
}

.HeroAbout-module__sqeIrG__heritage-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.HeroAbout-module__sqeIrG__departments-section {
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
  padding-top: 2rem;
}

.HeroAbout-module__sqeIrG__departments-title {
  color: var(--primary-color-M);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.HeroAbout-module__sqeIrG__departments-list {
  color: #718096;
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .HeroAbout-module__sqeIrG__section-title {
    font-size: 2.2rem;
  }

  .HeroAbout-module__sqeIrG__heritage-title {
    font-size: 2rem;
  }

  .HeroAbout-module__sqeIrG__horizontal-title {
    font-size: 2.2rem;
  }

  .HeroAbout-module__sqeIrG__parallax-image-container, .HeroAbout-module__sqeIrG__heritage-image-container {
    height: 400px;
    margin-bottom: 2rem;
  }

  .HeroAbout-module__sqeIrG__horizontal-section {
    background-attachment: scroll;
    height: 300px;
  }

  .HeroAbout-module__sqeIrG__content-wrapper, .HeroAbout-module__sqeIrG__heritage-content {
    padding-left: 0;
    padding-right: 0;
  }

  .HeroAbout-module__sqeIrG__padding {
    padding: 60px 0;
  }
}

.HeroAbout-module__sqeIrG__parallax-container {
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__v-m-v-section {
  text-align: center;
  background-size: cover;
  padding: 80px 0;
}

.HeroAbout-module__sqeIrG__v-m-v-item {
  padding: 30px 20px;
  transition: all .3s ease-in-out;
}

.HeroAbout-module__sqeIrG__v-m-v-icon {
  border: 1px solid var(--primary-color-M);
  width: 100px;
  height: 100px;
  color: var(--primary-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 4px 10px #0000001a;
}

.HeroAbout-module__sqeIrG__v-m-v-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0 6px 20px #0003;
}

.HeroAbout-module__sqeIrG__v-m-v-title {
  color: var(--primary-color-M);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.HeroAbout-module__sqeIrG__v-m-v-desc {
  color: #333;
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .HeroAbout-module__sqeIrG__v-m-v-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .HeroAbout-module__sqeIrG__about-section, .HeroAbout-module__sqeIrG__heritage-section {
    padding: 40px 15px;
  }

  .HeroAbout-module__sqeIrG__content-text {
    text-align: center;
  }
}

.HeroAbout-module__sqeIrG__text-gold, .HeroAbout-module__sqeIrG__bg-gold {
  color: var(--primary-color);
}

.HeroAbout-module__sqeIrG__icon-circle.HeroAbout-module__sqeIrG__bg-gold {
  background-color: var(--whitebg);
}

.HeroAbout-module__sqeIrG__icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.HeroAbout-module__sqeIrG__business-philosophy {
  background-color: var(--primary-color-M);
  padding: 80px 0;
}

.HeroAbout-module__sqeIrG__business-philosophy .HeroAbout-module__sqeIrG__fw-bold {
  color: #f3f2f2;
}

.HeroAbout-module__sqeIrG__stat-value {
  color: var(--primary-color-M);
}

.HeroAbout-module__sqeIrG__property-section {
  background: var(--primary-color-M);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__property-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, #58873c08 0%, #0000 50%), radial-gradient(circle at 80% 80%, #f8000008 0%, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.HeroAbout-module__sqeIrG__section-wrapper {
  z-index: 2;
  position: relative;
}

.HeroAbout-module__sqeIrG__section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.HeroAbout-module__sqeIrG__section-subtitle {
  color: var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 600;
}

.HeroAbout-module__sqeIrG__section-title {
  color: var(--text-dark);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  font-family: Playfair Display, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.HeroAbout-module__sqeIrG__section-description {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.HeroAbout-module__sqeIrG__properties-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 40px;
  display: grid;
}

.HeroAbout-module__sqeIrG__property-item {
  background: var(--bg-card);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: .5px solid #fdc303 !important;
}

.HeroAbout-module__sqeIrG__property-item:before {
  content: "";
  background: var(--gradient-luxury);
  opacity: 0;
  z-index: 1;
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.HeroAbout-module__sqeIrG__property-item:hover {
  transform: translateY(-16px)scale(1.03);
  box-shadow: 0 32px 64px #0000001f, 0 16px 32px #00000014, 0 0 0 1px #d4af3733;
  border-color: #fff !important;
}

.HeroAbout-module__sqeIrG__property-item:hover:before {
  opacity: 1;
}

.HeroAbout-module__sqeIrG__image-container {
  background: var(--gradient-luxury);
  height: 380px;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__image-container:before {
  content: "";
  z-index: 2;
  background: linear-gradient(135deg, #d4af371a 0%, #58873c0d 50%, #0000 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__image-container:before {
  opacity: .3;
}

.HeroAbout-module__sqeIrG__property-image {
  object-fit: scale-down;
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
  width: 100%;
  height: 100%;
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.05);
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__property-image {
  filter: brightness(1.2) contrast(1.2) saturate(1.2);
  transform: scale(1.15)rotate(.5deg);
}

.HeroAbout-module__sqeIrG__image-overlay {
  opacity: 0;
  z-index: 3;
  background: linear-gradient(#0000001a 0%, #0003 70%, #0006 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__image-overlay {
  opacity: 1;
}

.HeroAbout-module__sqeIrG__luxury-frame {
  opacity: 0;
  z-index: 4;
  border: 2px solid #d4af374d;
  border-radius: 16px;
  transition: all .5s;
  position: absolute;
  inset: 16px;
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__luxury-frame {
  opacity: 1;
  border-color: #d4af3799;
}

.HeroAbout-module__sqeIrG__property-content {
  z-index: 2;
  background: var(--bg-card);
  padding: 36px 32px 40px;
  position: relative;
}

.HeroAbout-module__sqeIrG__property-title {
  color: var(--text-dark);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  font-family: Playfair Display, serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color .3s;
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__property-title {
  color: var(--primary-color);
}

.HeroAbout-module__sqeIrG__property-role {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: .875rem;
  font-weight: 600;
  position: relative;
}

.HeroAbout-module__sqeIrG__property-role:before {
  content: "";
  background: var(--accent-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px #d4af3733;
}

.HeroAbout-module__sqeIrG__property-description {
  color: var(--text-light);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.7;
  transition: color .3s;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__property-description.HeroAbout-module__sqeIrG__truncated {
  max-height: 5.1em;
  position: relative;
  overflow: hidden;
}

.HeroAbout-module__sqeIrG__property-description.HeroAbout-module__sqeIrG__truncated:after {
  content: "";
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
  width: 100%;
  height: 1.5em;
  position: absolute;
  bottom: 0;
  right: 0;
}

.HeroAbout-module__sqeIrG__property-item:hover .HeroAbout-module__sqeIrG__property-description {
  color: var(--text-dark);
}

.HeroAbout-module__sqeIrG__read-more-btn {
  background: var(--gradient-primary);
  color: #fff;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 12px #58873c33;
}

.HeroAbout-module__sqeIrG__read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #58873c4d;
}

.HeroAbout-module__sqeIrG__read-less-btn {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
}

.HeroAbout-module__sqeIrG__read-less-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.HeroAbout-module__sqeIrG__bottom-description {
  text-align: center;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #d4af371a;
  border-radius: 24px;
  max-width: 800px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  box-shadow: 0 16px 48px #00000014, 0 8px 24px #0000000a;
}

.HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description {
  color: var(--text-light);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:before, .HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:after {
  content: "\"";
  color: var(--accent-color);
  opacity: .4;
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  position: absolute;
}

.HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:before {
  top: -15px;
  left: -24px;
}

.HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:after {
  bottom: -25px;
  right: -24px;
}

@keyframes HeroAbout-module__sqeIrG__float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.HeroAbout-module__sqeIrG__property-item:first-child {
  animation: 7s ease-in-out infinite HeroAbout-module__sqeIrG__float;
}

.HeroAbout-module__sqeIrG__property-item:nth-child(2) {
  animation: 7s ease-in-out 2.5s infinite HeroAbout-module__sqeIrG__float;
}

.HeroAbout-module__sqeIrG__property-item:nth-child(3) {
  animation: 7s ease-in-out 5s infinite HeroAbout-module__sqeIrG__float;
}

@media (max-width: 1024px) {
  .HeroAbout-module__sqeIrG__properties-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
  }

  .HeroAbout-module__sqeIrG__property-section {
    padding: 60px 0 80px;
  }

  .HeroAbout-module__sqeIrG__section-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .HeroAbout-module__sqeIrG__container {
    padding: 0 20px;
  }

  .HeroAbout-module__sqeIrG__properties-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .HeroAbout-module__sqeIrG__property-section {
    padding: 40px 0 60px;
  }

  .HeroAbout-module__sqeIrG__section-header {
    margin-bottom: 40px;
  }

  .HeroAbout-module__sqeIrG__property-content {
    padding: 28px 24px 32px;
  }

  .HeroAbout-module__sqeIrG__image-container {
    height: 320px;
  }

  .HeroAbout-module__sqeIrG__bottom-description {
    margin-top: 60px;
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .HeroAbout-module__sqeIrG__properties-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .HeroAbout-module__sqeIrG__property-item {
    border-radius: 20px;
  }

  .HeroAbout-module__sqeIrG__image-container {
    height: 280px;
  }

  .HeroAbout-module__sqeIrG__property-content {
    padding: 24px 20px 28px;
  }

  .HeroAbout-module__sqeIrG__property-title {
    font-size: 1.375rem;
  }

  .HeroAbout-module__sqeIrG__property-description {
    font-size: .875rem;
  }

  .HeroAbout-module__sqeIrG__bottom-description {
    margin-top: 40px;
    padding: 28px 24px;
  }

  .HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:before, .HeroAbout-module__sqeIrG__bottom-description .HeroAbout-module__sqeIrG__section-description:after {
    display: none;
  }

  .HeroAbout-module__sqeIrG__section-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .HeroAbout-module__sqeIrG__property-item:first-child, .HeroAbout-module__sqeIrG__property-item:nth-child(2), .HeroAbout-module__sqeIrG__property-item:nth-child(3) {
    animation: none;
  }

  .HeroAbout-module__sqeIrG__property-item, .HeroAbout-module__sqeIrG__property-image {
    transition: none;
  }
}

/* [project]/src/components/about/all.css [app-client] (css) */
.property-section {
  background: var(--primary-color-M);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.property-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, #58873c08 0%, #0000 50%), radial-gradient(circle at 80% 80%, #f8000008 0%, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-wrapper {
  z-index: 2;
  position: relative;
}

.section-header {
  text-align: center;
  position: relative;
  margin-bottom: 10px !important;
}

.section-subtitle {
  color: var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 600;
}

.section-title {
  color: var(--text-dark);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  font-family: Playfair Display, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-description {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.properties-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 40px;
  display: grid;
}

.property-item {
  background: var(--bg-card);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: .5px solid #fdc303 !important;
}

.property-item:before {
  content: "";
  background: var(--gradient-luxury);
  opacity: 0;
  z-index: 1;
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover {
  transform: translateY(-16px)scale(1.03);
  box-shadow: 0 32px 64px #0000001f, 0 16px 32px #00000014, 0 0 0 1px #d4af3733;
  border-color: #fff !important;
}

.property-item:hover:before {
  opacity: 1;
}

.image-container {
  background: var(--gradient-luxury);
  height: 380px;
  position: relative;
  overflow: hidden;
}

.image-container:before {
  content: "";
  z-index: 2;
  background: linear-gradient(135deg, #d4af371a 0%, #58873c0d 50%, #0000 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover .image-container:before {
  opacity: .3;
}

.property-image {
  object-fit: scale-down;
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
  width: 100%;
  height: 100%;
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.05);
}

.property-item:hover .property-image {
  filter: brightness(1.2) contrast(1.2) saturate(1.2);
  transform: scale(1.15)rotate(.5deg);
}

.image-overlay {
  opacity: 0;
  z-index: 3;
  background: linear-gradient(#0000001a 0%, #0003 70%, #0006 100%);
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.property-item:hover .image-overlay {
  opacity: 1;
}

.luxury-frame {
  opacity: 0;
  z-index: 4;
  border: 2px solid #d4af374d;
  border-radius: 16px;
  transition: all .5s;
  position: absolute;
  inset: 16px;
}

.property-item:hover .luxury-frame {
  opacity: 1;
  border-color: #d4af3799;
}

.property-content {
  z-index: 2;
  background: var(--bg-card);
  padding: 36px 32px 40px;
  position: relative;
}

.property-title {
  color: var(--text-dark);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  font-family: Playfair Display, serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color .3s;
}

.property-item:hover .property-title {
  color: wheat;
}

.property-role {
  color: wheat;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: .875rem;
  font-weight: 600;
  position: relative;
}

.property-role:before {
  content: "";
  background: var(--accent-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px #d4af3733;
}

.property-description {
  color: var(--text-light);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.7;
  transition: color .3s;
  position: relative;
  overflow: hidden;
}

.property-description.truncated {
  max-height: 5.1em;
  position: relative;
  overflow: hidden;
}

.property-description.truncated:after {
  content: "";
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
  width: 100%;
  height: 1.5em;
  position: absolute;
  bottom: 0;
  right: 0;
}

.property-item:hover .property-description {
  color: var(--text-dark);
}

.read-more-btn {
  background: var(--gradient-primary);
  color: #fff;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 12px #58873c33;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #58873c4d;
}

.read-less-btn {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: none;
  border-radius: 20px;
  margin-top: 16px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
}

.read-less-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.bottom-description {
  text-align: center;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #d4af371a;
  border-radius: 24px;
  max-width: 800px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  box-shadow: 0 16px 48px #00000014, 0 8px 24px #0000000a;
}

.bottom-description .section-description {
  color: var(--text-light);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.bottom-description .section-description:before, .bottom-description .section-description:after {
  content: "\"";
  color: var(--accent-color);
  opacity: .4;
  font-family: Playfair Display, serif;
  font-size: 2.5rem;
  position: absolute;
}

.bottom-description .section-description:before {
  top: -15px;
  left: -24px;
}

.bottom-description .section-description:after {
  bottom: -25px;
  right: -24px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.property-item:first-child {
  animation: 7s ease-in-out infinite float;
}

.property-item:nth-child(2) {
  animation: 7s ease-in-out 2.5s infinite float;
}

.property-item:nth-child(3) {
  animation: 7s ease-in-out 5s infinite float;
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
  }

  .property-section {
    padding: 60px 0 80px;
  }

  .section-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .property-section {
    padding: 40px 0 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .property-content {
    padding: 28px 24px 32px;
  }

  .image-container {
    height: 320px;
  }

  .bottom-description {
    margin-top: 60px;
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .property-item {
    border-radius: 20px;
  }

  .image-container {
    height: 280px;
  }

  .property-content {
    padding: 24px 20px 28px;
  }

  .property-title {
    font-size: 1.375rem;
  }

  .property-description {
    font-size: .875rem;
  }

  .bottom-description {
    margin-top: 40px;
    padding: 28px 24px;
  }

  .bottom-description .section-description:before, .bottom-description .section-description:after {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .property-item:first-child, .property-item:nth-child(2), .property-item:nth-child(3) {
    animation: none;
  }

  .property-item, .property-image {
    transition: none;
  }
}

.icon-circle:hover:before {
  opacity: 1;
}

.icon-circle:hover {
  transform: translateY(-8px)scale(1.05);
  box-shadow: 0 20px 40px #ffaa004d;
}

.credai-modern-section {
  background-color: #e8e3da;
  padding: 60px 0;
}

.credai-card {
  border-top: 3px solid var(--primary-color);
  text-align: center;
  background: linear-gradient(145deg, #fdfbf8 0%, #fafafa 100%);
  border-bottom: 1px solid #a87b011a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 3px #0000000d, 0 10px 25px #0000000d;
}

.credai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px #00000014, 0 15px 25px #0000000d;
}

.credai-logo {
  max-width: 200px;
  transition: transform .3s;
}

.credai-logo:hover {
  transform: scale(1.05);
}

.credai-icon {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.4rem;
  transition: all .3s;
}

.credai-title {
  color: var(--primary-color-M);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color .3s;
  text-align: center !important;
}

.credai-text {
  color: #555;
  border-bottom: 1px solid #a87b0114;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.credai-text:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.credai-text:hover .credai-icon {
  color: var(--primary-color-M);
  transform: scale(1.1);
}

.credai-text:hover .credai-title {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .credai-card {
    margin-bottom: 30px;
  }
}

.credai-text {
  text-align: center;
}

.marathi-logo-section {
  background: var(--primary-color-M);
  min-height: 30vh;
  padding: 30px 0;
}

.marathi-logo-section .imx-section-title {
  color: var(--text-white);
  margin-top: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.marathi-logo-section .section-subtitle {
  color: #eeb13f;
  margin-bottom: 20px;
  font-size: 1rem;
}

.logo-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.marathi-logo {
  object-fit: contain;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  padding: 10px;
  transition: transform .3s;
  box-shadow: 0 4px 20px #0000001a;
}

.marathi-logo:hover {
  transform: scale(1.05);
}

.text-serif {
  font-family: Playfair Display, serif;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-sec {
  background-color: var(--bg-sec);
}

.padding {
  padding: 80px 0;
}

.about-section {
  background: #fff;
  min-height: 100vh;
  padding: 10px 0;
}

.parallax-image-container {
  border-radius: 0;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.parallax-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.section-subtitle {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.section-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.content-text {
  color: #718096;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.content-wrapper {
  padding-left: 2rem;
}

.horizontal-section {
  background-color: #0000;
  background-image: linear-gradient(#0006, #0006), url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-repeat: repeat, repeat;
  background-size: cover;
  background-attachment: fixed;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
  position: relative;
}

.horizontal-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.horizontal-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
}

.horizontal-subtitle {
  opacity: .9;
  color: #f9fcff;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.heritage-section {
  background: #fff;
  padding: 80px 0;
}

.heritage-image-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.heritage-image {
  object-fit: cover;
  will-change: transform;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
}

.heritage-content {
  padding-right: 2rem;
}

.heritage-title {
  color: #1a365d;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.departments-section {
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
  padding-top: 2rem;
}

.departments-title {
  color: var(--primary-color-M);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.departments-list {
  color: #718096;
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .heritage-title {
    font-size: 2rem;
  }

  .horizontal-title {
    font-size: 2.2rem;
  }

  .parallax-image-container, .heritage-image-container {
    height: 400px;
    margin-bottom: 2rem;
  }

  .horizontal-section {
    background-attachment: scroll;
    height: 300px;
  }

  .content-wrapper, .heritage-content {
    padding-left: 0;
    padding-right: 0;
  }

  .padding {
    padding: 60px 0;
  }
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.v-m-v-section {
  text-align: center;
  background: url("/img/bg.png") center / cover no-repeat;
  padding: 80px 0;
}

.v-m-v-item {
  padding: 30px 20px;
  transition: all .3s ease-in-out;
}

.v-m-v-icon {
  border: 1px solid var(--primary-color-M);
  width: 100px;
  height: 100px;
  color: var(--primary-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 4px 10px #0000001a;
}

.v-m-v-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0 6px 20px #0003;
}

.v-m-v-title {
  color: var(--primary-color-M);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.v-m-v-desc {
  color: #333;
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .v-m-v-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .about-section, .heritage-section {
    padding: 40px 15px;
  }

  .content-text {
    text-align: center;
  }
}

.text-gold, .bg-gold {
  color: var(--primary-color);
}

.icon-circle.bg-gold {
  background-color: var(--whitebg);
}

.icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.business-philosophy {
  background-color: var(--primary-color-M);
  padding: 80px 0;
}

.business-philosophy .fw-bold {
  color: #f3f2f2;
}

.stat-value {
  color: var(--primary-color-M);
}

/*# sourceMappingURL=src_89bdd5b6._.css.map*/