:root {
    --header-height: 60px;
    --media-height: 350px;
    --purple-color-code: #8e278f;
}

@font-face {
  font-family: "Roboto";
  src: url("/styles/webfonts/Roboto.eot");
  src: url("/styles/webfonts/Roboto.eot?#iefix") format("embedded-opentype"), url("/styles/webfonts/Roboto.woff2") format("woff2"), url("/styles/webfonts/Roboto.ttf") format("truetype"), url("/styles/webfonts/Roboto.svg#Roboto") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("/styles/webfonts/Roboto-Medium.eot");
  src: url("/styles/webfonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("/styles/webfonts/Roboto-Medium.woff2") format("woff2"), url("/styles/webfonts/Roboto-Medium.ttf") format("truetype"), url("/styles/webfonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("/styles/webfonts/Roboto-Bold.eot");
  src: url("/styles/webfonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("/styles/webfonts/Roboto-Bold.woff2") format("woff2"), url("/styles/webfonts/Roboto-Bold.ttf") format("truetype"), url("/styles/webfonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IconFont";
  src: url("/styles/webfonts/iconfont.eot");
  src: url("/styles/webfonts/iconfont.eot?#iefix") format("embedded-opentype"), url("/styles/webfonts/iconfont.woff2") format("woff2"), url("/styles/webfonts/iconfont.ttf") format("truetype"), url("/styles/webfonts/iconfont.svg#IconFont") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adani-Bold";
  src: url("/styles/webfonts/Adani-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adani-Medium";
  src: url("/styles/webfonts/Adani-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adani-Regular";
  src: url("/styles/webfonts/Adani-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adani-SemiBold";
  src: url("/styles/webfonts/Adani-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.contact-section {
  background: #fff;
}
.contact-section .contact-us-image {
  background: #F8F8F8;
}
    .contact-section .section-title {
        font-family: AdaniSemiBold;
        color: var(--purple-color-code);
        text-align: left;
        font-size: 26px;
        font-weight: 700;
    }
.contact-section .section-desc {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.contact-section .office-img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: auto;
  padding: 2rem;
}
.contact-section .office-info {
  padding-left: 16px;
  margin-bottom: 30px;
  font-family: AdaniSemiBold;
}
.contact-section .office-info .fw-bold {
  color: var(--purple-color-code);
  font-weight: 600;
  font-size: 30px;
}
.contact-section .office-info .office-title {
  color: black;
  font-weight: 600;
}
.contact-section .office-info .office-text {
  color: #444;
}
.contact-section .office-info a {
  color: #00349e;
  text-decoration: none;
}
.contact-section .office-info a:hover {
  text-decoration: underline;
}
.contact-section .office-info i {
  color: #666;
  width: 16px;
}
.contact-section .office-info p {
  font-family: AdaniRegular !important;
}
@media (max-width: 768px) {
  .contact-section .section-desc {
    font-size: 14px;
  }
  .contact-section .office-info {
    border-left: none;
    padding-top: 15px;
    margin-top: 20px;
  }
}

/* -----------------------------
   SAFE REVEAL ANIMATION
------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
