/*
    Theme Name: MWD
    Author:  MWD
    Author URL: https://movewith.digital/
    Description: ---- 2023.
    Document   : Framework
    Created on :  NOV 29 2025, 12.00 AM
*/

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--textcolor);
  background: var(--bg-color);
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

::placeholder {
  color: var(--secondry-color);
  font-family: var(--font-one);
  font-weight: 500;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.4;
  font-size: 1.2em;
  color: var(--light-black);
  font-weight: 400;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  line-height: 1;
  font-size: 4em;
  font-weight: 600;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  font-size: 4em;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(---small-light-black);
  font-size: 2em;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  font-size: 1.5em;
  color: var(--maincolor);
  line-height: 1.1;
  font-weight: 600;
  font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}
.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.medium-container {
    width: 80%;
  max-width: 1300px;
  margin: 0 auto;
}
.small-container {
  width: 80%;
  max-width: 950px;
  margin: 0 auto;
}

[class*="reveal-"] {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-show {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}
.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: var(--bg-color);
  overflow: hidden;
}
.inner-outer {
    margin: 200px 0 0 0;
}
:root {
  --font-one: "Inria Sans", sans-serif;
  --btnradius: 100px;
  --sm-radius: 20px;
  --lg-radius: 50px;
  --maincolor: #ffffff;
  --bg-color: #F3EFE2;
  --brand-one: #305951;
  --brand-two: #E8A052;
  --black: #000000;
  --light-black: #444444;
  ---small-light-black: #3E3E3E;
}

.flex {
  display: flex;
}
.w-100 {
  width: 100%;
}
.menu-close {
  display: none;
}
.banner {
  position: relative;
  background: url(../../assets/img/banner.webp) no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: var(--lg-radius);
  /* overflow: hidden; */
  flex-direction: column;
  padding: 400px 0 100px 0;
}

.page-template-contact-us .cta-flex {
        position: relative;
        z-index: 2;
}

.fill-btn.orange-btn {
  background: var(--brand-two);
}
.fill-btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--btnradius);
  color: var(--maincolor);
 background:  var(--brand-one);
text-align: center;

  transition: 0.3s ease;
  border: 1px solid var(--text-brand);
}
.fill-btn:hover {
  background-position: right center;
  transform: translateY(-2px);     /* ✅ Optional lift effect */;
  transition: 0.3s ease;
}
.outline-btn {
  color: var(--maincolor);
 background:  transparent;
 border: 1px solid var(--maincolor);
  transition: 0.3s ease;
}

.navbar.bgcolor .logo {
  width: 20%;
} 
.navbar.bgcolor .right-end {
  width: 80%;
} 
.right-end {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner p {
  color: var(--maincolor);
  max-width: 830px;
  padding: 10px 0 50px 0;
}
.buttons {
    display: flex;
    gap: 10px;
}
.banner-text {

 padding: 0 0 0 0;
    z-index: 2;
    position: relative;
   width: 80%;
    margin: 0 auto;
}
.banner-text h1 {
  margin: 0 0 0 0;
  max-width: 1000px;
  text-shadow: 0 0 17px #0000005c;
}
.w-100 {
  width: 100%;
}
.bottom-banner {
padding: 100px 0 100px 0;
  border-bottom-left-radius: var(--lg-radius);
   border-bottom-right-radius: var(--lg-radius);
}
.blue-pink-shade {
background: linear-gradient(100.22deg, #526CDF 8.96%, #E74691 109.67%);
}






.banner-top {
  width: 100%;
}

.services-section {

  padding: 50px 0;
  text-align:center;
}
.dark-blue h2 {
color: var(--light-black);
}


.dark-blue p {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 0 0 0;
  width: 90%;
 
}

.services-container {
display: grid;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0 0 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.services-container.two-grid {
   grid-template-columns: 1fr 1fr;
   margin: 0 0 0 0;
}
/* card */
.service-card{
  position: relative;

    height: 480px;
  border-radius: var(--sm-radius);
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
        text-align: left;
}

/* image */
.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

/* gradient overlay */
.service-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height: 250px;
  border-radius: var(--sm-radius);
background: linear-gradient(360deg, #1C6758 0%, #305951 50%, rgba(48, 89, 81, 0) 100%);


}

.service-card:nth-child(5) {
  grid-column: 1 / -1;
    justify-self: center;
}
/* content */
.service-content {
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index:2;
  padding: 35px;
  color: var(--maincolor);
  min-height: 250px;
}


.service-content p {
 font-size: 1.2em;
    margin: 10px 0;
    padding: 5px 0;
    color: var(--maincolor);
    font-weight: 500;
    opacity: 0.7;
    line-height: 1.1;
}
.logo a {
	display: block;
}

.arrow{
  display:inline-block;
  margin-top:10px;
  font-size:22px;
  transition:0.3s;
}

/* hover effects */
.service-card:hover{
  transform:translateY(-10px);
}

.service-card:hover img{
  transform:scale(1.1);
}

.service-card:hover .arrow{
  transform:translateX(8px);
}

/* button */
.service-btn{
  margin-top: 50px;
}

.banner-sec {
  position: relative;
}



/* LEFT CARD */
.left-card {
  background: #f4f4f4;
  padding: 40px;
  border-radius: 20px;
}

.left-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.left-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #2f5d50;
  color: #2f5d50;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT */
.right-content h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* ITEMS */
.expertise-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.expertise-item:last-child {
  border-bottom: none;
}




/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
}
.wrap-outer {
    margin: 75px 0 0 0;
}


.blog-section {
  padding: 100px 0;
  text-align: center;
}




.blog-wrapper {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  margin: 50px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--lg-radius);
  text-align: left;
  padding: 50px;
  position: relative;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  border-radius: var(--sm-radius);
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 20px 5px;
}

.blog-date {
  font-size: 1.2em;
  color: var(--black);
  font-weight: 500;
  opacity: 0.5;
}

.blog-card h3 {
  color: var(--black);
    font-size: 1.5em;
    max-width: 500px;
    padding: 10px 0;

}

.blog-card p {
  font-size: 1.1em;
    padding: 0 0 50px 0;
    max-width: 400px;
    margin: inherit;
    font-weight: 400;
}
ul.links-sec {
  display: flex;
  gap: 10px;
	justify-content: center;
}
ul.links-sec li a {
  color: var(--light-black);
  font-weight: 600;
  font-size: 1em;
}
ul.links-sec li a.active {
  color: var(--maincolor);
background-color: var(--brand-one);
border-radius: 50px;
text-align: center;
padding: 10px 20px;
}
.read-btn {

    font-weight: 600;
    margin: 40px 0 0 0;
    position: absolute;
    bottom: -1px;
    left: 0px;
    background: var(--bg-color);
    padding: 20px 40px;
    border-top-right-radius: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1em;
    color: var(--brand-one);
    z-index: 2;
}
.read-btn::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border-top-left-radius: 32px;
    box-shadow: -16px -16px 0 16px  var(--bg-color);
    transform: rotate(269deg);
}
.read-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: -32px;
    width: 32px;
    height: 32px;
    background: transparent;
    border-bottom-left-radius: 32px;
    box-shadow: -16px 16px 0 16px var(--bg-color);
}
a.read-btn img {
    max-width: 25px;
}
.blog-btn-wrap {
  margin-top: 30px;
}

.cta-wrap {
  padding: 60px 0 0 0;

}

.cta-container {
 text-align: left;
    padding: 100px 150px;
    border-radius: var(--lg-radius);
    background: var(--brand-one);
    color: #fff;
}
.cta-left {
  width: 60%;
}
.cta-right {
  width: 30%;
}
.cta-right a {
  display: flex;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 20px 20px;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.cta-flex {
  display: flex;
  gap: 200px;
  justify-content: space-between;
  align-items: center;
}
.cta-buttons a.fill-btn.outline-btn {
  display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons a.fill-btn.outline-btn img {
 width: 15px;
    display: inline-block;
}
/* Text */
.cta-container p {
  opacity: 0.7;
    color: var(--maincolor);
    padding: 30px 0;
    font-size: 2em;
    font-weight: 200;
    max-width: 700px;
	
}

/* Buttons */
.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Primary Button */
.btn.primary {
  background: #fff;
  color: #E74691;
  font-weight: 600;
}

.btn.primary:hover {
  background: #f2f2f2;
}

/* Outline Button */
.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #d84c8b;
}

/* Divider */
.cta-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 50px 0 0 0;
}
.info-box span img {
    max-width: 35px;
}
.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Bottom Info */
.cta-info {
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
   margin: 30px 0 0 0;
}

.info-box {
  flex: 1;
  min-width: 200px;
}

.info-box span {
  font-size: 1.3em;
  display: block;

}

.info-box p {
 font-size: 1.2em;
    opacity: 0.8;
    padding: 8px 0;
}

.info-box h4 {
  font-size: 16px;
  font-weight: 600;
}
.site-footer {
  overflow: hidden;
  position: relative;
 
}
.contact-us-page .cta-section strong {
  font-size: 2em;
    display: block;
    padding: 10px 0 0 0;
}
.contact-us-page .site-footer {
   transform: translateY(0);
}
.contact-us-page .footer-container {
  border-radius: var(--lg-radius);
  margin: 50px 0 0 0;
} 
.footer-container {
 
  padding: 100px;

}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 280px 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 170px;
  height: auto;
  display: block;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inside-div {
    margin: 30px 0 0 0;
}


.footer-col ul li a,
.footer-contact p,
.contact-block a {
 text-decoration: none;
    font-size: 1.1em;
    line-height: 1.7;
    color: #000;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-col ul li a:hover,
.contact-block a:hover {
  color: #8b5cf6;
}

.footer-contact p {
  margin: 0 0 26px;
  max-width: 300px;
}

.contact-block {
  margin-bottom: 22px;
}

.contact-block span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #6A6A6A;
  margin-bottom: 6px;
}

.contact-block a {
  font-weight: 700;
  color: #6A6A6A;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #7c7c7c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
 margin: 0;
    font-size: 1em;
    color: #000;
    font-weight: 500;
}
.footer-bottom p a {
    color: #000;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: #6b6b6b;
  font-size: 21px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #8b5cf6;
  transform: translateY(-2px);
}



.bg-white {
  background-color: var(--maincolor);
    border-radius: var(--lg-radius);
    padding: 60px;
}

a.fill-btn.white-btn {
    background-color: var(--maincolor);
    color: var(--brand-one);
   
}


.info-highlights-section {
  padding: 50px 0;
}

.info-highlights-heading {
  text-align: center;
  margin-bottom: 42px;
}




.info-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.info-highlights-card {
  border: 1.5px solid var(--brand-one);
  border-radius: var(--sm-radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.info-highlights-icon {
  
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.info-highlights-icon img {
 max-width: 60px;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 0 20px 0;
}

.info-highlights-card h3 {
 line-height: 1.1;
    font-weight: 800;
    color: var(--brand-one);
    font-size: 1.3em;
}

.info-highlights-card p {
  margin: 0;
    font-size: 1.2em;
    line-height: 1.3;
    max-width: 200px;
    padding: 10px 0 0 0;
    color: var(--black);
    opacity: 0.8;
    font-weight: 300;
}

.info-highlights-action {
  text-align: center;
  margin-top: 34px;
}



a.line-hover-center {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--brand-one);
  font-weight: 800;
  margin: 15px 0 0 0;
}

a.line-hover-center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--brand-one);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

a.line-hover-center:hover::after {
  width: 100%;
}
.blog-detail .date {
  color: var(--light-black);
  display: block;
  font-weight: 600;
}
.blog-detail {
  padding: 20px 0;
}
.blog-detail-sec img {
  width: 100%;
  height: 400px;
  border-radius: var(--sm-radius);
  object-fit: cover;
}
.blog-detail {
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}
.blog-detail h2 {
  color: var(--dark-blue);
    font-size: 2.5em;
    padding: 20px 0 0 0;
}
.blog-detail h4 {
 font-size: 1.5em;
    font-weight: 400;
    padding: 20px 0;
}
.blog-detail p {
 font-size: 1.2em;
    font-weight: 500;
    color: var(--dark-blue);
}


.rq-quote-box {

  background: #fff;
  border-radius: var(--lg-radius);
  padding: 50px;
  box-sizing: border-box;
  margin: 50px auto 0;
}

.rq-quote-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  color:  var(--brand-one);
  line-height: 1.4;
}

.rq-quote-form {
  width: 90%;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.rq-form-group {
  margin-bottom: 16px;
}

.rq-form-group label {
  display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 400;
    color: var(--light-black);
    line-height: 1.4;
}

.rq-form-group input,
.rq-form-group select,
.rq-form-group textarea {
width: 100%;
    height: 45px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    background: #ffffff;
    padding: 0 14px;
    font-size: 13px;
    color: #222222;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin: 0 0 10px 0;
}

.rq-form-group input:focus,
.rq-form-group select:focus,
.rq-form-group textarea:focus {
  border-color: var(--brand-one);
  box-shadow: 0 0 0 1px  var(--brand-one);
}

.rq-form-group textarea {
  height: 100px;
  resize: none;
  padding: 12px 14px;
}

.rq-select-wrap {
  position: relative;
}

.rq-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.rq-select-wrap::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color:  var(--brand-one);
  pointer-events: none;
}

.rq-submit-btn {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    background: var(--brand-one);
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
	margin: 50px 0 0 0;
}

.rq-submit-btn:hover {
  background: var(--brand-one);
  transform: translateY(-1px);
  opacity: 0.8;
}

.rq-btn-icon {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

   .page-loader {
      position: fixed;
      inset: 0;
      background: #f3e9e2;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .page-loader.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader-shape {
      position: relative;
      width: 80px;
      height: 80px; 
      animation: loaderRotate 3s linear infinite;
      transform-origin: center;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
}
.mobile-only {
	display: none;
}
@keyframes loaderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
    

  

    .page-content {
      padding: 80px 20px;
      text-align: center;
    }
    #rq-quote-box {
  scroll-margin-top: 140px;
}
.expertise-section {

  padding: 100px 0 0 0;
}



/* LEFT CARD */
.expertise-section .left-card-details {
  background: var(--maincolor);
  padding: 80px;
  border-radius: var(--sm-radius);
}

.expertise-section .left-card-details h3 {
  margin-bottom: 20px;
}

.expertise-section .left-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #2f5d50;
  color: #2f5d50;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT */
.right-content h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
.right-content h3 {
    margin: 0 0 20px 0;
}
/* ITEMS */
.right-content .expertise-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.right-content .expertise-item:last-child {
  border-bottom: none;
}

.right-content .expertise-item .icon img {
  width: 100%;
}
/* TEXT */
.right-content .expertise-item h5 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
  color: var(--brand-one);
}

.right-content .expertise-item p {
  margin: 5px 0 0;
}

.expertise-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 0 50px 0;
}
.left-card-details p {
    padding: 10px 0;
}
.service-content button {
    background-color: transparent;
    border: 0;
    display: flex;
    font-size: 1em;
    white-space: nowrap;
    align-items: center;
    gap: 20px;
    color: var(--brand-two);
}
.section-divider {
 height: 0;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, #F3EFE2, #30595140, #F3EFE2) 1;
    margin: 100px 0 0 0;
}
.certification {
  text-align: center;
  padding: 50px 0;
}
.grid-block span {
  display: block;
  color: var(--light-black);
  font-weight: 600;
  font-size: 1.5em;
  margin: 10px 0 0 0;
}
.grid-block b {
  display: block;
  color: var(--light-black);
  font-weight: 500;
  font-size: 1em;
	line-height: 1.2;
}
.grid-certificate {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 50px 0 0 0;
}
.approach .content strong {
    color: var(--maincolor);
    font-size: 1.3em;
    padding: 10px 0 0 0;
    display: block;
    font-weight: 600;
}
.approach {
  margin: 50px 0;
}
.steps-container h3 {
  color: var(--maincolor);
}
.approach .content p {
  color: var(--maincolor);
    font-weight: 300;
    max-width: 550px;
    padding: 10px 0 0 0;
}
.valorisation-section {
  position: relative;
/*   height: 100vh; */
  background: url(../../assets/img/approach.webp) center/cover no-repeat;
  color: var(--text-white);
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--lg-radius);
  overflow: hidden;
}



.description {
  max-width: 500px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Timeline Logic */
.steps-container { margin-top: 150px; }

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.step {
  position: relative;
  padding-top: 20px;
  width: 22%;
}

.dot {
  position: absolute;
 position: absolute;
    bottom: -6px;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transition: background 0.3s;
}

.label {
  font-size: 1.1em;
  opacity: 1;
  transition: color 0.3s, opacity 0.3s;
  font-weight: 600;
  transform: translateY(0);
    display: block;
	padding: 0 0 20px 0;
}
.step-details span.label {
  transform: translateY(0);
}
.step-details {
  font-size: 1.1em;
  opacity: 1;
  transition: color 0.3s, opacity 0.3s;
  font-weight: 600;
    display: block;
	padding: 0 0 10px 0;
}
/* 1-Second Active Animation */
@keyframes highlight {
  0%, 20% { color: var(--brand-two); opacity: 1; }
  25%, 100% { color: white;}
}
@keyframes highlight {
  0%, 20% { color: var(--brand-two); opacity: 1; }
  25%, 100% { color: white;}
}
@keyframes dotPulse {
  0%, 20% { background: var(--brand-two); transform: scale(1.3); }
  25%, 100% { background: white; transform: scale(1); }
}

/* Applying delays to each step (4 steps total = 4s loop) */
.step:nth-child(1) .label { animation: highlight 4s infinite; }
.step:nth-child(1) .dot { animation: dotPulse 4s infinite; }

.step:nth-child(2) .label { animation: highlight 4s infinite 1s; }
.step:nth-child(2) .dot { animation: dotPulse 4s infinite 1s; }

.step:nth-child(3) .label { animation: highlight 4s infinite 2s; }
.step:nth-child(3) .dot { animation: dotPulse 4s infinite 2s; }

.step:nth-child(4) .label { animation: highlight 4s infinite 3s; }
.step:nth-child(4) .dot { animation: dotPulse 4s infinite 3s; }

.step:nth-child(1) .step-details { animation: highlight 4s infinite; }


.step:nth-child(2) .step-details { animation: highlight 4s infinite 1s; }

.step:nth-child(3) .step-details { animation: highlight 4s infinite 2s; }


.step:nth-child(4) .step-details { animation: highlight 4s infinite 3s; }



.footer-link { align-self: flex-end; }

.global {
  padding: 50px 0;
  text-align: center;
}
.tooltipdata p {
    color: #fff;
    width: 100%;
    padding: 20px;
	font-size: 1.5em;
}

.tooltipdata p a {
    color: #fff;
    text-decoration: underline;
}
/* MAIN CARD */
.map-container {
  position: relative;
  background:  var(--maincolor);
  border-radius: 30px;
  padding: 400px 50px;
  overflow: hidden;
}

/* WORLD MAP BACKGROUND */
.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/img/bg-map.png") center/cover no-repeat;
 width: 100%;
 height: 100%;
}
.flag {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltipdata {
  position: absolute;
  bottom: 120%; /* above the flag */
  left: 50%;
  transform: translateX(-50%);

  background: #000;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* SHOW ON HOVER */
.flag:hover .tooltipdata {
  opacity: 1;
  visibility: visible;
}
.tooltipdata::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
/* Tooltip box */



/* Hover effect */
.flag:hover::after,
.flag:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* FLAGS GRID */
.flags {
 position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 33px 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* SINGLE FLAG */
.flag {
  text-align: center;
  width: 100px;
  position: relative;
  cursor: pointer;
}
.tooltipdata p {
    color: #fff;
    width: 100% !important;
    padding: 5px;
}
/* FLAG IMAGE */
.flag img {
  width: 70px;
   
    border-radius: 100%;
    object-fit: cover;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* LABEL */
.flag span {
  display: block;
  margin-top: 8px;
  font-size: 1.1em;
  color:  var(--black);
  font-weight: 600;
}
.country-section {
    margin: 50px 0 0 0;
}
.para-content p {
    max-width: 1000px;
    padding: 50px 0;
}
.flex-layout {
    display: flex;
    justify-content: space-between;
}
.flex-right {
    background-color: #00000070;
    padding: 40px;
    border-radius: var(--lg-radius);
    height: 160px;
    min-height: 160px;
}
.flex-right b {
    display: block;
    color: var(--maincolor);
}
.approach .content .flex-right p {
    font-size: 1.1em;
    max-width: 400px;
    padding: 10px 0;
}
.common-bg-sec .steps-container {
  margin-top: 100px;
} 
.right-absolute.left-abs {
 left: 0;
 right: inherit;
}
.pillars {
  display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 50px 0 0 0;
}
.pillar-set b {
  display: block;
  color: var(--maincolor);
  font-size: 1.3em;
  font-weight: 600;
  margin: 20px 0 0 0;
}
.pillar-set img {
  max-width: 60px;
}
.valorisation-section.bottom-right-radius-0 {
  border-radius: 0;
  border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
      border-bottom-right-radius: var(--lg-radius);
}
.blog-section {
  padding: 50px 0;
}
.inner .banner {
  padding: 200px 0 50px 0;
  min-height: 400px;
	
}
.common-split-section {
  padding: 100px 0;
}

.common-split-section .medium-container {
  display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 150px;

}

/* LEFT */
.split-left .split-title {
  font-size: 2.2em;
  line-height: 1.2;
  color: var(---small-light-black);
  margin-bottom: 25px;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #2f5d50;
  border-radius: 25px;
  color: #2f5d50;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #2f5d50;
  color: #fff;
}

/* RIGHT */
.split-right p {

  margin-bottom: 20px;
}

.common-features {

  padding: 0 0 50px 0;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
/* ITEM */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
    width: 10%;
}
/* ICON */
.feature-icon img {
  width: 80px;
 
}

/* CONTENT */
.feature-content h4 {
  font-size: 1.7em;
  margin-bottom: 5px;
  color:  var(--brand-one);
}

.feature-content p {
 font-size: 1.3em;
    color: #555;
    /* line-height: 1.6; */
    max-width: 280px;
}

.common-features h3 {
  color: var(--brand-one);
  margin: 0 0 50px 0;
}
.info-highlights-section strong {
    display: block;
    text-align: center;
    color: var(--brand-one);
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 50px 0;
}
.ds-section {
 text-align: center;
 padding: 50px 0;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.ds-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  transition: 0.3s ease;
  text-align: left;
}

.ds-card:hover {
  transform: translateY(-5px);
}
.ds-card p {
 margin: inherit;
    font-size: 1.2em;
    padding: 0;
    max-width: 450px;
}
.ds-card__image {
  height: 200px;
  border-radius: var(--sm-radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.ds-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-card h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 8px;
}

.ds-card__content {
  font-size: 14px;
  color: #666;
}

/* CTA CARD */
.ds-card--cta {
flex-direction: column;
    background: var(--brand-one);
    color: var(--maincolor);
    display: flex;
    justify-content: center;
    padding: 40px 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.ds-card--cta a {
  display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
}
.ds-card--cta h3 {
  font-size: 3em;
  margin-bottom: 25px;
  color: var(--maincolor);
    font-weight: 400;
    max-width: 450px;
}

.ds-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  color: #2f6b5f;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.valorisation-section.flex-layout-one {
  display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: inherit;
}
.vs-ms-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.vs-ms-flex h3 {
  color: #1E1E1E;
  font-weight: 400;
  font-size: 2.5em;
  max-width: 200px;
  width: 90%;
}
.vs-ms-flex p {
  margin: 10px 0;
}
.vs-ms {
  padding: 50px 0;
}
.team-sec {
  padding: 50px 0;
  text-align: center;
}
.team-set {
  background: var(--maincolor);
  border-radius: var(--sm-radius);
  padding: 30px;
}
.team-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin: 50px 0 0 0;
}
.team-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
img.team-img {
 display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top center;
}
.profile-details strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  font-size: 1.3em;
}
.profile-details p {
 max-width: inherit;
 margin: inherit;
 font-size: 1em;
 padding: 5px 0;
}
.profile-details {
    padding: 20px 0 0 0;
}
.p-0 {
  padding: 0 0 0 0;
}
.m-o {
  margin: 0 0 0 0;
}
.process .timeline {
  margin-top: 0;
} 


.approach.process .content .step-details p {
    padding: 0 0;
    font-size: 0.9em;
    max-width: 282px;
    padding: 10px 0;
}
.suvari-difference {
  text-align: center;
  padding: 50px 0;
}
.different-head strong {
  color: #5A5A5A;
  font-weight: 600;
  font-size: 1.1em;
}
.different-head {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 50px 0;
  align-items: center;
}
.middle-head {
  width: 30px;
    height: 30px;
    border-radius: var(--lg-radius);
    background-color: var(--brand-one);
    color: var(--maincolor);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.difference-set-box {
  background: var(--maincolor);
  padding: 30px;
  border-radius: var(--sm-radius);
}
.difference-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.difference-set-box h4 {
  color: var(--light-black);
  font-size: 1.4em;
}
.difference-details p {
  margin: 0;
  font-size: 1em;
  padding: 0 0;
}
.difference-details b {
  display: block;
  color: var(--light-black);
  font-weight: 600;
  font-size: 1.2em;
}
.difference-details {
  border: 1px solid var(--light-black);
  border-radius: var(--sm-radius);
  padding: 20px;
  margin: 20px 0 10px 0;
}
.diffrent-vs {
  text-align: center;
  color: var(---small-light-black);
  font-weight: 600;
  opacity: 0.7;
}
.difference-bg {
    background-color: var(--brand-one);
    padding: 20px;
    border-radius: var(--sm-radius);
    margin: 10px 0 0 0;
    min-height: 130px;
}
.difference-bg p {
    margin: 5px 0 0 0;
    padding: 0;
    font-size: 1em;
    color: var(--maincolor);
}
.difference-bg b {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    color: var(--maincolor);
}
.blog-section p {
    max-width: 650px;
}
.certificate-page .grid-block {
  background-color: var(--maincolor);
    border-radius: var(--sm-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.certificate-page .grid-certificate {
  gap: 20px;
}
.certificate-page .grid-block b {
    display: block;
    color: var(--light-black);
    font-weight: 500;
    font-size: 1.2em;
    max-width: 300px;
    margin: 0 auto;
    font-weight: 600;
    padding: 10px 0 0;
}
.cta-contact {
  padding: 0 100px;
  width: 100%;
}
.contact-global .country-section {
    border-radius: var(--lg-radius);
    background-color:  var(--maincolor);
} 
.contact-global .rq-quote-box {
  padding: 0 0 100px 0;
  margin: 0 auto 0;
}
.contact-global .rq-form-group label {
  text-align: left;
} 
.contact-global .rq-quote-title {
  padding: 50px 0 0 0;
  color: var(--brand-one);
} 
.contact-page {
  margin: 0 0 100px 0;
}
.content-block {
  color: var(--light-black);

}

.content-block img {
  width: 100%;
  border-radius: 10px;
}
.detailed-page .banner.w-100.contact-page {
 border-radius: 0;
    border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
    margin: 0 0 0 0;
    box-shadow: inset -1px -260px 0 #f3efe2;
}
.blog-desc h2 {
  font-size: 3em;
  margin: 15px 0;
  max-width: 800px;
  width: 90%;
}
.blog-desc date {
   font-size: 1.5em;
   color: var(--maincolor);
   opacity: 0.7;
}
.content-block h3 {
  margin-top: 20px;
  color: var(--light-black);
}

.content-block h4 {
  margin-top: 15px;
 color: var(--light-black);
}

.content-block p {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--light-black);
  margin: 10px 0;
}
.content-block hr {
  margin: 40px 0 0 0;
}
.content-block ul {
  padding-left: 18px;
  margin: 20px 0 0 0;
}

.content-block li {
  margin-bottom: 8px;
   color: var(--light-black);
     font-size: 1.1em;
     list-style: disc;
     font-weight: 400;
}
.blog-desc img {
  width: 100%;
  border-radius: var(--sm-radius);
  height: 450px;
  object-fit: cover;
  margin: 20px 0 0 0;
}
.content-block h4 {
  color: #3E3E3E;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.4em;
  margin: 20px 0;
}
.content-block h5 {
  color: #3E3E3E;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.2em;
  margin: 20px 0;
}
.related-blog h2 {
  margin: 100px 0 0 0;
}
#team {
  scroll-margin-top: 100px; /* adjust to header height */
}
#global {
  scroll-margin-top: 100px; /* adjust to header height */
}
/************************************* Menu-start ****************************************/
/* Navbar Base */
.navbar {
  padding: 0 0;
  position: fixed;
  width: 100%;
  top: 105px;
  left: 0;
  right: 0;
  margin-top: 0;
  z-index: 999;
  transition: all 0.35s ease;

}

.navbar.bgcolor {
  background: var(--brand-one);
  padding: 5px 0;
  margin-top: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  top: 0;
}
.navbar.bgcolor .head-container {
 justify-content: space-between;
}
.head-container {
 width: 85%;
    max-width: 1515px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar.bgcolor .head-container {
    justify-content: space-between;
    width: 95%;
    max-width: 95%;
}
.right-absolute {
  font-weight: 600;
    margin: 40px 0 0 0;
    position: absolute;
    bottom: -1px;
    right: 0px;
    background: var(--bg-color);
    padding: 20px 40px;
    border-top-right-radius: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1em;
    color: var(--black);
    z-index: 2;
}
.right-absolute img {
    max-width: 25px;
}
.right-absolute::before {
  
    content: "";
    position: absolute;
    left: 0;
    top: -32px;
    width: 32px;
    height: 32px;
    background: transparent;
    border-bottom-left-radius: 32px;
    box-shadow: -16px 16px 0 16px var(--bg-color);

}
.right-absolute::after {

   content: "";
    position: absolute;
    right: -32px;
    bottom: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border-top-left-radius: 32px;
    box-shadow: -16px -16px 0 16px var(--bg-color);
    transform: rotate(269deg);
  
}

.logo.absolute-banner {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 18%;
    height: 91px;
}
/* Overlay */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999; /* higher than loader */
}
.custom-modal-box h2 {
    color: var(--brand-one);
    font-size: 1.8em;
    margin: 10px 0;
}
.custom-modal-box p {
    font-size: 1.2em;
    padding: 5px 0;
}
.custom-modal-box li {
	color: var(--light-black);
    font-weight: 400;
	font-size: 1.2em;
    padding: 2px 0;
	color: var(--light-black);
	list-style: disc;
}
.custom-modal-box ul {
	margin: 0 0 0 20px;
}
	.inner .banner::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 30%;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
background: linear-gradient(180deg, #132016 0%, rgba(19, 32, 22, 0) 100%);
		border-top-right-radius: var(--lg-radius);
		border-top-left-radius: var(--lg-radius);
	}
.custom-modal-box b {
	
    font-weight: 600;
	font-size: 1.2em;
    padding: 10px 0 10px 0;
	color: var(--light-black);
	display: block;
}

/* Modal Box */
.custom-modal-box {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  position: relative;
}

/* Close */
.custom-close-btn {
 position: absolute;
    top: -7px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    color: var(--brand-one);
}
.logo.absolute-banner img {
 transform: translate(10px, -40px);
    max-width: 153px;
    z-index: 2;
    position: relative;
}
.logo {

    transition: all 0.35s ease;
}
.logo.absolute-banner {
 position: absolute;
    top: 0;
    left: 0;
    background: #f3efe2;
    padding: 20px 40px;
    border-bottom-right-radius: 61px;
    z-index: 10;
    display: flex;
    align-items: center;
}

/* RIGHT CURVE */
.logo.absolute-banner::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border-bottom-left-radius: 100px;
  box-shadow: -16px 16px 0 16px #f3efe2;
  transform: rotate(90deg);
}

/* BOTTOM CURVE */
.logo.absolute-banner::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -32px;
  width: 32px;
  height: 32px;
  background: transparent;
  border-top-left-radius: 100px;
  box-shadow: -16px -16px 0 16px #f3efe2;
}
.navbar .logo img {
  display: none;
}
.navbar.bgcolor .logo img {
  display: block;
}
/* IMAGE */
.logo img {
  max-width: 90px;
  display: block;
}
.navbar .logo {
    transition: all 0.35s ease;
}
.navbar.bgcolor .logo img {
   transition: all 0.35s ease;
    max-width: 120px;
    padding: 10px 0;
}
.navbar.bgcolor .right-end::after {
  display: none;
} 
.navbar.bgcolor .right-end {
	justify-content: flex-end;
}
.logo img {
  max-width: 100px;
  display: block;
    transition: all 0.35s ease;
}

.right-end {
  display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.right-end::after {
content: '';
    width: 15%;
    height: 1px;
    right: 0;
    top: 0;
    background-color: #ffffff73;
    position: relative;
    max-width: 150px;
    margin: 0 0 0 25px;
}
.header-btn {
  width: 20%;
  text-align: right;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--maincolor);
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 10px;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a::after,
.dropdown-menu li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--text-brand);
  transition: width 0.35s ease;
}



.nav-links a:hover::after {
  width: 100%;
}

.menu-close {
  display: none;
}



.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Desktop dropdown */
.dropdown-menu {
 position: absolute;
    top: calc(100% + 3px);
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    list-style: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.32s ease;
    z-index: 99;
    overflow: hidden;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
    margin: 0 10px;
    padding: 12px 0;
    padding: 5px 0;
   font-size: 1.1em;
    font-weight: 600;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover > .dropdown-toggle .arrow {
  transform: rotate(45deg);
}

/* second tier desktop */
.sub-dropdown .sub-menu {
  top: 0;
  left: calc(100% + 12px);
  transform: translateY(10px);
}

.sub-dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* small hover motion */
.dropdown-menu li a:hover {
  padding-left: 8px;
  color: var(--brand-one);
}
.plus-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.35s ease;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.info-box a {
  color: var(--maincolor);
    display: flex;
    align-items: center;
    gap: 10px;
}
.plus-icon::before {
  width: 14px;
  height: 1.8px;
}
.top-header {
    position: absolute;
    right: 0;
}
.top-header {
 position: fixed;
    right: 0;
    top: 20px;
    width: 80%;
   max-width: 1550px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin: 0 auto;
    left: 0;
  
}
ul.social-link img {
    width: 17px;
}
ul.social-link {
    padding: 0 0 0 25px;
}

.top-header ul {
  display: flex;
  gap: 20px;
}
.top-header ul li a {
  color: var(--brand-one);
  font-weight: 600;
  font-size: 0.9em;
}
.plus-icon::after {
  width: 1.8px;
  height: 14px;
}
.dropdown-toggle-icon {
  display: inline-block;
  width: 9px;
  height: 6px;
  margin-top: 3px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s ease;
}
.blog-detail h2 {
  padding: 20px 0;
}
  .blog-detail p {
    padding: 10px 0;
  }


.dropdown-menu li a {
    color: var(--dark-blue);

}

.has-dropdown:hover > .dropdown-toggle .dropdown-toggle-icon {
  transform: rotate(180deg);
}
/* MOBILE */
@media (max-width: 1024px) {
    .navbar {
    padding: 14px 20px;
    margin-top: 0;
  }

  .head-container {
    width: 90%;
    max-width: 100%;
  }

  .logo {
    width: auto;
  }

  .header-btn {
    display: block;
  }

  .right-end {
    margin-left: auto;
  }


  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--brand-one);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 20px 30px;
    transition: left 0.45s ease;
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-links.show {
    left: 0;
  }
ul.nav-links li:nth-child(2) a {
    transform: translate(0px, -15px);
}
	ul.nav-links .dropdown-menu li:nth-child(2) a {
    transform: translate(0px, 0);
}
	ul.nav-links .social-link li:nth-child(2) a {
    transform: translate(0px, 0);
}
		ul.nav-links .mobile-only li:nth-child(2) a {
    transform: translate(0px, 0);
}
  .menu-close {
   
   display: block;
        font-size: 2.5em;
        cursor: pointer;
        color: #fff;
        position: absolute !important;
        top: 0;
        /* right: 6px; */
        z-index: 10000;
        left: -15px;
        text-align: right;
        border-bottom: 0 !important;
  }

  .menu-close.show {
    opacity: 1;
    visibility: visible;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
   width: 100%;
        margin: 0;
        padding: 5px 0;
        color: #fff;
        justify-content: space-between;
        font-size: 1.1rem;
  }
	.mobile-nav .dropdown-toggle-icon {
		display: none;
	}
	.social-link li a {
		padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
	}
	.social-link li  {
		width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-align: center;
	}
  .nav-links a::after {
    display: none;
  }

  .dropdown-menu,
  .sub-dropdown .sub-menu {
    position: relative;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
	  top: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: block;
    max-height: 100%;
    overflow: hidden;
    opacity: 100%;
    visibility: visible;
    transition: max-height 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
  }
.dropdown-menu li:nth-child(1) a {
    padding: 0 0 5px 10px;
}
	ul.dropdown-inner {
    padding: 0 0 20px 0;
}
  .has-dropdown.active > .dropdown-menu,
  .sub-dropdown.active > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu li a {
    width: 100%;
    margin: 0;
    padding: 5px 0 5px 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.96rem;
  }
.hamburger {
  width: 30px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 16px;
        transform: translate(-20px, -70px);
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

/* Top line */
.hamburger span:nth-child(1) {
  width: 20px;
}

/* Middle line (slightly bigger) */
.hamburger span:nth-child(2) {
  width: 26px;
}

/* Bottom line */
.hamburger span:nth-child(3) {
  width: 20px;
}

}

@media (max-width: 767px) {
  .logo img {
    max-width: 72px;
  }


}
a.fill-btn.green-outline {
    background-color: transparent;
    color: var(--brand-one);
    border: 1px solid var(--brand-one);
}
.button-mt {
  margin: 20px 0 0 0;
}
.absolut-partener {
  font-weight: 600;
    margin: 40px 0 0 0;
    position: absolute;
    bottom: -1px;
    right: 0px;
    background: var(--bg-color);
    padding: 20px 40px;
    border-top-left-radius: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1em;
    color: var(--black);
    z-index: 2;
}
.absolut-partener img {
    max-width: 25px;
}
.absolut-partener::before {
  
   content: "";
    position: absolute;
    left: -32px;
    top: 27px;
    width: 32px;
    height: 32px;
    background: transparent;
    border-bottom-left-radius: 32px;
    box-shadow: -16px 16px 0 16px var(--bg-color);
    transform: rotate(270deg);

}
.absolut-partener::after {

  content: "";
    position: absolute;
    right: 0px;
    top: -32px;
    width: 32px;
    height: 32px;
    background: transparent;
    border-top-left-radius: 32px;
    box-shadow: -16px -16px 0 16px var(--bg-color);
    transform: rotate(180deg);
  
}
.border-radius-bottom-right-0 {
    border-radius: 0;
    border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
    border-bottom-left-radius: var(--lg-radius);
}
/************************************* Menu-end ****************************************/
/**************************** Mobile-responsive-start *********************************/
@media screen and (min-width: 200px) and (max-width: 683px) {
  body {
    font-size: 90%;
  }

  .container {
    width: 90%;
  }

  .flex {
    flex-wrap: wrap;
  }
   .navbar {
    padding: 0 0;
    margin: 20px 0 0 0;
  }
  .logo  {
    width: 100%;
  }
   .navbar .fill-btn {
   padding: 15px 20px;
        font-size: 12px;
  }
  .cta-container p {
  width: 90%;
        line-height: 1.2;
        font-size: 1.5em;
  }
	.info-box {
		justify-content: center;
	}
	.info-box a {
		flex-direction: column;
    justify-content: center;
	}
	.info-box {
		flex-direction: column;
	}
  .bottom-banner {
    padding: 50px 0;
  }
 .header-btn {
   margin: 0 20px;
        position: absolute;
        right: 135px;
  }
	.dark-blue p {
		width: 90%;
	}
	.inside-div {
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
}
	
  .navbar.bgcolor {
    padding: 5px 0;
  }
	.navbar.bgcolor .logo img {
		max-width: 80px;
	}
  .small-container {
    width: 90%;
  }
  h1 {
    font-size: 2.6em;
    line-height: 1;
  }
  .banner {
   padding: 170px 0 50px;
  }
	.inner.page-template-contact-us  .banner {
		  padding: 76px 0 50px 0;
	}
		.page-template-contact-us .cta-flex {
        position: relative;
        z-index: 2;
    }
	.info-box a {
		gap: 0;
	}
	.cta-container 	.info-box p {
		width: 100%;
		font-size: 1.1em;
	}
	.info-box {
		gap: 0;
	}
	.label {
		padding: 0 0 0 0;
	}
.inner .banner {
  min-height: 300px;
	background-position: 75%!important;
}
  .banner-text {
    margin: 0 auto;
    width: 80%;
    padding: 0 0 0 0;
  }
.common-split-section {
    padding: 25px 0 0 0;
}
.ds-card--cta {
  padding: 40px;
}
	.grid-certificate img {
    max-width: 100px;
}
	.navbar.bgcolor .head-container {
    justify-content: space-between;
    width: 90%;
    max-width: 90%;
}
.ds-card--cta h3 {
  font-size: 2em;
}
	.tooltipdata p {
    color: #fff;
    width: 100% !important;
    padding: 5px;
		font-size: 0.7em;
}
h2 {
  font-size: 2.5em;
}
.common-split-section .medium-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
	.approach {
		margin: 25px 0;
	}
 .blog-section {
    padding: 40px 0;
  }
	.process .timeline {
    margin-top: 0;
    padding: 0 0 50px 0;
}
	.timeline {
		border-bottom: 0;
	}
  .blog-title {
    font-size: 22px;
  }
	.banner p {
		padding: 10px 0 20px 0;
	}
  .blog-subtitle {
    font-size: 13px;
  }
.mobile-only ul.social-link {
    padding: 20px 0 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
}
  .blog-wrapper {

    grid-template-columns: 1fr;
  }

  .blog-card {
    max-width: 100%;
    padding: 25px;
  }

  .blog-img img {
   width: 100%;
    border-radius: var(--sm-radius);
    height: 150px;
    object-fit: cover;
  }

	.blog-desc img {
		
	}
  .ds-grid {
    grid-template-columns: 1fr;
  }
  .cta-container {
    padding: 50px 30px;
  }
	.cta-left h2 {
		font-size: 2em;
	} 
	.ds-card__image {
		height: 150px;
	}
	.vs-ms {
    padding: 0 0 0 0;
}
	.team-sec {
		padding: 50px 0 0 0;
	}
	.team-top {
		align-items: flex-start;
	}
	.team-block {
		grid-template-columns: 1fr;
	}
	.vs-ms-flex h3 {
    color: #1E1E1E;
    font-weight: 400;
    font-size: 2.2em;
    max-width: 100%;
    width: 90%;
}
	.vs-ms-flex {
		grid-template-columns: 1fr;
	}
	.pillars  {
		padding: 0 0 100px 0;
	}
	.pillar-set b {
		font-size: 1em;
	}
	.ds-section {
    text-align: center;
    padding: 0 0 0 0;
}
	.pillar-set img {
    max-width: 40px;
}
	.approach .content p {
		padding: 10px 0;
	}
  .cta-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
	.common-features {
		padding: 20px 0;
	}
	.split-right p {
		margin: 10px 0;
	}
  .site-footer {
    border-radius: 0 0 22px 22px;
    transform: translateY(0);
  }

  .footer-top-line {
    height: 14px;
    border-radius: 0 0 16px 16px;
  }

  .footer-container {
    padding: 0 20px;
    border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
    margin: 30px 0 30px 0;
  }
	.detailed-page .banner.w-100.contact-page {
		padding: 150px 0 50px 0;
		box-shadow: inset -1px -170px 0 #f3efe2;
	}
	.related-blog h2 {
		margin: 50px 0 0 0;
	}
		.related-blog .dark-blue p {
		width: 100%;
	}
	.page-template-contact-us .inner .banner {
    padding: 100px 0 50px 0;
    min-height: 400px;
}
	section.blog-section.related-blog.dark-blue {
    padding: 0 0 0 0;
}
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
	.blog-desc h2 {
		font-size: 2em;
	}
	.blog-desc img {
		height: 200px;
	}

  .footer-logo img {
    max-width: 110px;
  }
.cta-buttons img {
   
    height: 30px;
}
	  .custom-modal-box {
    padding: 20px;
    border-radius: 10px;
  }

  .custom-modal-box h2 {
    font-size: 18px;
  }

  .custom-modal-box p {
    font-size: 14px;
  }
	.certification {
  
    padding: 0 0 30px 0;
}
	.custom-modal-box {
  max-height: 80vh;   /* important */
  overflow-y: auto;   /* enable scroll */
  -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
}
	.custom-modal-overlay {
  touch-action: none;
}

.custom-modal-box {
  touch-action: auto;
}
	.mobile-only {
		display: block;
	}
  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 14px;
  }
a.footer-logo {

    width: 100%;
    display: flex;
    justify-content: center;
}
	.mobile-nav .dropdown-menu ul.dropdown-inner {
		display: none;
	}
  .footer-col ul li {
    margin-bottom: 0;
  }

  .footer-col ul li a,
  .footer-contact p,
  .contact-block a {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-block span {
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
 .common-features .container {
    grid-template-columns: 1fr;
  }
  .footer-bottom p {
    font-size: 15px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    font-size: 18px;
  }
 


.services-container.two-grid {
  grid-template-columns: 1fr;
}

 
.cta-left {
    width: 100%;
}
 .info-highlights-section {
    padding: 55px 0 50px;
  }

  .info-highlights-heading {
    margin-bottom: 30px;
  }
.difference-box {
  grid-template-columns: 1fr;
}
  .info-highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-highlights-card {
    min-height: auto;
    padding: 22px 16px;
  }

  .info-highlights-card h3 {
    font-size: 20px;
  }

  .info-highlights-card p {
    max-width: 100%;
    font-size: 14px;
  }

  .fill-btn {
    min-width: 162px;
    font-size: 1.1em;
  }




 .bg-white {
    padding: 30px;
  }




   .rq-quote-box {
    max-width: 100%;
    padding: 28px 20px 30px;
  }
.dropdown-menu li a {
  font-weight: 400;
}
  .rq-quote-title {
    font-size: 17px;
  }

  .rq-form-group input,
  .rq-form-group select,
  .rq-form-group textarea {
    font-size: 14px;
    margin: 0 0 0 0;
    height: 35px;
  }

  .rq-submit-btn {
    width: auto;
    min-width: 92px;
    justify-content: center;
  }
  .head-container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    .right-end {
      align-items: flex-end;
    justify-content: flex-end;
    }
    .wrap-outer {
      margin: 30px 0 0 0;
    }
	.navbar.bgcolor .hamburger  {
		transform: translate(5px, 5px);
	}
.services-container {
  grid-template-columns: 1fr;
}
.service-card {
  height: 350px;
}



.medium-container {
  width: 90%;
}


 .bg-white {
    padding: 30px 20px;
  }
  :root {
  --lg-radius: 20px;
  --sm-radius: 20px;
}
.service-content {
  min-height: inherit;
}

.split-right {
    padding: 20px 0;
}
  .common-split-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-left .split-title {
    font-size: 1.5em;
	  margin-bottom: 10px;
  }
	.expertise-section {
    padding: 25px 0 0 0;
}
  .logo.absolute-banner {
    width: 45%;
    height: 87px;
	  top: -1px;
  }
  .logo.absolute-banner img {
    transform: translate(-3px, -16px);
    max-width: 100px;
}

    .top-header {
    position: fixed;
    right: 0;
    top: 20px;
    width: 90%;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin: 0 auto;
    left: 0;
		display: none;
}
  .top-header li a {
    white-space: nowrap;
  }
  .buttons {
    flex-direction: column;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .expertise-section .left-card-details {
    padding: 40px;
  }
  .section-divider {
    margin: 20px 0 0 0;
  }
  .grid-certificate {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 50px 0 0 0;
    gap: 20px;
}
.valorisation-section {
  padding: 50px;
}
.steps-container {
  margin-top: 50px;
}
.timeline {
    margin-top: 10px;
    border-top: 0;
    flex-direction: column;
    margin-left: 30px;
}
	.step-details {
		padding: 0 0 0 0;
	}
.dot {
    position: absolute;
    top: 25px;
    left: -31px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transition: background 0.3s;
}
.step {
  width: 100%;
}
	.home .info-highlights-section {
		padding: 0 0 0 0;
	}
.valorisation-section {
  align-items: center;
	padding: 50px 30px 100px;
}
.map-container {
  padding: 100px 0;
}
.flags {
  gap: 30px;
}
.flex-layout {
  flex-direction: column;
}
.cta-flex {
  flex-direction: column;
  gap: 0;
}
.right-end::after {
  display: none;
}
.cta-right {
    width: 100%;
}
	.flex-right {
    padding: 20px;
    height: inherit;
    min-height: inherit;
}
	.feature-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.common-features h3 {
		margin: 0 0 20px 0;
	}
	.suvari-difference {
    text-align: center;
    padding: 0 0 50px 0;
}
	.different-head {
		margin: 20px 0;
	}
	.suvari-difference {
		padding: 0 0 0 0;
	}
	.info-box span img {
    max-width: 25px;
}

	.home .timeline {
		border-bottom: 0;
	}
	.blog-section {
    padding: 50px 0 0 0;
}
	.related-blog h2 {
    margin: 50px 0 0 0;
}
}
/**************************** Mobile-responsive-end *********************************/
@media screen and (min-width: 684px) and (max-width: 1024px) {
   body {
    font-size: 85%;
  }

  .container {
    width: 90%;
  }
:root {
  --lg-radius: 20px;
}
  h1 {
    font-size: 3.5em;
  }
   .navbar {
    padding: 0 0;
    margin: 20px 0 0 0;
  }
  .logo  {
    width: 40%;
  }
   .navbar .fill-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
 .header-btn {
    margin: 0 20px;
  }
.banner {
  padding: 150px 0 0 0;
}
  
.blog-title {
    font-size: 26px;
  }
	.blog-img img {
		height: 150px;
	}
  .blog-wrapper {
  grid-template-columns: 1fr 1fr;

  }
	.expertise-section .left-card-details {
		padding: 40px;
	}
	.expertise-grid {
		grid-template-columns: 1fr;
	}
	.hamburger {
		transform: translate(-15px, -70px)!important;
	}
		.navbar.bgcolor .hamburger {
		transform: translate(-10px, 2px)!important;
	}
	.related-blog h2 {
    margin: 50px 0 0 0;
}
.mobile-only {
    display: block;
}
	.blog-section {
    padding: 50px 0 0 0;
}
  .blog-card {
    max-width: 100%;
    padding: 30px;
  }
  .cta-container {
    padding: 40px 20px;
  }

  .cta-container h2 {
    font-size: 2.5em;
  }
  .bg-white {
    padding: 30px;
  }
.rq-form-group {
  margin-top: 0;
}
    .site-footer {
        border-radius: 0 0 22px 22px;
        transform: translateY(0);
    }
    .footer-container {
        padding: 50px 30px;
        border-top-left-radius: var(--lg-radius);
        border-top-right-radius: var(--lg-radius);
        margin: 50px 0 0 0;
    }

  .cta-info {
    align-items: center;
    text-align: center;
  }
    .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }

  .service-content p {
    font-size: 1.5em;
  }
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
	.detailed-page .banner.w-100.contact-page {
		box-shadow: inset -1px -200px 0 #f3efe2;
	}
  .info-highlights-heading h2 {
    font-size: 34px;
  }
	.blog-desc img {
		height: 250px;
	}
  .info-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .medium-container {
    width: 90%;
  }
  .bg-white {
    padding: 30px;
  }
  .services-section {
    padding: 50px 0 0 0;
  }
.buttons {
  padding: 0 0 50px 0;
  margin-top: 50px;
}
	.map-container {
		padding: 100px 0;
	}
	.dark-blue p {
		width: 80%;
	}
	.steps-container {
		margin-top: 100px;
	}
	.team-block {
		grid-template-columns: 1fr 1fr;
	}
	.team-top {
		align-items: flex-start;
	}
	.valorisation-section {
		padding: 100px 30px;
	}
	.ds-card--cta h3 {
		font-size: 2.3em;
	}
 .ds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .logo.absolute-banner {
    width: 25%;
    height: 87px;
		top: -2px;
		left: -2px;
  }
  .logo.absolute-banner img {
    transform: translate(-3px, -16px);
    max-width: 100px;
}

    .top-header {
    position: fixed;
    right: 0;
    top: 20px;
    width: 90%;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin: 0 auto;
    left: 0;
		display: none;
}
	.right-end::after {
		display: none;
	}
  .top-header li a {
    white-space: nowrap;
  }
	.common-split-section {
    padding: 50px 0;
}
	.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
	.feature-icon {
    width: 15%;
}
	.section-divider {
		margin: 50px 0 0 0;
	}
	.common-split-section .medium-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
	.wrap-outer {
    margin: 25px 0 0 0;
}
	.flex-layout {
		flex-wrap: wrap;
	}
	.cta-flex {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
	.cta-left {
    width: 100%;
    text-align: center;
}
	.cta-right {
		width: 50%;
	}
	.info-box {
		min-width: auto;
		flex-direction: column;
	}
	.info-box a {
		gap: 0;
    flex-direction: column;
	}
	.ds-card--cta {
		padding: 30px;
	}
	.valorisation-section.flex-layout-one {
		justify-content: flex-start;
	}
	.cta-container p {
 
line-height: 1.2;
        opacity: 0.7;
        color: var(--maincolor);
        padding: 15px 0;
        font-size: 1.1em;
        font-weight: 200;
        max-width: 600px;
        width: 90%;
        margin: 0 auto;
}
	.difference-box {
		grid-template-columns: 1fr 1fr;
	}
	.different-head {
		margin: 20px 0;
	}
}
/**************************** Tablet-responsive-end *********************************/
/**************************** other-screen-responsive-start *********************************/
@media screen and (min-width: 1024px) and (max-width: 1550px) {


  .container {
    margin: 0 auto;
    width: 90%;
  
  }
	.nav-links a {
		font-size: 1em;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1350px) { 
	.logo.absolute-banner img {
    transform: translate(-3px, -28px);
    max-width: 120px;
    z-index: 2;
    position: relative;
}
	.nav-links a {
		margin: 0 1px;
	}
	.right-end::after {
		display: none;
	}
	.right-end {
		justify-content: flex-end;
    margin: 0 21px 0 0;
	}
	.navbar.bgcolor .right-end {
		margin: 0 0 0 0;
	}
}



/**************************** other-screen-responsive-end *********************************/
.page-loader {
  position: fixed;
  inset: 0;
  background: #f3e9e2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* WRAPPER */
.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* DOT LOADER */
.dot-loader {
  display: flex;
  gap: 6px;
}

.dot-loader span {
  width: 15px;
  height: 15px;
  background: #d89a52; /* match logo color */
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.dot-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-10px);
    opacity: 0.8;
  }
}
.menu-home a {
    font-size: 0; /* hide text */
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.menu-home a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    background: url('/wp-content/themes/suvari/assets/img/home.svg') no-repeat center;
    background-size: contain;
}