/* Syndiacte Default Style */
@media only screen and (min-width: 992px) {
  body.isSyndicate .micro-nav,
  body.isSyndicate .micro-main-slider,
  body.isSyndicate .micro-main-slider .carousel-item img {
    width: 100%;
  }
  body.isSyndicate .section {
    max-width: 98vw;
  }
}

/* Dubai - Translator Fix */
#goog-gt-tt {
  display: none !important;
}
.goog-te-banner-frame {
  display: none !important;
}
.goog-te-menu-value:hover {
  text-decoration: none !important;
}
body.isDubai {
  top: 0 !important;
}
#google_translate_element2 {
  display: none !important;
}
.isDubai .ppTranslate img {
  width: 25px;
}

/* Microsite Styles */
@media only screen and (min-width: 992px) {
  body.isNotRadiate .info-box {
    top: 8px;
    left: 10px;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 8px;
    padding: 0 10px;
    font-weight: 400;
  }
  body.isNotRadiate .pro-status {
    display: block;
    text-shadow: none;
    color: var(--colorPrimary);
    background-color: transparent;
    padding: 0.6vw 2.5vw 0.3vw 2vw;
    font-weight: 700;
  }
  body.isNotRadiate .pro-title,
  body.isNotRadiate .pro-add,
  body.isNotRadiate .pro-dev,
  body.isNotRadiate ul.pro-spec,
  body.isNotRadiate .info-box span.heading,
  body.isNotRadiate .pro-tag-line,
  body.isNotRadiate .pro-price,
  body.isNotRadiate .pro-rera {
    text-shadow: none;
    color: #000;
    font-weight: 400;
  }
  body.isNotRadiate .pro-title {
    padding: 0.5vw 0.8vw 0.3vw;
  }
  body.isNotRadiate .pro-title,
  body.isNotRadiate .pro-add,
  body.isNotRadiate .pro-price {
    font-weight: 700;
  }
  body.isNotRadiate ul.pro-spec {
    background-color: transparent;
    margin-bottom: 0;
  }
  body.isNotRadiate .info-box span.list-icon {
    display: none;
  }
  body.isNotRadiate .pro-rera {
    font-size: 0.8vw;
  }
}
.info-box hr {
  margin: 3px 0;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
.offer {
  display: block;
  padding: 8px;
  font-size: 13px;
  font-weight: 700;
}
.offer-top {
  background: #76bc4e;
  border-radius: 8px 8px 0px 0px;
}
.offer-bottom {
  background: #d1e9fc;
  border-radius: 0px 0px 8px 8px;
}
.offer-bg-animation {
  color: <?= $btnFontColor ?>;
  display: block;
  background: linear-gradient(
    -45deg,
    <?= $primaryColor ?>,
    <?= $secondaryColor ?>,
    <?= $primaryColor ?>,
    <?= $secondaryColor ?>
  );
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
}
.gallery-thumb {
  width: 100%;
  height: 150px;
  opacity: 1;
  transition: all 0.5s;
  border-radius: 3px;
}
.gallery-thumb:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
@media only screen and (min-width: 575px) {
  .gallery-thumb {
    height: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .gallery-thumb {
    height: 100px;
  }
}
.new-pricing-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-transform: capitalize;
  font-size: 15px;
}
.new-pricing-section .p-block {
  background: #eae5e4;
  background-position: center right;
  background-size: cover;
  cursor: pointer;
  border-radius: 1vw;
  overflow: hidden;
}
.new-pricing-section .p-block .p-block-overlay {
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    #1a1a1a 0%,
    rgba(26, 26, 26, 0.79) 100%
  );
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.new-pricing-section .p-block:hover .p-block-overlay {
  opacity: 1;
}
.new-pricing-section .p-block .type {
  font-size: 20px;
  font-weight: bold;
  color: var(--colorPrimary);
  margin-bottom: 10px;
}
.new-pricing-section .p-block .conf {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 0;
  color: #ffffff;
}
.new-pricing-section .p-block .conf span {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 0 0;
  margin-top: 5px;
  color: inherit;
}
.new-pricing-section .p-block .price {
  color: #ffffff;
  margin-top: 0.5vw;
}
.new-pricing-section .p-block .p-enqbtn {
  display: inline-block;
  color: var(--colorPrimary);
  font-weight: bold;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  padding-bottom: 5px;
  margin-top: 15px;
}
.new-pricing-section .p-block:hover .p-enqbtn {
  padding-left: 0.5vw;
  border-color: var(--colorPrimary);
}
@media only screen and (min-width: 992px) {
  .new-pricing-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2vw;
  }
  .new-pricing-section {
    font-size: 1vw;
  }
  .new-pricing-section .p-block .type {
    font-size: 1.6vw;
    margin-bottom: 1vw;
  }
  .new-pricing-section .p-block .p-block-overlay {
    padding: 2.5vw 1.5vw;
    min-height: 20vw;
  }
  .new-pricing-section .p-block .conf {
    padding: 0.5vw 0;
  }
  .new-pricing-section .p-block .conf span {
    padding: 0.5vw 0 0;
    margin-top: 0.5vw;
  }
  .new-pricing-section .p-block .p-enqbtn {
    margin-top: 1.5vw;
    padding-bottom: 0.3vw;
  }
}
@media only screen and (min-width: 992px) {
  .og-block {
    margin: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.ami-block-bg .ami-block-bg-overlay .ami-bg-name {
  text-transform: capitalize !important;
}
.card-d-custom {
  width: 100%;
  margin: 0 auto 15px;
  text-align: left;
  padding: 5px;
}
.card-d {
  background-color: #e8e8e8;
  margin-bottom: 8px;
  margin-top: 4px;
  padding: 10px;
}
.info-box td.heading2 {
  font-weight: 400;
  font-size: 13px;
  padding-right: 5px;
}
.info-box td.heading1 {
  font-weight: 700;
  font-size: 13px;
}
@media only screen and (min-width: 992px) {
  .info-box td.heading2 {
    color: #000;
    font-weight: 400;
    font-size: 1vw;
    margin-left: 0;
  }
  .info-box td.heading1 {
    color: #000;
    font-weight: 700;
    font-size: 1vw;
  }
}
.main-sld-btn .carousel-control-next,
.main-sld-btn .carousel-control-prev {
  background: #000;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  top: 50%;
}
.main-sld-btn .carousel-control-next-icon,
.main-sld-btn .carousel-control-prev-icon {
  width: 15px;
  height: 15px;
}
@media only screen and (min-width: 992px) {
  .main-sld-btn {
    display: flex;
    justify-content: center;
  }
  .main-sld-btn .carousel-control-next,
  .main-sld-btn .carousel-control-prev {
    top: auto;
    bottom: 8px;
    z-index: 99;
  }
  .main-sld-btn .carousel-control-next {
    margin-right: 30vw;
  }
  .main-sld-btn .carousel-control-prev {
    margin-left: 30vw;
  }
}
.offers {
  display: block;
  font-size: 14px;
  margin: 5px 0;
  color: var(--colorBtn);
  padding: 5px;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
}


/* About us  */
/* About Us Section Styles */
/* About Us Section Styles */
.about-us-section {
    background: linear-gradient(135deg, #ffffff, #cee6f3);
    padding: 60px 30px;
    border-radius: 15px; /* Increased border-radius for a softer look */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: linear-gradient(90deg, transparent, rgba(252, 252, 252, 0.299), transparent);
    transform: rotate(45deg);
    animation: wave 10s infinite linear;
    z-index: 0;
}

@keyframes wave {
    0% {
        transform: rotate(45deg) translate(-50px, -50px);
    }
    50% {
        transform: rotate(45deg) translate(50px, 50px);
    }
    100% {
        transform: rotate(45deg) translate(-50px, -50px);
    }
}

.about-us-section .container {
    position: relative;
    z-index: 1;
}

.about-us-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-us-section .section-title h2 {
    color: #333;
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.about-us-section .about-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.about-us-section .about-content h3 {
    color: var(--colorPrimary);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us-section .about-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-us-section .about-content ul li {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.about-us-section .about-content ul li:hover {
    background-color: rgba(255, 215, 0, 0.1);
    padding-left: 10px;
}

.about-us-section .about-content ul li strong {
    color: var(--colorPrimary);
}

@media (max-width: 767px) {
    .about-us-section {
        padding: 30px 15px;
    }

    .about-us-section .section-title h2 {
        font-size: 32px;
    }

    .about-us-section .about-content p,
    .about-us-section .about-content ul li {
        font-size: 16px;
    }

    .about-us-section .about-content h3 {
        font-size: 24px;
    }
}
