* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Newsreader", serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: #ffffff;
  border-bottom: 1px solid rgb(161 43 46 / 61%);
  box-shadow: 0 0 18px rgb(161 43 46 / 52%);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  color: red;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

/*  */

.navbar-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  padding-top: 16px;
}

.navbar-menu a {
  color: #B22D30;
  text-decoration: none;
  font-size: 22px;
  padding: 6px 0;
  position: relative;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: red;
  transition: 0.3s;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 22px;
}

.navbar-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.navbar-dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.6);
  border-radius: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.navbar-dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 20px;
}

.navbar-dropdown-menu li a:hover {
  background: rgba(255, 0, 0, 0.15);
}

@media (min-width: 769px) {
  .navbar-dropdown:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-dropdown:hover .navbar-arrow {
    transform: rotate(180deg);
  }
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: #b22d30;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .new-vt-slider {
    height: 400px !important;
  }

  .new-vt-slider .slide {

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .navbar-menu.active {
    max-height: 500px;
    background: #ffffff;
    width: 55%;
    margin-left: 40%;
    text-align: center;
    padding-left: 0px;
  }

  .navbar-menu li {
    text-align: center;
    padding: 14px 0;
  }

  .navbar-dropdown-menu {
    position: static;
    border: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .navbar-dropdown.active .navbar-dropdown-menu {
    max-height: fit-content;
    background: #1b1b1b;
  }

  .navbar-dropdown.active .navbar-arrow {
    transform: rotate(180deg);
  }

  .navbar-dropdown-toggle {
    cursor: pointer;
    display: block;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 22px;
    font-size: 16px;
    text-align: -webkit-center;
  }

  .navbar-dropdown-menu li a {
    display: block;
    padding: 0px;
    font-size: 15px;
  }

  .breadcumb-wrapper {
    background-size: 167px !important;
  }
}



/* =============== HOME PAGE STYLING START =============== */

/* -------- SLIDER SECTION STYLING START ---------- */


/* -------- ABOUT US SECTION STYLING -------- */

.about-us-box {
  padding: 175px 200px 50px 200px;
  margin-bottom: 5%;
}

.home-about-sub-title {
  color: #b22d30;
  font-family: "Raleway", sans-serif;
  font-size: 2.5rem;
}

.about-us-img-box {
  height: 500px;
}

.about-us-img-box img {
  height: 100%;
  width: auto;
}

.heading-box {
  gap: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading-subtitle-text {
  order: 0;
  font-family: "Wix Madefor Display", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 19px;
  letter-spacing: 2px;
  color: #B22D30;
  background-color: #FFFFFF00;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  padding: 10px 29px 10px 29px;
  border-radius: 16%;
  border-radius: 50px;
  border-color: #000;
}

.para-text {
  font-family: "Newsreader", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  color: #2d2d2d;
  text-align: justify;
  width: 100% !important;
}

.about-list {
  font-family: "DM Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 46px;
  color: #d4d4d4;
  margin-left: -3%;
}


/* --------- NEW SLIDER ------- */


/* .img-rotate-2{
      max-width: 620px;
      right:8%;
} */

/* ----------- ABout us section styling ------------ */

.finger-wrapper {
  position: relative;
  width: 300px;
  margin: auto;
  height: 500px;
}

.finger {
  width: 100%;
  display: block;
}

.icon {
  position: absolute;
  width: 92px;
  padding: 10px;
  background: #eeeeee;
}

.icon-1 {
  /* bottom: -19% !important; */
  left: -89%;
  width: 400px !important;
  /* height: 500px; */
}

.icon-2 {
  top: 35%;
  right: -183px;
  width: 327px !important;
}

.icon-3 {
  top: -20px;
  left: 40%;
  width: 200px !important;
}

.icon-4 {
  top: 57% !important;
  left: -91%;
  width: 401px !important;
}

.icon-5 {
  bottom: -20px;
  right: 40%;
}

.icon {
  position: absolute;
  width: 106px;
  transition: transform 0.2s ease-out;
  border-radius: 20px;

}


.elementor-size-default {
  color: #B22D30;
  font-weight: bold;
  font-size: 81px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.elementor-heading-title span {
  font-family: "DM Serif Text", serif;
}

.about-pointers {
  margin-left: 6%;
  margin-top: 3%;
}

.elementor-icon-list-icon {
  margin-right: 3%;
}

.elementor-icon-list-text {
  font-weight: bold;
  font-size: 23px;
}


.content {
  /* margin-left: 14%; */
  /* margin-top: -24%; */
}

.about-top-lines-img {
  /* height: 339px;
    margin-top: -33%;
    margin-left: 91%;
    margin-bottom: -27%;
    opacity: 0.5; */
  height: 500px;
  margin-top: -33%;
  margin-left: 82%;
  margin-bottom: -27%;
}

.blinking-dot {
  width: 10px;
  /* Adjust size as needed */
  height: 10px;
  background-color: red;
  /* Choose your color */
  border-radius: 50%;
  /* Makes the div a circle */
  animation: blink 1s linear infinite;
  /* Applies the animation */
}

/* Define the blinking animation */
@keyframes blink {
  0% {
    opacity: 0;
    /* Fully transparent at the start */
  }

  50% {
    opacity: 1;
    /* Fully visible halfway through */
  }

  100% {
    opacity: 0;
    /* Fully transparent at the end */
  }
}


/* --- COunter --------- */
/* Counter Section */
.counter-box {
  position: relative;
  padding: 0px 0px 100px 0px;
  background-image: linear-gradient(to right, #ffffff, #ffffffd1), url('../Images/home/counter-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Container */
.counter-container {
  /* max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;*/
  padding: 0 100px;
}

/* Counter Item */
.counter-item {
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* display: flex; */
  text-align: center;
  color: #fff;
  padding: 90px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* display: flex; */
  box-shadow: rgb(100 100 111 / 62%) 0px 7px 29px 0px;
}

.counter-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Count Number */
.counter-count {
  font-size: 89px;
  font-weight: 700;
  color: #fff;
  margin-bottom: -4%;
  margin-left: 20%;
  margin-top: 8%;
}

/* Text Wrapper */
.counter-text {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 12px;
  font-size: 23px;
}

/* Icon */
.counter-img img {
  width: 87px;
  margin-left: 37%;
  height: auto;
}

/* Title */
.counter-title {
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-left: -15%;
  margin-top: 18%;
}

.counter-img {
  margin-top: -17%;
}

/* Responsive */
@media (max-width: 992px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .counter-container {
    grid-template-columns: 1fr;
  }

  .counter-box {
    padding: 0px;
  }

  .counter-count {
    font-size: 42px;
  }

  .heading-subtitle-text {
    font-size: 10px;
    padding: 5px 10px;
  }
}


/* -------- Why us --------- */

.why-us-section {
  padding: 80px 20px 0px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #f6f6f6;
}

.why-us-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #ffffff;
}

.why-us-title span {
  color: #ff4d6d;
}

.why-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 16%;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -12%;
}

.why-us-card {
  width: 460px !important;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  background: #232323;
  width: 400px;
  margin-top: 20%;
  height: 50%;
  top: 50%;
  width: 100%;
  left: 0;
  background: linear-gradient(rgb(168 47 49) 0%, rgb(175 45 48) 100%);
  /* background: linear-gradient(rgb(47 5 7 / 37%) 0%, rgb(48 49 63) 100%); */
}


.why-us-card h4 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  font-family: "DM Serif Text", serif;
  letter-spacing: 2px;
}


.why-us-card p {
  font-size: 18px;
  color: #f1f1f1;
  margin-top: 4%;
  font-family: "Newsreader", serif;
}

.why-us-image img {
  max-width: 700px;
}

@keyframes why-us-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes why-us-float-reverse {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes why-us-image-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.why-us-float-1 {
  animation: why-us-float 4s ease-in-out infinite;
}

.why-us-float-2 {
  animation: why-us-float-reverse 5s ease-in-out infinite;
}

.why-us-float-3 {
  animation: why-us-float 6s ease-in-out infinite;
}

.why-us-card {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

.left .why-us-card {
  transform: translateX(500px) scale(0.7);
}

.right .why-us-card {
  transform: translateX(-500px) scale(0.7);
}

.why-us-card.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.why-us-image {
  z-index: 10;
  position: relative;

}

.why-us-image img {
  max-width: 712px;
  margin-top: -24%;

}

/* ---------- SERVICES ------ */

.why-choose-one__circle {
  border: 2px dashed #eb3437;
  z-index: 0;
  border-radius: 50%;
  width: 290px;
  height: 290px;
  position: absolute;
  top: 27%;
  right: 26%;
  transform: rotate(0);
}

.rotate-me {
  -ms-animation-name: rotateme;
  -ms-animation-duration: 24s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: rotateme;
  animation-duration: 24s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}


@keyframes rotateme {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}


.funfact-one__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px auto;
  grid-template-columns: auto auto;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-left: -81%;
}

.funfact-one__shape {
  position: absolute;
  top: 50%;
  left: 56.5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background-color: #fff;
}

.funfact-one__single-item.style-1 {
  margin-right: -40px;
}

.funfact-one__single-item {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 312px;
  height: 312px;
  /* background-color: #f2f8f93d; */
  z-index: 10;
}

.funfact-one__single-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: blue;
  margin-bottom: 15px;
}

.funfact-one__single-item .num {
  color: #000000;
  font-weight: bold;
}

.funfact-one__single-item .tag {
  color: #000000;
  font-family: "Newsreader", serif;
}

.funfact-one__items.style-2 {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}

.counter-text-box {
  position: relative;
  top: -49%;
  background: #ffffff;
  padding: 21px 25px;
  border-radius: 50%;
  left: -1%;
  top: -36%;
  left: 0%;
  text-align: center;
  border: 1px solid #ffffff;
  height: 160px;
  width: 160px;
}

.logo-nav {
  height: 65px;
  padding: 3px;
}

.heading-box-why-us {
  margin-top: 37%;
  margin-left: -10%;
  width: 100%;
}


/* ------ MARQUEE ---- */



/* ---- KEY SECURITY SOLUTIONS --- */

.award-one {
  position: relative;
  overflow: hidden;

}

.section-bg-2 {
  background-color: #000 !important;
  padding: 100px 200px 200px 200px;
}

.award-one__bg-image {
  position: absolute;
  top: 120px;
  width: 100%;
  height: 100%;
  background-position-x: center;
  background-repeat: no-repeat;
  opacity: 15%;
  mix-blend-mode: screen;
}

.award-one .shape-2 {
  position: absolute;
  top: -140px;
  left: -60px;
}

.award-one .shape-3 {
  position: absolute;
  bottom: 70px;
  right: 30px;
  z-index: 2;
}

.section-title {
  position: relative;
}

.section-title .sub-title.sub-title-black {
  background-color: #000;
}

.award-one__single-card {
  /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background-color: #6f6d6dad;
    margin-top: 60px;
    box-shadow: rgb(94 94 112 / 28%) 0px 7px 29px 0px;
    color: #ffffff;
    border: 5px solid #a1a1a1; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background-color: #79797a;
  margin-top: 60px;
  box-shadow: rgb(94 94 112 / 28%) 0px 7px 29px 0px;
  z-index: 18;
  color: #ffffff;
  border: 5px solid #cbcbcb;
}

.award-one__single-card .shape-1 {
  /* position: absolute;
  top: -60px;
  right: -60px;
  filter: contrast(0.1); */
  /* position: absolute;
    top: -21px;
    right: -32px;
    filter: contrast(0.1);
    height: 47px;
    filter: opacity(0.5); */
  position: absolute;
  top: -50px;
  right: -53px;
  filter: contrast(0.1);
  height: 95px;
  display: none;

}

.award-one__single-card .content-left {
  gap: 10px;
}


.award-one__single-card .content-left .icon {
  color: red;
}

.award-one__single-card .content-left .title-info .tag {
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 12px;
}

.auto-container {
  position: static;
  max-width: 1350px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.style-2 {
  margin-top: -12%;
  margin-left: -2%;
}

.top-li {
  margin-top: 16%;
}

.title-info .title {
  /* font-size: 24px; */
  font-size: 28px;
  font-family: "Newsreader", serif;
}


/* -- Clients -- */

.brand-one {
  position: relative;
  z-index: 1;
  padding: 100px;
}

.brand-one__sec-title {
  margin: 0 auto;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.brand-one__sec-title .ball.ball-1 {
  background-color: #af0000;
  left: 90%;
  right: -10px;
  top: 31%;
}

.brand-one__sec-title .ball {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 75px;
  height: 75px;
  z-index: -1;
  top: 30px;
}

.brand-one__sec-title .sec-title {
  position: relative;
  padding: 30px 100px;
  z-index: 1;
  border: 2px solid #ffffff30;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(20px);
}

.brand-one__sec-title .title {
  text-align: center;
  color: #af0000;
  line-height: 40px;
  position: relative;
  z-index: 33;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 30px;
  font-family: "DM Serif Text", serif;
}

.brand-one__sec-title .ball.ball-2 {
  background-color: #af0000;
  left: -18px;
  top: 33%;
}

.brand-one__content {
  position: relative;
  padding: 60px 0;
  display: flex;
  gap: 83px;
}


.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.brand-one__widget img {
  height: 85px;
}

.brand-one {
  width: 100%;
}

.brand-one__content {
  width: 100%;
}

.brand-one__track {
  display: flex;
  /* width: max-content; */
  animation: scroll 20s linear infinite;
  padding: 100px 0px 0px 0px;
}

.brand-one__widget {
  flex: 0 0 auto;
  padding: 0 30px;
}

@keyframes scroll {
  0% {
    transform: translateX(-10%);
  }

  100% {
    transform: translateX(-70%);
  }
}


.brand-one__sec-title {
  margin-bottom: -8%;
  z-index: 20;
}

.client-padding {
  padding: 100px 0px 0px 0px;
}


/* -------- CTA --------- */

.gallery {
  --s: 440px;
  display: grid;
  width: var(--s);
  aspect-ratio: 1;
  overflow: hidden;
  padding: calc(var(--s) / 20);
  border-radius: 50%;
  position: relative;
  clip-path: circle(49.5%);
  margin-top: -17%;
}

.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: inherit;
  border-radius: inherit;
  background: repeating-conic-gradient(#9F2C2D 0 30deg, #9f2c2ec0 0 60deg);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.gallery>img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: 50% 120.7%;
}

.gallery::after,
.gallery>img {
  animation: m 8s infinite cubic-bezier(.5, -0.2, .5, 1.2);
}

.gallery>img:nth-child(2) {
  animation-delay: -2s
}

.gallery>img:nth-child(3) {
  animation-delay: -4s
}

.gallery>img:nth-child(4) {
  animation-delay: -6s
}

@keyframes m {

  0%,
  3% {
    transform: rotate(0)
  }

  22%,
  27% {
    transform: rotate(-90deg)
  }

  47%,
  52% {
    transform: rotate(-180deg)
  }

  72%,
  77% {
    transform: rotate(-270deg)
  }

  98%,
  100% {
    transform: rotate(-360deg)
  }
}

.cta-box {
  padding-top: 26%;
}

.cta-flex {
  display: flex;
  gap: 124px;
}

.cta-left {
  width: 56%;
}

.cta-right img {
  height: auto;
}


/* ----------- FOOTER ---------- */

.footer-wrapper {
  background: #c2c2c2;
  color: #000000;
  padding: 73px 40px 30px;
  /* border-radius: 22px; */
  /* clip-path: polygon(100% 100%, 0% 100%, 0.00% 6.92%, 6.67% 5.16%, 13.33% 3.98%, 20.00% 3.51%, 26.67% 3.79%, 33.33% 4.81%, 40.00% 6.43%, 46.67% 8.50%, 53.33% 10.76%, 60.00% 12.98%, 66.67% 14.91%, 73.33% 16.32%, 80.00% 17.07%, 86.67% 17.07%, 93.33% 16.32%, 100.00% 14.91%); */
  margin: 0px 50px 20px 50px;
  border-radius: 50px;

}


.footer-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  gap: 60px;
}

.footer-left {
  flex: 1;
  width: 42%;
  margin-left: 14%;
}

.footer-right {
  width: 36%;
  padding-left: 40px;
  border-left: 1px solid rgba(68, 68, 68, 0.1);
  margin-right: 4%;
}

.footer-logo {
  color: #000000;
  font-size: 32px;
  margin-bottom: 10px;
}



.footer-logo img {
  height: 65px;
}

.footer-logo span {
  color: #ff3c3c;
}

.footer-description {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 7%;
  margin-bottom: 7%;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff21;
}

.footer-social {
  margin: 20px 0 40px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  color: #000000;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-social-link i {
  font-size: 23px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-title {
  color: #B22D30;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 13px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  padding-bottom: 14px;
}

.footer-links ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  margin-top: 15px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Newsreader", serif;
}

.footer-links ul li a:hover {
  color: #B22D30;
}

.footer-subscribe-title {
  color: #000000;
  font-size: 22px;
}

.footer-subscribe-text {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-subscribe-form {
  display: flex;
  background: #1b2b4f;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.footer-subscribe-form input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  background: transparent;
  color: #fff;
  outline: none;
}

.footer-subscribe-form button {
  background: transparent;
  border: none;
  color: #B22D30;
  padding: 0 20px;
  cursor: pointer;
  font-size: 18px;
}

.footer-contact-item strong {
  color: #000000;
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  padding-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.footer-contact-item p {
  font-size: 19px;
  padding-bottom: 16px;
  line-height: 30px !important;
  color: #000;
  margin-left: 7%;
}

.footer-contact-item h6 {
  font-size: 19px;
  padding-bottom: 16px;
  line-height: 30px !important;
  color: #000;
  margin-left: 10%;
}

.footer-contact-row {
  /* display: flex; */
  gap: 40px;
}

.footer-bottom {
  /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom span {
  color: #0a0a0a;
}

/* .footer-contact {
  margin-top: 21%;
} */


.button-33 {
  background: #3d3d3dd6;
  color: #fff;
  padding: 16px 40px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  transition: 1s ease-in-out;
}

.button-33:hover {
  background: #B22D30;
  transition: 1s ease-in-out;
}

.footer-contact-item {
  color: #000;
}

.footer-contact-item i {
  color: #B22D30;
  display: block;
}

.footer-contact-link {
  font-weight: 600;
  font-size: 23px;
  margin-left: 5%;
  line-height: 35px;
  display: block;
  margin-top: -5%;
  font-family: "Newsreader", serif;

}


.footer-links {
  margin-left: 22%;
}

.footer-links-2 {
  margin-top: 29%;
  margin-left: 14%;
}

.footer-brand {
  margin-left: -39%;
}

.footer-bottom a {
  color: #000;
}

.footer-bottom a:hover {
  color: #B22D30;
}

/* Media Queries for Responsive Design */

/* Navbar Media Queries */
@media (max-width: 1200px) {
  .navbar-container {
    max-width: 1000px;
    padding: 15px 15px;
  }

  .navbar-menu a {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .navbar-container {
    padding: 10px 10px;
  }

  .navbar-menu {
    gap: 0px;
  }

  .navbar-menu a {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    font-size: 18px;
  }

  .navbar-menu a {
    font-size: 16px;
  }

  /* SLIDER MOBILE - FULL BACKGROUND IMAGE VISIBLE */
  .new-vt-slider .slide {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* Slider Media Queries */
@media (max-width: 1200px) {
  .slider-content {
    max-width: 50%;
    padding: 80px;
  }

  .slider-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .slider-content {
    max-width: 60%;
    padding: 60px;
  }

  .slider-content h1 {
    font-size: 42px;
  }

  .slider-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .slider-content {
    max-width: 80%;
    padding: 40px;
    margin-left: 5%;
  }

  .slider-content h1 {
    font-size: 36px;
  }

  .slider-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .slider-content {
    max-width: 90%;
    padding: 20px;
    margin-left: 2%;
  }

  .slider-content h1 {
    font-size: 28px;
  }

  .slider-content p {
    font-size: 14px;
  }

  .slider-buttons {
    gap: 10px;
  }

  .slider-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* About Us Media Queries */
@media (max-width: 1200px) {
  .about-us-box {
    padding: 120px;
  }
}

@media (max-width: 992px) {
  .about-us-box {
    padding: 100px;
  }
}

@media (max-width: 768px) {
  .about-us-box {
    padding: 80px;
  }
}

@media (max-width: 576px) {
  .about-us-box {
    padding: 50px 20px;
  }
}

/* New Slider Media Queries */
@media (max-width: 1200px) {
  .home-slider-box {
    padding: 0 40px;
  }

  .text-box {
    width: 50%;
  }

  .image-box {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .home-slider-box {
    padding: 0 30px;
  }

  .text-box {
    width: 60%;
  }

  .image-box {
    width: 35%;
  }

  .slider-text-style {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .home-slider-box {
    flex-direction: column;
    padding: 0 20px;
  }

  .text-box {
    width: 100%;
    text-align: center;
  }

  .image-box {
    width: 100%;
    margin-top: 20px;
  }

  .slider-text-style {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .home-slider-box {
    padding: 0 10px;
  }

  .slider-text-style {
    font-size: 40px;
    margin-top: -53%;

  }

  .small-heading-text {
    font-size: 16px;
  }
}

/* Counter Media Queries */
@media (max-width: 1200px) {
  .counter-container {
    padding: 0 50px;
  }

  .counter-count {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .counter-container {
    padding: 0 30px;
  }

  .counter-count {
    font-size: 70px;
  }

  .counter-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .counter-item {
    padding: 60px 15px;
  }

  .counter-count {
    font-size: 60px;
  }

  .counter-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .counter-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .counter-item {
    padding: 40px 10px;
  }

  .counter-count {
    font-size: 50px;
  }

  .counter-title {
    font-size: 20px;
  }
}

/* Why Us Media Queries */
@media (max-width: 1200px) {
  .why-us-container {
    gap: 30px;
  }

  .why-us-card {
    width: 350px;
  }
}

@media (max-width: 992px) {
  .why-us-container {
    flex-direction: column;
    gap: 20px;
  }

  .why-us-column {
    flex-direction: column;
    gap: 20px;
  }

  .why-us-card {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 60px 20px 0px;
  }

  .why-us-title {
    font-size: 32px;
  }

  .why-us-card {
    width: 250px;
    padding: 20px;
  }

  .why-us-card h4 {
    font-size: 22px;
  }

  .why-us-card p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .why-us-section {
    padding: 40px 10px 0px;
  }

  .why-us-title {
    font-size: 28px;
  }

  .why-us-card {
    width: 100% !important;
    padding: 15px;
  }

  .why-us-card h4 {
    font-size: 20px;
  }

  .why-us-card p {
    font-size: 14px;
  }
}

/* Services Media Queries */
@media (max-width: 1200px) {
  .funfact-one__single-item {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 992px) {
  .funfact-one__single-item {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .funfact-one__single-item {
    width: 200px;
    height: 200px;
  }

  .funfact-one__items {
    grid-template-columns: auto;
    gap: 15px;
    margin-top: 30%;
    margin-left: -37%;
  }

  .funfact-one__single-item {
    background-color: #ffffff00;
  }
}

@media (max-width: 576px) {
  .funfact-one__single-item {
    width: 180px;
    height: 180px;
  }

  .counter-text-box {
    padding: 30px 20px;
    top: -100%;
  }

  .funfact-one__single-item.style-1 {
    margin-right: -19px;
    margin-bottom: 70%;
  }
}

/* Award Media Queries */
@media (max-width: 1200px) {
  .section-bg-2 {
    padding: 80px 120px 120px 120px;
  }
}

@media (max-width: 992px) {
  .section-bg-2 {
    padding: 60px 100px 100px 100px;
  }

  .award-one__single-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-bg-2 {
    padding: 40px 50px 80px 50px;
  }

  .award-one__single-card {
    flex-direction: column;
    text-align: center;
  }

  .content-left {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-bg-2 {
    padding: 20px 20px 60px 20px;
  }

  .award-one__single-card {
    padding: 50px 20px 20px 20px;
    margin-top: 10%;
  }

  .title-info .tag {
    font-size: 20px;
  }
}

/* Brand Media Queries */
@media (max-width: 1200px) {
  .brand-one {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .brand-one {
    padding: 40px;
  }

  .brand-one__content {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .brand-one {
    padding: 20px;
  }

  .brand-one__content {
    flex-direction: column;
    gap: 40px;
  }

  .brand-one__track {
    padding: 50px 0px 0px 0px;
  }
}

@media (max-width: 576px) {
  .brand-one {
    padding: 10px;
  }

  .brand-one__sec-title .sec-title {
    padding: 10px 30px;
  }

  .brand-one__sec-title .title {
    font-size: 16px;
    line-height: 22px;
  }
}

/* CTA Media Queries */
@media (max-width: 1200px) {
  .cta-flex {
    gap: 60px;
  }

  .cta-left {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .cta-flex {
    gap: 40px;
  }

  .cta-left {
    width: 65%;
  }

  .cta-right img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    gap: 20px;
  }

  .cta-left {
    width: 100%;
  }

  .cta-right {
    margin-top: 0;
  }

  .cta-right img {
    height: auto;
  }
}

@media (max-width: 576px) {
  .cta-box {
    padding-top: 150px;
  }

  .cta-right img {
    height: auto;
  }
}

/* Footer Media Queries */
@media (max-width: 1200px) {
  .footer-wrapper {
    padding: 50px 20px 20px;
    margin: 10px 20px;
  }

  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 40px 15px 15px;
    margin: 10px 10px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 8%
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    padding: 30px 10px 10px;
    margin: 5px 5px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-description {
    font-size: 16px;
  }

  .footer-links ul li a {
    font-size: 16px;
  }

  .footer-contact-item strong {
    font-size: 20px;
  }

  .footer-contact-item p {
    font-size: 14px;
  }

  .footer-contact-item h6 {
    font-size: 19px;
    padding-bottom: 16px;
    line-height: 30px !important;
    color: #000;
    margin-left: 10%;
    font-weight: 600;
    font-size: 13px;
    margin-left: 10%;
    line-height: 25px;
    display: block;
    margin-top: -11%;
    font-family: "Newsreader", serif;
  }
}




/* ===================== ABOUT US PAGE STYLING ================== */

.breadcumb-wrapper {
  text-align: center;
  padding: 150px 0px 0px 100px;
  background-size: 700px;
}

.breadcumb-wrapper .breadcumb-content {
  --space: 150px;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.breadcumb-title {
  margin: -0.18em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 500;
  font-size: 50px;
  font-weight: 700;
  color: #B22D30;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
}

.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
  margin-top: 17px;
  margin-bottom: -0.4em;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 600;
  font-size: 18px;
  color: #5f5f5f;
  padding-top: 20px;
}



/* ============================== ABOUT US PAGE STYLING ================================ */
.about-page-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  gap: 40px;
  text-align: center;
  position: relative;
}

.about-page-image-left,
.about-page-image-right {
  /* flex: 1 1 300px; */
  width: 600px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid #eaeaea;
  padding: 5px;
  width: 600px;
}

.about-page-image-left img,
.about-page-image-right img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.about-page-content {
  max-width: 50%;
  text-align: left;
  margin-left: 3%;
  margin-top: 14%;

}

.about-page-content h1 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  font-family: 'Newsreader';
}

.about-page-content p {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
  text-align: justify;
  font-family: "Newsreader", serif;
  padding-top: 1%;
}

.about-page-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #b245f4;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.about-page-button:hover {
  background-color: #9b32d4;
}

/* Buttons like tags at top */
.about-page-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.about-page-tag {
  padding: 8px 16px;
  border: 1px solid #b245f4;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #b245f4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-page-tag:hover {
  background-color: #b245f4;
  color: #fff;
}

.para-about-founder {
  font-size: 18px !important;
  line-height: 28px !important;
  color: #5c5c5c !important;
}

@media(max-width:1600px) {
  .about-fonunter__content {
    margin-left: 10%;
    margin-top: 0% !important;
  }

}

@media(max-width:1400px) {
  .about-fonunter__content {
    margin-left: 17%;
    margin-top: 6% !important;
  }

  .about-fonunter__image img {
    margin-top: 4%;
    margin-left: -38% !important;
  }
}

@media(max-width:1350px) {
  .about-fonunter__content {
    margin-left: 22%;
  }

  .about-fonunter__image img {
    margin-top: 10%;
    margin-left: -37% !important;
  }

  .about-fonunter__quote {
    padding-left: 72px !important;
  }
}

@media (max-width: 900px) {
  .about-page-section {
    flex-direction: column;
  }

  .about-page-content h1 {
    font-size: 2.5rem;
  }
}

.about-page-content h2 {
  margin-top: -26% !important;
}

@media(max-width:500px) {
  .about-fonunter__content {
    margin-left: 0%;
  }

  .about-fonunter__image img {
    margin-top: 0%;
    margin-left: 0% !important;
  }

  .about-fonunter__quote {
    padding-left: 30px !important;
  }

  .about-fonunter__quote p {
    font-size: 11px !important;
    line-height: 21px !important;
  }
}

/* ----------- WHY US -------------- */
.about-why-us {
  padding: 100px 0;
  color: #fff;
}

.why-us-wrapper {
  position: relative;
  width: 800px;
  margin: auto;
  height: 500px;
}

/* center block */
.why-us-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
}

/* rotating ring */
.rotating-border {
  position: absolute;
  inset: 0;
  border: 3px solid #ffb400;
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

/* static image */
.center-image {
  position: absolute;
  inset: 20px;
  background: #ffb400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image img {
  width: 80px;
}

/* items */
.why-us-item {
  position: absolute;
  width: 400px;
  margin-top: 20%;
}

.why-us-item h4 {
  color: #B22D30;
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Newsreader", serif;
}

/* positioning */
.left.top {
  left: -50%;
  top: 0;
  background: linear-gradient(#f3f3f3 0%, #f3f3f3 100%);
  border: 1px solid #B22D30;
  padding: 20px 20px 30px 50px;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.right.top {
  right: -54%;
  top: 0;
  text-align: left;
  background: linear-gradient(#f3f3f3 0%, #f3f3f3 100%);
  border: 1px solid #B22D30;
  padding: 20px 20px 30px 50px;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.left.bottom {
  left: -32%;
  bottom: 7%;
  left: -45%;
  /* top: 0; */
  background: linear-gradient(rgb(0 0 0 / 86%) 0%, rgb(0 0 0) 100%);
  border: 1px solid #444444;
  padding: 20px 20px 30px 50px;
  border-radius: 20px;
}

.right.bottom {
  right: -50%;
  bottom: 5%;
  /* right: -54%; */
  /* top: 0; */
  text-align: left;
  /* left: -32%; */
  /* bottom: 0; */
  /* left: -50%; */
  /* top: 0; */
  background: linear-gradient(rgb(0 0 0 / 86%) 0%, rgb(0 0 0) 100%);
  border: 1px solid #444444;
  padding: 20px 20px 30px 50px;
  border-radius: 20px;
}

/* animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.why-us-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
}

/* rotating ring */
.rotating-border {
  position: absolute;
  inset: -146px;
  border: 2px dashed #B22D30;
  border-radius: 50%;
  animation: spin 10s linear infinite;

}

/* dots */
.rotating-border .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #B22D30;
  border-radius: 50%;
}

/* dot positions on circle */
.dot1 {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.dot2 {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.dot3 {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.dot4 {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

/* static image */
.center-image {
  position: absolute;
  inset: 25px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image img {
  width: 500px;
}

/* animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.why-us-item p {
  font-size: 20px;
  font-weight: 100;
  line-height: 32px;
  color: #000;
  font-family: "Newsreader", serif;
  font-weight: 500;
}


.about-page-pointer {
  /* display: flex; */
  border: 1px solid #dfdada;
  border-radius: 20px;
  background: #eaeaea;
  padding: 0px 30px;
}

.about-pointer-container {
  padding: 34px 0px 20px 0px;
  text-align: center;
}

@media(max-width:1700px) {
  .why-us-wrapper {
    width: 700px;
  }

}

@media(max-width:1500px) {
  .center-image img {
    width: 400px;
  }

  .why-us-wrapper {
    width: 636px;
  }
}

@media(max-width:920px) {
  .why-us-center {
    display: none;
  }
}

/* --------------- VM CONTENT --------------- */
.vm-container {
  padding: 100px 200px 100px 200px;
}

.vm-img-box {
  height: 400px;
}

.vm-img-box img {
  height: 100%;
  border-radius: 20px;
}

.vm-content-box {
  color: #000000;
  background: linear-gradient(#f3f3f3 0%, #f3f3f3 100%);
  border: 1px solid #B22D30;
  padding: 20px 20px 30px 50px;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.vm-gap {
  margin-bottom: 3%;
}

.vm-content-box-right {
  margin-left: -16%;
  width: 100%;
  text-align: justify;
}


.vm-box {
  margin-top: 5%;
}

.vm-content-box h1 {
  font-weight: bold;
  text-align: left;
  color: #B22D30;
}


@media(max-width:1400px) {}

@media (max-width:767px) {
  .breadcumb-wrapper {
    text-align: center;
    padding: 0px;
  }

  .breadcumb-wrapper .breadcumb-content {
    padding: 179px 0px 100px 10px;
  }

  .about-page-section {
    display: block;
  }

  .about-page-content {
    margin-top: 40%;
    max-width: 100%;
  }

  .elementor-size-default {
    font-size: 33px !important;
  }

  .about-page-content p {
    font-size: 12px;
    text-align: justify;
    width: 92%;
  }

  .about-page-pointer {
    display: block;
  }

  .about-page-content h1 {
    font-size: 20px;
  }


  .about-pointer-container img {
    height: 50px;
  }

  .about-pointer-container {
    padding: 30px 20px 0px 32px;
  }

  .vm-container {
    padding: 50px 20px;
  }

  .vm-img-box {
    height: 300px;
    text-align: center;
  }

  .why-us-item h4 {
    font-size: 20px;
  }

  .why-us-item p {
    font-size: 15px;
  }

  .vm-content-box-right {
    margin-left: 0%;
    width: 100%;
    margin-top: 10%;
  }

  .vm-content-box h1 {
    font-size: 25px;
  }

  .vm-content-box {
    margin-bottom: 10%;
  }


}

@media (max-width: 1024px) {

  .why-us-wrapper {
    width: 100%;
    height: auto;
    padding: 0px;
  }

  .why-us-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 60px;
    margin-top: 17%;
  }

  .rotating-border {
    inset: 18px;
  }

  .center-image img {
    width: 230px;
  }

  .why-us-item {
    position: relative;
    width: 90%;
    margin: 20px auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    text-align: left;
  }

  .left.top,
  .right.top,
  .left.bottom,
  .right.bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}


@media(max-width:767px) {
  .finger-wrapper {
    position: relative;
    width: 170px;
    margin: auto;
    height: 500px;
  }

  .icon {
    position: absolute;
    width: 106px;
    transition: transform 0.2s ease-out;
    border-radius: 20px;
  }

  .icon-1 {
    /* bottom: -19% !important; */
    left: -37%;
    width: 200px !important;
    /* height: 500px; */
    display: none;
  }

  .icon-2 {
    top: 26%;
    right: -49px;
    width: 227px !important;
  }

  .icon-3 {
    top: 31px;
    left: -39%;
    width: 200px !important;
  }

  .icon-4 {
    top: 57% !important;
    left: -32%;
    width: 201px !important;
  }

  .icon-5 {
    bottom: -20px;
    right: 40%;
    display: none;
  }

  .about-top-lines-img {
    height: 339px;
    margin-top: -50%;
    margin-left: 69%;
    margin-bottom: 10%;
    display: none;
    /* z-index: 0; */
  }

  .content {
    margin-left: 0%;
    margin-top: 25%;
  }

  .para-text {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
  }
}

@media(max-width:767px) {
  .why-us-image img {
    max-width: 430px;
    /* animation: why-us-image-float 6s ease-in-out infinite; */
  }

  .brand-one__sec-title .ball {
    width: 40px;
    height: 40px;
  }


  .brand-one__sec-title {
    margin-bottom: 5%;
    z-index: 20;
  }

  .brand-one__widget img {
    height: 53px;
    margin-top: -37%;
  }

  .award-one__single-card .shape-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    filter: contrast(0.1);
    display: none;
  }

  .title-info .title {
    font-size: 18px;
  }

  .cta-box {
    padding: 150px 20px 30px 20px;
  }

  .button-33 {
    padding: 10px 30px;
  }
}




/* =========== CONTACT US PAGE STYLING ============ */


.contact-us-contact-details-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}

.contact-us-contact-details-item {
  text-align: center;
  width: 327px;
  height: 328px;
  background: linear-gradient(#f3f3f3 0%, #f3f3f3 100%);
  border: 1px solid #B22D30;
  padding: 30px 10px;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.contact-us-contact-details-icon {
  width: 100px;
  height: 100px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #B22D30;
}

.contact-us-contact-details-icon i {
  color: #B22D30;
  font-size: 40px;
}

.contact-us-contact-details-item h4 {
  color: #B22D30;
  font-size: 25px;
  padding-bottom: 13px;
  padding-top: 15px;
  font-weight: bold;
}

.contact-us-contact-details-item p {
  color: #000000;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Newsreader", serif;
}

.contact-us-contact-details-line {
  flex: 1;
  height: 1px;
  border-top: 3px dotted rgb(55 55 55);
  margin-top: -1%;
}


.contact-details-container {
  margin: 100px 300px;
  background: #eaeaea;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #b22d30;
}

.contact-box {
  padding: 100px 300px;
}

.from-box {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.from-box label {
  display: block;
  font-weight: 100;
  color: #b22d30;
  font-size: 20px;
  padding-bottom: 7px;
  font-family: "Newsreader", serif;
  font-weight: 700;
}

.from-box label i {
  margin-right: 6px;
  color: #9b2b2d;
  font-size: 25px;
}

.from-box input[type="text"],
.from-box input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #525252;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 9%;
  background: #eaeaea;
  color: #fff;
  margin-bottom: 9%;
}

.from-box input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.contact-theme-btn {
  width: 100%;
  padding: 14px;
  background: #b22d30;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-theme-btn:hover {
  background: linear-gradient(135deg, #0056b3, #003f88);
  transform: translateY(-2px);
}

.btn-wrap {
  display: inline-block;
}

.from-box .row {
  margin: 0;
}

.from-box .col-md-12 {
  padding: 0;
}

.from-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: none;
}

.from-box textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.map-box {
  padding-top: 7%;
}

.map-box iframe {
  height: 600px;
  border-radius: 20px;
}

a:hover {
  text-decoration: none;
}

@media(max-width:1600px) {
  .contact-box {
    padding: 100px 100px;
  }

  .contact-details-container {
    margin: 100px 100px;
  }
}


@media(max-width:1000px) {
  .contact-us-contact-details-wrapper {
    display: block;
  }

  .contact-box {
    padding: 100px 30px;
  }

  .contact-us-contact-details-item {
    width: 100%;
    margin-bottom: 6%;
  }

  .contact-us-contact-details-line {
    display: none;
  }

  .contact-details-container {
    margin: 5%;
  }
}

@media(max-width:767px) {
  .contact-box {
    padding: 0px 30px;
  }

  .contact-us-contact-details-wrapper {
    display: block;
  }

  .contact-us-contact-details-item {
    width: 100%;
    margin-bottom: 10%;
  }

  .contact-details-container {
    margin: 10px;
  }

  .contact-details-container {
    padding: 0px;
  }

  .map-box {
    padding-top: 0%;
    margin-left: 7%;
  }

  .map-box iframe {
    height: 300px;
  }

  .contact-us-contact-details-line {
    flex: 1;
    height: 17px;
    border-top: 3px dotted rgb(55 55 55);
    margin-top: -1%;
    display: none;
  }
}



/* -------------- SERVICES ------------ */


.services {
  padding: 100px 0px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2a44;
}

.section-title span {
  background: #B22D30;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  border: 3px solid #d2d2d2;
  padding: 1px;
  transition: 1s ease-in-out;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 1s ease-in-out;
}

.service-card:hover img {
  scale: 1.3;
  transition: 1s ease-in-out;
}


.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.8));
}

.badge-group {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.badge-group span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.card-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.card-content h3 {
  font-size: 31px;
  margin-bottom: 8px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

.card-content p {
  font-size: 15px;
  opacity: 0.9;
}


.service-heading-box {
  text-align: center;
}

.services-box {
  padding: 100px;
}

.services-container {
  max-width: 85%;
  margin: auto;
}

@media(max-width:767px) {
  .services-box {
    padding: 50px 20px;
  }
}


/* =========== SERVICE DETAIL SECTION ======== */
.service-content-section {
  padding: 200px;
}

.service-content-box {
  display: flex;
  gap: 150px;
}

.service-img-box {
  height: 469px;
}

.service-img-box img {
  height: 100%;
  border-radius: 20px;
  border: 2px solid #3a3a3a;
  padding: 4px;
  width: 100%;
  object-fit: contain;
}

.service-text-box h1 {
  color: #B22D30;
  font-weight: bold;
  font-size: 49px;
  padding-bottom: 0px;
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
}

.service-text-box p {
  color: #000000;
  font-size: 21px;
  line-height: 31px;
  padding-bottom: 10px;
  text-align: justify;
  font-family: "Newsreader", serif;
}

.key-details ul {
  list-style-type: disclosure-closed;
  color: #B22D30;
  font-size: 22px;
  line-height: 34px;
  margin-left: 3%;
  font-family: "Newsreader", serif;
}

.key-feature-text {
  color: #000000;
}

.sd-hr {
  width: 25%;
  /* border-top: #b4b4b4 !important; */
  border-top: 1px solid #6f6f6f;
  margin-bottom: 5%;
}

@media(max-width:1500px) {
  .service-content-section {
    padding: 100px;
  }

  .service-img-box {
    height: 360px;
  }

  .service-content-box {
    gap: 50px;
  }
}

@media(max-width:1200px) {
  .service-content-section {
    padding: 50px;
  }

  .service-img-box {
    height: 360px;
  }

  .service-content-box {
    gap: 50px;
  }
}

@media(max-width:1000px) {
  .service-content-box {
    display: block;
  }
}

@media(max-width:767px) {
  .service-content-section {
    padding: 20px;
  }

  .service-img-box {
    height: 340px;
  }

  .service-content-box {
    display: block;
  }

  .service-text-box h1 {
    font-size: 34px;
  }

  .service-text-box p {
    font-size: 20px;
    line-height: 25px;
    text-align: justify;
  }

  .key-details ul {
    font-size: 14px;
    line-height: 27px;
    margin-left: 0%;
  }

  .breadcumb-title {
    font-size: 34px;
  }

  .breadcumb-menu {
    margin-top: 0px;
  }
}

@media(max-width:300px) {
  .service-img-box {
    height: 166px;
  }

  .service-text-box h1 {
    font-size: 25px;
  }

  .service-text-box p {
    font-size: 16px;
  }
}

/* =========== PROJECTS PAGE STYLING ========= */
.projects-section {
  padding: 80px 20px;
  position: relative;
}

.projects-container {
  max-width: 90%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.projects-tabs {
  width: 430px;
  background: #353535;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 80px;
  z-index: 1100;
  background: #454545;
  margin-top: 9%;
}

.projects-tab {
  width: 100%;
  padding: 18px 20px;
  background: #000000;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.projects-tab span:first-child {
  color: #ffffff;
  font-size: 20px;
  text-transform: capitalize;
}

.projects-arrow {
  width: 36px;
  height: 36px;
  background: #262626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  color: #fff;
}

.projects-tab.active {
  background: #202020;
}

.projects-tab.active .projects-arrow {
  background: #4d4d4d73;
  color: #ffffff;
}

.projects-tab:hover {
  background: #000;
}

.projects-tab:hover .projects-arrow {
  background: #4d4d4d73;
  color: #ffffff;
}

.projects-content {
  flex: 1;
  margin-left: 7%;
}

.projects-details {
  display: none;
}

.projects-details.active {
  display: block;
}

.projects-details img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #383737;
  padding: 2px;
}

.projects-details h1 {
  color: #eb3437;
  font-weight: bold;
  font-size: 50px;
  padding-bottom: 0px;
  text-transform: capitalize;
  font-family: auto;
}

.projects-details p {
  color: #d1d1d1;
  font-size: 18px;
  line-height: 31px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.project-dot {
  height: 25px;
  filter: grayscale(1);
  width: auto;
  height: 30px !important;
  width: auto !important;
  border-radius: 0px !important;
  margin-top: -1% !important;
}

.pkdmh {
  color: #e0e0e0;
  font-size: 23px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 2%;
  /* padding-top: 7%; */
  font-weight: bold;
}

.pkdt {
  color: #dcdcdc;
  margin-left: 1%;
  font-size: 20px;
}

.project-location {
  margin-bottom: 2%;
}

.project-img-box {
  height: 500px;
  margin-bottom: 5%;
}

.project-img-box img {
  height: 100%;
  width: auto;

}

@media (max-width: 900px) {
  .projects-container {
    flex-direction: column;
  }

  .projects-tabs {
    width: 100%;
  }
}



/* ------------- PROJECTS PAHE NEW STYLING ------------- */

.pro-case-section {
  padding: 80px 20px;
}

.pro-case-container {
  max-width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.pro-case-card {
  border-radius: 18px;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-case-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); */
}

.pro-case-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  background: rgba(0, 170, 255, 0.15);
  color: #4fc3ff;
  margin-bottom: 18px;
}

.pro-case-title {
  color: #eb3437;
  font-weight: bold;
  font-size: 50px;
  padding-bottom: 0px;
  text-transform: capitalize;
  font-family: auto;
}

.pro-case-text {
  font-size: 17px;
  color: #d1d1d1;
  line-height: 1.7;
  text-align: justify;
}

.pro-case-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.pro-case-stats strong {
  font-size: 22px;
  color: #4fc3ff;
  display: block;
}

.pro-case-stats span {
  font-size: 13px;
  color: #9fb2c7;
}

.pro-case-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid #4fc3ff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pro-case-btn:hover {
  background: #4fc3ff;
  color: #07121f;
}


.project-key-details {
  margin-bottom: 5%;
}

.pro-image {
  height: 400px;
  text-align: center;
  margin-top: 7%;
  width: auto;
}

.pro-image img {
  width: 100%;
  height: 100%;
  border: 1px solid #565656;
  padding: 5px;
  border-radius: 20px;

  object-fit: contain;
  transition: 2s ease;
  box-shadow: 0 20px 40px rgb(196 196 196 / 40%);
}


.pro-image:hover img {
  scale: 1.1;
  transition: 1s ease;
}


/* --------------- ABOUT FOUNDER ------------ */


.about-fonunter {
  color: #ffffff;
  border-bottom: 4px dashed #e1e1e1;
}

.about-fonunter__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-fonunter__content {
  flex: 1;
  margin-top: 26%;
}

.about-fonunter__content h2 {
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-fonunter__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0f3b4a;
}

.btn-link {
  color: #ffffff;
  opacity: 0.85;
}

.about-fonunter__quote {
  background: #eaeaea;
  padding: 25px;
  border-radius: 12px;
  width: 184%;
  margin-left: -63%;
  margin-bottom: 0%;
  padding: 50px;
  padding-left: 112px;
  /* padding-bottom: 87px; */
  padding-right: 78px;
  border-radius: 0px 100px 0px 0px;
}

.about-fonunter__quote p {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 42px;
  color: #000;
  font-family: "Newsreader", serif;
  font-weight: 500;
}

.about-fonunter__quote span {
  font-size: 13px;
  opacity: 0.8;
  color: #000;
  font-family: "Newsreader", serif;
  font-weight: 500;
}

.about-fonunter__image {
  flex: 1;
}

.founder-box {
  border-radius: 5px 5px 0px 0px;
  object-fit: contain;
  height: 600px;
  margin-left: 36%;
  /* border: 4px solid #b22d30; */
  margin-bottom: -27%;
}

.founder-box img {
  height: 600px;
}

.about-fonunter__content h2 {
  margin-left: -52%;
}

@media(max-width:1400px) {
  .about-page-section {
    gap: 0px;
  }
}

@media(max-width:1300px) {

  .about-page-image-left,
  .about-page-image-right {
    width: 490px;
  }

  .elementor-size-default {
    font-size: 50px;
  }

  .about-page-content p {
    font-size: 15px;
  }

  .about-page-content h1 {
    font-size: 18px;
  }
}

@media(max-width:1000px) {

  .about-page-image-left,
  .about-page-image-right {
    width: 400px;
  }

  .about-page-content {
    max-width: 100%;
    margin-top: 28%;
  }

  .wsua-box img {
    margin-bottom: 2% !important;
  }

  .wsua-box {
    margin-bottom: 4% !important;
  }
}

@media (max-width: 767px) {
  .about-fonunter__container {
    flex-direction: column;
    text-align: center;
  }

  .about-fonunter__actions {
    justify-content: center;
  }

  .about-fonunter__quote {
    margin: auto;
  }

  .about-fonunter__content h2 {
    margin-left: 0%;
  }

  .about-fonunter__quote {
    border-radius: 12px;
    width: 100%;
    margin-left: -3% !important;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-bottom: 25px;
    padding-right: 25px;
    margin-left: 0%;
    text-align: left;
    border-radius: 0px 100px 0px 0px;
  }

  .about-fonunter__quote p {
    font-size: 15px !important;
    line-height: 26px !important;
  }

  .about-fonunter__quote span {
    font-size: 10px;
  }

  .about-fonunter__image img {
    margin-left: 0%;
  }

  .about-fonunter__container {
    gap: 0px;
  }
}


.style-4 {
  margin-left: 240%;
  margin-top: -94%;
}

.style-3 {
  margin-left: 65%;
  margin-top: -90%;
}

.style-11 {
  margin-top: 128%;
  margin-left: 98%;
}

.style-22 {
  margin-left: -18%;
  margin-top: -16%;
}


@media(max-width:767px) {

  .about-page-image-left,
  .about-page-image-right {
    width: 325px;
  }

  .style-4 {
    margin-top: 0%;
  }
}


/* ---------------------- TESTIMONIAL ---------------------- */

.testi-box {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.testi-section {
  padding: 100px 40px;
}

.testi-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.testi-left {
  flex: 1;
}

.testi-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testi-desc {
  max-width: 380px;
  color: #6b7280;
  margin-bottom: 30px;
}

.testi-btn {
  background: linear-gradient(135deg, #7c5cff, #ff6fd8);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}

.testi-right {
  flex: 1;
  position: relative;
}

/* .testi-slider {
  position: relative;
  height: 340px;
  width: 420px;
} */

.testi-slider {
  position: relative;
  height: 340px;
  width: 600px;
}

.testi-card {
  position: absolute;
  width: 100%;
  background: #fff;
  padding: 26px;
  box-shadow: 0 25px 45px rgb(212 212 212 / 10%);
  transition: all 0.7s ease;
  border-left: 12px solid #ae1c1c;
  height: 200px;
}

.testi-card.testi-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 3;
}

.testi-card.testi-prev {
  transform: translateY(-200px) scale(0.92);
  opacity: 0.5;
  z-index: 1;
  margin-left: 100px;
}

.testi-card.testi-next {
  transform: translateY(200px) scale(0.92);
  opacity: 0.5;
  z-index: 1;
  margin-left: 100px;
  height: 221px;
}

.testi-user {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.testi-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.testi-user h4 {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

.testi-user span {
  font-size: 13px;
  color: #8b8b8b;
}

.testi-card p {
  font-size: 17px;
  line-height: 1.6;
  font-family: "Newsreader", serif;
  color: #4b5563;
}


/* ---------------- Story styling --------------- */

.story-box {
  padding: 150px;
}

.story-detail-box {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.story-img-box {
  height: 700px;
  border-radius: 50%;
}

.story-img-box img {
  height: 100%;
  border-radius: 50%;
  border: 1px solid #464646;
  padding: 8px;
}

/* .story-text-box {
  margin-top: 9%;
} */

.story-text-box p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
  text-align: justify;
  margin-top: 6%;
}

@media(max-width:1400px) {
  .story-img-box {
    height: 500px;
  }

  .story-box {
    padding: 50px;
  }
}

@media(max-width:800px) {
  .story-detail-box {
    display: block;
  }

  .wsua-box {
    height: auto;
  }
}

@media(max-width:900) {
  .story-img-box {
    height: 300px;
  }

  .story-box {
    padding: 20px;
  }
}

@media(max-width:767px) {
  .style-11 {
    margin-top: 0%;
    margin-left: 71%;
    margin-bottom: 0%;
  }

  .counter-text-box {
    top: -89%;
  }

  .style-2 {
    margin-top: -19% !important;
    margin-left: 58%;
  }

  .style-3 {
    margin-left: 47%;
    margin-top: -55%;
  }

  .style-4 {
    margin-top: 0%;
    margin-left: 10% !important;
  }

  .left .why-us-card {
    transform: none;
  }

  .right .why-us-card {
    transform: none;
  }

  .why-us-image img {
    margin-top: 0%;
  }

  .auto-container {
    margin-top: 27%;
  }

  .style-2-kss {
    margin-top: 7% !important;
    margin-left: 0%;
  }

  .cta-flex {
    display: block;
  }

  .cta-right {
    margin-top: 59%;
  }

  .testi-slider {
    width: 312px;
  }

  .testi-card.testi-next {
    margin-left: 30px;
    margin-top: 10%;
  }

  .testi-card.testi-prev {
    margin-left: 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 0px;
  }

  .footer-description {
    font-size: 16px;
    text-align: justify;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 0px;
  }

  .footer-bottom {
    margin-top: 0px;
  }

  .story-box {
    padding: 70px 20px;
  }

  .story-detail-box {
    display: block;
  }

  .story-img-box {
    height: 300px;
    text-align: center;
  }

  .services-container {
    max-width: 100% !important;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(331px, 1fr)) !important;
  }

  .service-card {
    height: 347px;
  }

  .card-content h3 {
    font-size: 25px;
    line-height: 33px;
  }

  .service-img-box {
    height: 230px;
  }

  .pro-case-section {
    padding: 80px 0px;
  }

  .pro-case-container {
    max-width: 97%;
  }

  .pro-case-title {
    font-size: 40px;
  }

  .project-dot {
    height: 20px !important;
    margin-top: -3% !important;
  }

  .project-key-details {
    margin-bottom: 7%;
    margin-top: 12%;
  }

  .pro-case-card {
    padding: 19px;
  }

  .pro-image {
    height: 219px;
    text-align: center;
    text-align: center;
    width: auto;
  }

  .about-fonunter__content {
    flex: 1;
    margin-top: 26%;
    padding: 0px 10px;
  }

  .pro-case-text {
    font-size: 13px;
  }

  .services {
    padding: 50px 0px;
  }

  .img-static {
    margin-top: 55%;
  }

  .img-rotate {
    /* width: 100%; */
    width: 300px !important;
    position: absolute;
    right: 10%;
    top: 0;
    z-index: 1;
    margin-top: -26%;
  }
}



/* ==================== BLOG PAGE STYLING ======================= */

.blog-section {
  padding: 80px 20px;
}

.blog-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 500px));
  gap: 30px;
  max-width: 85%;
}

.blog-container-bd {
  max-width: 100%;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #292929;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.blog-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: inline-block;
  font-size: 14px;
  color: #ff4d4f;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-title {
  font-size: 24px;
  line-height: 1.4;
  color: #b7393c;
  margin-bottom: 16px;
  font-weight: bold;
  text-transform: capitalize;
}

.blog-read-more {
  font-size: 15px;
  color: #b7b7b7;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #ff4d4f;
}

.blog-image {
  padding: 12px;
}

.blog-meta span {
  background: #d5d5d5;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 16px;
  color: #000;
  margin-right: 3px;
}

.blog-details-box {
  padding: 20px 200px;

}

.small-details {
  display: flex;
  gap: 25px;
  color: #dcdcdc;
  font-size: 19px;
  font-weight: bold;
}

.category-box {
  background: #2d2d2d;
  padding: 8px 22px;
  border-radius: 10px;
}

.category-box span {
  font-weight: 100;
}

.blog-details-img-box {
  margin-top: 2%;
  margin-bottom: 5%;
  border: 1px solid #303030;
  width: fit-content;
  border-radius: 20px;
  padding: 4px;
}

.blog-details-img-box img {
  border-radius: 20px;
}

.blog-heading {
  color: #b7393c;
  font-weight: bold;
  font-size: 50px;
  padding-bottom: 0px;
  text-transform: capitalize;
  font-family: auto;
  width: 80%;
  padding-bottom: 28px;
}

.blog-details-content p {
  font-size: 17px;
  color: #000000;
  line-height: 1.7;
  text-align: justify;
  width: 82%;
  text-align: justify;
}

.blog-list {
  margin-left: 27px;
  list-style-type: disclosure-closed;
  width: 82%;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

.blog-details-content h4 {
  color: #000000;
  padding: 20px 0px;
  font-size: 30px;
}

.blog-details-content h2 {
  color: #212121;
  font-weight: bold;
  font-size: 44px;
}


.past-blogs {
  padding: 100px 200px 100px;
}

.other-blog-heading {
  margin-bottom: 3%;
}

/* ==================== LEAVE A COMMENT SECTION ======================= */

.leave-comment-section {
  padding: 80px 200px;
}

.leave-comment-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 40px;
  text-align: left;
  font-weight: bold;

}

.comment-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(194 194 194 / 30%);
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  color: #000000;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #eb3437;
}

.post-comment-btn {
  background: #b22d30;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.post-comment-btn:hover {
  background: #d02b2e;
}

.success-message {
  color: #28a745;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.error-message {
  color: #dc3545;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.comments-list {
  margin-top: 40px;
}

.comments-list h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 30px;
}

.comment-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header strong {
  color: #eb3437;
  font-size: 18px;
}

.comment-date {
  color: #888;
  font-size: 14px;
}

.comment-website {
  margin-bottom: 10px;
}

.comment-website a {
  color: #4fc3ff;
  text-decoration: none;
}

.comment-website a:hover {
  text-decoration: underline;
}

.comment-content {
  color: #d1d1d1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .leave-comment-section {
    padding: 40px 20px;
  }

  .comment-form {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .comments-list h3 {
    font-size: 24px;
  }
}


@media(max-width:767px) {
  .blog-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 500px));
    gap: 30px;
    max-width: 100%;
  }

  .blog-details-box {
    padding: 20px;
  }

  .small-details {
    display: block;
  }

  .category-box {
    margin-bottom: 14px;
  }

  .blog-details-img-box {
    width: 332px;
  }

  .blog-details-img-box img {
    width: 100%;
  }

  .blog-heading {
    font-size: 42px;
    padding-bottom: 7px;
  }

  .blog-details-content h4 {
    font-size: 25px;
  }

  .past-blogs {
    padding: 20px;
  }
}


/* --------- NEW - SLIDER ---------- */
.new-vt-slider {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.new-vt-slider .slides {
  width: 100%;
  height: 100%;
}

.new-vt-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  transition: clip .7s ease-in-out, z-index 0s .7s;
  clip: rect(0, 100vw, 100vh, 100vw);
  display: flex;
  align-items: center;
  justify-content: left;
}

/* backgrounds */
.new-vt-slider .slide:nth-child(1) {
  background:
    url('../Images/home/new-slider-1.jpg');
  background: linear-gradient(to right, rgba(255, 255, 255, 0.87) 10%, rgba(255, 255, 255, 0.288) 51%, rgba(1, 1, 1, 0.2) 100%),
    url('../Images/home/new-slider-1.jpg');
  background-size: cover !important;

}

.new-vt-slider .slide:nth-child(2) {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.87) 10%, rgba(255, 255, 255, 0.288) 51%, rgba(1, 1, 1, 0.2) 100%),
    url('../Images/home/new-slider-2.jpg');
  background-size: cover !important;
  object-fit: cover !important;
}

.new-vt-slider .slide:nth-child(3) {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.87) 10%, rgba(255, 255, 255, 0.288) 51%, rgba(1, 1, 1, 0.2) 100%),
    url('../Images/home/slider-3.jpg');
  background-size: cover !important;
  object-fit: cover !important;
}

.new-vt-slider .slide:nth-child(4) {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.87) 10%, rgba(255, 255, 255, 0.288) 51%, rgba(1, 1, 1, 0.2) 100%),
    url('../Images/home/new-slider-3.jpg');
  background-size: cover !important;
  object-fit: cover !important;
}

/* content animation */
.new-vt-slider article {
  width: 60%;
  margin-top: 4rem;
  color: #fff;
  z-index: 11;
}

.new-vt-slider h3,
.new-vt-slider h3+p,
.new-vt-slider p+.btn,
.new-vt-slider .slide:after {
  opacity: 0;
  transition: opacity .7s 0s, transform .5s .2s;
  transform: translate3d(0, 50%, 0);
}

.new-vt-slider .slide.current h3,
.new-vt-slider .slide.current h3+p,
.new-vt-slider .slide.current p+.btn,
.new-vt-slider .slide.current:after {
  opacity: 1;
  transition-delay: 1s;
  transform: translate3d(0, 0, 0);
}

.new-vt-slider .slide.current {
  z-index: 1;
  clip: rect(0, 100vw, 100vh, 0);
}

.new-vt-slider .slide.prev {
  clip: rect(0, 0, 100vh, 0);
}



.new-vt-slider .slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
}

.new-vt-slider .slider-dots a {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #a92c2f;
  margin: 0 4px;
}

.new-vt-slider .slider-dots a.current_dot {
  background: #9e9d9d;
}

.big {
  font-size: 70px;
  font-weight: bold;
  color: #a92c2f;
  padding: 10px;
  border-radius: 10px;
  font-style: normal;
  letter-spacing: 6px;
  color: #B22D30;
  font-size: 90px;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
}

.padding_2x {
  padding: 50px 0px 0px 110px;
}

.hr {
  border: none;
  height: 20px;
  width: 90%;
  height: 50px;
  margin-top: -60px;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 20px 33px -13px #ffffff;
  margin-left: 0%;
}


/* ------- NEW CHANGES --------- */

.about-para {
  text-align: center;
  width: 85%;
  margin-top: 4%;
}


/* ----------- SOLUTION --------------- */
.solution-box {
  height: 100%;
  width: 100%;
}

.solution-box img {
  height: 100%;
  width: 100%;
}

.solution-text {
  display: flex;
  gap: 119px;
  justify-content: center;
  margin-top: -25%;
  position: absolute;
}

.sol-design h4 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
}

.sol-1 {
  position: relative;
  left: 7%;
  margin-top: -2%;
}

.sol-2 {
  position: relative;
  left: 4%;
  margin-top: -10%;
}

.sol-3 {
  position: relative;
  left: 1%;
  margin-top: -2%;

}

.sol-4 {
  position: relative;
  left: -5%;
  margin-top: -9%;
}

.sol-5 {
  position: relative;
  left: -11%;
  margin-top: -4%;
}

.sol-6 {
  position: relative;
  left: -13%;
  margin-top: -11%;
}

.solution-container {
  padding: 100px 0px 0px 0px;
}

.solution-container center {
  margin-bottom: -5%;
}

.social-icons i {
  font-size: 30px;
  padding-right: 36px;
  padding-top: 50px;
  color: #565658;
}

/* --- add media query here ----- */

/* ============================================
   LARGE SCREENS (1200px - 1399px)
   ============================================ */
@media (max-width: 1399px) and (min-width: 1200px) {

  /* Navbar */
  .navbar-container {
    max-width: 1140px;
    padding: 15px 20px;
  }

  .navbar-menu {
    gap: 20px;
  }

  /* Slider */
  .big {

    padding: 45px;
  }

  .padding_2x {
    padding: 50px 0 0 120px;
  }

  .hr {
    width: 85%;
  }

  /* About */
  .about-us-box {
    padding: 180px 180px 50px 180px;
  }

  .about-us-img-box {
    height: 450px;
  }

  .para-text {
    font-size: 24px;
  }

  /* Counter */
  .counter-box {
    padding: 0 0 80px 0;
  }

  .counter-container {
    padding: 0 80px;
  }

  /* .funfact-one__items {
    margin-left: -75%;
  } */

  .funfact-one__single-item {
    width: 300px;
    height: 300px;
  }

  .counter-text-box {
    height: 150px;
    width: 150px;
  }

  .counter-count {
    font-size: 75px;
  }

  .counter-title {
    font-size: 28px;
  }

  /* Solutions */
  .solution-text {
    gap: 110px;
  }

  .sol-design h4 {
    font-size: 25px;
  }

  /* Why Us - Cards */
  .why-us-card {
    width: 380px;
  }

  /* Brands */
  .brand-one {
    padding: 80px;
  }

  .brand-one__widget img {
    height: 75px;
  }

  /* Awards/Security Solutions */
  .section-bg-2 {
    padding: 80px 150px 150px 150px;
  }

  .award-one__single-card {
    padding: 35px;
  }

  .title-info .title {
    font-size: 26px;
  }

  /* CTA */
  .cta-flex {
    gap: 100px;
  }

  .cta-left {
    width: 55%;
  }

  .cta-right img {
    height: auto;
  }

  /* Testimonial */
  .testi-slider {
    width: 380px;
    height: 320px;
  }

  .testi-card {
    padding: 22px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 80px 30px 25px;
    margin: 0 30px 15px 30px;
  }

  .footer-container {
    gap: 50px;
  }

  .footer-left {
    flex: 1;
    width: 40%;
    margin-left: 10%;
  }

  .footer-right {
    width: 35%;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .footer-links-2 {
    margin-top: 66%;
    margin-left: 14%;
  }
}

/* ============================================
   MEDIUM SCREENS (992px - 1199px)
   ============================================ */
@media (max-width: 1199px) and (min-width: 992px) {

  /* Navbar */
  .navbar-container {
    max-width: 960px;
    padding: 12px 15px;
  }

  .navbar-menu {
    gap: 15px;
  }

  .navbar-menu a {
    font-size: 18px;
  }

  /* Slider */
  .big {
    font-size: 72px;
    padding: 40px;
  }

  .padding_2x {
    padding: 40px 0 0 100px;
  }

  .hr {
    width: 80%;
    margin-top: -50px;
  }

  /* About */
  .about-us-box {
    padding: 160px 120px 40px 120px;
  }

  .about-us-img-box {
    height: 400px;
  }

  .heading-box {
    gap: 8px 0;
  }

  .heading-subtitle-text {
    font-size: 14px;
    padding: 8px 24px;
  }

  .elementor-size-default {
    font-size: 56px;
  }

  .para-text {
    font-size: 20px;
    line-height: 28px;
  }

  .about-list {
    font-size: 18px;
    line-height: 40px;
  }

  /* Counter */
  .counter-box {
    padding: 0 0 60px 0;
  }

  .counter-container {
    padding: 0 60px;
  }

  .funfact-one__items {
    margin-left: -70%;
    gap: 15px;
  }

  .funfact-one__single-item {
    width: 260px;
    height: 260px;
  }

  .counter-text-box {
    height: 130px;
    width: 130px;
    top: -48%;
  }

  .counter-count {
    font-size: 60px;
    margin-left: 15%;
  }

  .counter-title {
    font-size: 24px;
    margin-left: -12%;
  }

  .counter-img img {
    width: 70px;
    margin-left: 32%;
  }

  .style-2 {
    margin-top: -10%;
    margin-left: 0%;
  }

  .style-3 {
    margin-left: 55%;
    margin-top: -75%;
  }

  .style-4 {
    margin-left: 208%;
    margin-top: -72%;

  }

  .style-11 {
    margin-top: 110%;
    margin-left: 67%;
  }

  .style-22 {
    margin-left: -29%;
    margin-top: -28%;
  }

  /* Solutions */
  .solution-container {
    padding: 80px 0 0 0;
  }

  .solution-text {
    gap: 80px;
    margin-top: -22%;
  }

  .sol-design h4 {
    font-size: 28px;
  }

  .sol-1 {
    left: 5%;
  }

  .sol-2 {
    left: 3%;
    margin-top: -8%;
  }

  .sol-3 {
    left: 1%;
  }

  .sol-4 {
    left: -4%;
    margin-top: -7%;
  }

  .sol-5 {
    left: -9%;
    margin-top: -3%;
  }

  .sol-6 {
    left: -11%;
    margin-top: -9%;
  }

  /* Why Us */
  .why-us-container {
    gap: 40px;
  }

  .why-us-card {
    width: 340px;
  }

  .why-us-card h4 {
    font-size: 22px;
  }

  .why-us-card p {
    font-size: 16px;
  }

  .why-us-image img {
    max-width: 500px;
    margin-top: -20%;
  }

  /* Brands */
  .brand-one {
    padding: 60px;
  }

  .brand-one__widget img {
    height: 65px;
  }

  .brand-one__content {
    gap: 60px;
  }

  .brand-one__sec-title .title {
    font-size: 26px;
  }

  .brand-one__sec-title .sec-title {
    padding: 25px 80px;
  }

  .brand-one__sec-title .ball {
    width: 60px;
    height: 60px;
  }

  /* Awards/Security Solutions */
  .section-bg-2 {
    padding: 60px 100px 100px 100px;
  }

  .award-one__single-card {
    padding: 28px;
    margin-top: 50px;
  }

  .title-info .title {
    font-size: 22px;
  }

  .title-info .tag {
    font-size: 20px;
  }

  /* CTA & Testimonial */
  .cta-box {
    padding-top: 25%;
  }

  .cta-flex {
    gap: 80px;
  }

  .cta-left {
    width: 55%;
  }

  .cta-right {
    flex: 1;

    margin-top: 20%;

  }

  .cta-right img {
    height: auto;
  }

  .testi-slider {
    width: 340px;
    height: 300px;
  }

  .testi-card {
    padding: 20px;
  }

  .testi-card p {
    font-size: 15px;
  }

  .testi-user img {
    width: 48px;
    height: 48px;
  }

  .testi-user h4 {
    font-size: 18px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 60px 25px 20px;
    margin: 0 20px 15px 20px;
  }

  .footer-container {
    gap: 35px;
  }

  .footer-left {
    width: 42%;
    margin-left: 8%;
  }

  .footer-right {
    width: 38%;
    padding-left: 30px;
  }

  .footer-logo img {
    height: 55px;
  }

  .footer-description {
    font-size: 18px;
  }

  .footer-links-grid {
    gap: 20px;
  }

  .footer-title {
    font-size: 22px;
  }

  .footer-links ul li a {
    font-size: 18px;
  }

  .footer-contact-item strong {
    font-size: 20px;
  }

  .footer-contact-item p {
    font-size: 17px;
    padding-bottom: 25px;
  }
}

/* ============================================
   SMALL SCREENS (768px - 991px)
   ============================================ */
@media (max-width: 991px) and (min-width: 768px) {

  /* Navbar */
  .navbar-container {
    max-width: 720px;
    padding: 10px 15px;
  }

  .navbar-menu {
    gap: 12px;
  }

  .navbar-menu a {
    font-size: 16px;
  }

  .navbar-logo {
    font-size: 20px;
  }

  .logo-nav {
    height: 55px;
  }

  /* Slider */
  .new-vt-slider {
    height: 80vh;
  }

  .big {
    font-size: 56px;
    padding: 30px;
    letter-spacing: 4px;
  }

  .padding_2x {
    padding: 35px 0 0 70px;
  }

  .hr {
    width: 75%;
    margin-top: -40px;
    height: 40px;
  }

  /* About */
  .about-us-box {
    padding: 140px 80px 30px 80px;
    margin-bottom: 3%;
  }

  .about-us-img-box {
    height: 350px;
  }

  .heading-box {
    gap: 6px 0;
  }

  .heading-subtitle-text {
    font-size: 12px;
    padding: 6px 18px;
    letter-spacing: 1px;
  }

  .elementor-size-default {
    font-size: 44px !important;
    letter-spacing: 3px;
  }

  .para-text {
    font-size: 18px;
    line-height: 26px;
  }

  .about-para {
    width: 90%;
    margin-top: 3%;
  }

  .about-list {
    font-size: 16px;
    line-height: 34px;
    margin-left: -5%;
  }

  .about-pointers {
    margin-left: 4%;
    margin-top: 2%;
  }

  .elementor-icon-list-text {
    font-size: 20px;
  }

  /* Counter */
  .counter-box {
    padding: 0 0 50px 0;
  }

  .counter-container {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .counter-container .col-md-6 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .funfact-one__items {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .funfact-one__single-item {
    width: 220px;
    height: 220px;
  }

  .counter-text-box {
    height: 250px;
    width: 150px;
    top: -60%;
    padding: 15px 10px;
  }

  .counter-count {
    font-size: 48px;
    margin-left: 0;
    margin-top: 0;
  }

  .counter-title {
    font-size: 20px;
    margin-left: 0;
    margin-top: 5%;
  }

  .counter-img {
    margin-top: 0;
  }

  .counter-img img {
    width: 55px;
    margin-left: 0;
  }

  .heading-box-why-us {
    margin-top: 5% !important;
    text-align: center;
    margin-left: 2%;
  }

  .style-2,
  .style-3,
  .style-4,
  .style-11,
  .style-22 {
    margin: 0;
    margin-top: 20px;
  }

  /* Solutions */
  .solution-container {
    padding: 60px 0 0 0;
  }

  .solution-box img {
    height: auto;
  }

  .solution-text {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    margin-top: 10px;
  }

  .sol-design h4 {
    font-size: 20px;
  }

  .sol-1,
  .sol-2,
  .sol-3,
  .sol-4,
  .sol-5,
  .sol-6 {
    position: relative;
    left: auto;
    right: auto;
    margin: 0;
  }

  /* Why Us */
  .why-us-section {
    padding: 60px 15px 0px;
  }

  .why-us-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .why-us-container {
    flex-direction: column;
    gap: 25px;
  }

  .why-us-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .why-us-card {
    width: 280px !important;
    padding: 20px;
  }

  .why-us-card h4 {
    font-size: 20px;
  }

  .why-us-card p {
    font-size: 15px;
  }

  .why-us-image {
    margin-top: 30px;
  }

  .why-us-image img {
    max-width: 400px;
    margin-top: 0;
  }

  /* Brands */
  .brand-one {
    padding: 50px 30px;
  }

  .brand-one__widget img {
    height: 55px;
  }

  .brand-one__content {
    gap: 40px;
    padding: 40px 0;
  }

  .brand-one__sec-title .title {
    font-size: 22px;
    line-height: 32px;
  }

  .brand-one__sec-title .sec-title {
    padding: 20px 60px;
  }

  .brand-one__sec-title .ball {
    width: 50px;
    height: 50px;
  }

  .client-padding {
    padding: 150px 0 80px 0;
  }

  /* Awards/Security Solutions */
  .section-bg-2 {
    padding: 50px 60px 80px 60px;
  }

  .award-one__single-card {
    padding: 22px;
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .award-one__single-card .content-left {
    justify-content: center;
  }

  .title-info .title {
    font-size: 20px;
  }

  .title-info .tag {
    font-size: 18px;
  }

  .award-one__single-card .date img {
    width: 80px;
    height: auto;
  }

  .top-li {
    margin-top: 8%;
  }

  /* CTA */
  .cta-box {
    padding-top: 20%;
  }

  .cta-flex {
    flex-direction: column;
    gap: 30px;
  }

  .cta-left {
    width: 100%;
    text-align: center;
  }

  .cta-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30%;
  }

  .cta-right img {
    height: auto;
  }

  /* Testimonial */
  .testi-section {
    padding: 60px 30px;
  }

  .testi-container {
    flex-direction: column;
    gap: 40px;
  }

  .testi-left {
    text-align: center;
  }

  .testi-title {
    font-size: 36px;
  }

  .testi-desc {
    max-width: 100%;
  }

  .testi-slider {
    width: 100%;
    max-width: 555px;
    height: 300px;
  }

  .testi-card {
    padding: 18px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 50px 20px 15px;
    margin: 0 15px 10px 15px;
    border-radius: 8px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .footer-brand {
    margin-left: 0;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-description {
    font-size: 16px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: left;
  }

  .footer-links {
    margin-left: 0;
    text-align: left;
  }

  .footer-links-2 {
    margin-left: 0;
    margin-top: 0;
  }

  .footer-contact-row {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .footer-contact-item strong {
    font-size: 18px;
  }

  .footer-contact-item p {
    font-size: 17px;
    padding-bottom: 20px;
    margin-left: 4%;
  }

  .footer-contact-link {
    margin-left: 0;
    margin-top: 0;
    font-size: 17px;
    margin-left: 4%;
  }

  .footer-social {
    margin: 15px 0 30px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
  }

  .footer-logo {
    text-align: left;
  }
}

/* ============================================
   EXTRA SMALL SCREENS (576px - 767px)
   ============================================ */
@media (max-width: 767px) and (min-width: 576px) {

  /* Navbar */
  .navbar-container {
    max-width: 540px;
    padding: 8px 12px;
  }

  .navbar-logo {
    font-size: 18px;
  }

  .logo-nav {
    height: 45px;
    padding: 2px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    max-height: 400px;
    width: 60%;
    margin-left: 35%;
  }

  .navbar-menu li {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-menu a {
    font-size: 16px;
    color: #a92c2f;
  }

  .navbar-dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .navbar-dropdown.active .navbar-dropdown-menu {
    max-height: 300px;
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar-dropdown-toggle {
    color: #fff;
    font-size: 16px;
  }

  /* Slider */
  .new-vt-slider {
    height: 70vh;
  }

  .new-vt-slider article {
    width: 80%;
    margin-top: 2rem;
  }

  .big {
    font-size: 42px;
    padding: 22px;
    letter-spacing: 3px;
    border-radius: 8px;
  }

  .padding_2x {
    padding: 25px 0 0 40px;
  }

  .hr {
    width: 70%;
    margin-top: -30px;
    height: 30px;
  }

  /* About */
  .about-us-box {
    padding: 120px 30px 20px 30px;
    margin-bottom: 2%;
  }

  .content {
    margin-top: 15%;
  }

  .about-top-lines-img {
    display: none;
  }

  .heading-box {
    gap: 5px 0;
  }

  .heading-subtitle-text {
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 1px;
  }

  .elementor-size-default {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .para-text {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .about-para {
    width: 95%;
    margin-top: 2%;
    font-size: 15px;
  }

  .about-list {
    font-size: 14px;
    line-height: 28px;
    margin-left: -8%;
  }

  .about-pointers {
    margin-left: 2%;
    margin-top: 1%;
  }

  .elementor-icon-list-text {
    font-size: 18px;
  }

  /* Counter */
  .counter-box {
    padding: 0 0 40px 0;
    background-attachment: scroll;
  }

  .counter-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .counter-container .col-md-6 {
    width: 100%;
  }

  .heading-box-why-us {
    margin-top: 5% !important;
    text-align: center;
    padding: 0 10px;
  }

  .elementor-heading-title.elementor-size-default {
    font-size: 32px;
  }

  .funfact-one__items {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    gap: 15px;
  }

  .funfact-one__single-item {
    width: 180px;
    height: 180px;
  }

  .funfact-one__single-item.count-box {
    margin: 0 !important;
  }

  .funfact-one__items.style-2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 49px;
  }

  .counter-text-box {
    /* height: 343px; */
    width: 156px;
    top: -86%;
    /* padding: 10px 5px; */
  }

  .style-4 {
    margin-top: 0%;
    margin-left: -3% !important;
  }

  .counter-count {
    font-size: 36px;
    margin-left: 0;
    margin-top: 0;
  }

  .counter-title {
    font-size: 16px;
    margin-left: 0;
    margin-top: 3%;
  }

  .counter-img img {
    width: 40px;
    margin-left: 0;
  }

  .funfact-one__shape {
    display: none;
  }

  .why-choose-one__circle {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
  }

  /* Solutions */
  .solution-container {
    padding: 40px 10px 0 10px;
  }

  .solution-box img {
    height: auto;
    width: 100%;
  }

  .solution-text {
    flex-direction: column;
    gap: 15px;
    position: relative;
    margin-top: 5px;
  }

  .sol-design h4 {
    font-size: 16px;
    text-align: center;
  }

  .sol-1,
  .sol-2,
  .sol-3,
  .sol-4,
  .sol-5,
  .sol-6 {
    position: relative;
    left: auto;
    right: auto;
    margin: 0;
  }

  /* Brands */
  .brand-one {
    padding: 40px 15px;
  }

  .brand-one__widget img {
    height: 45px;
  }

  .brand-one__content {
    gap: 30px;
    padding: 30px 0;
  }

  .brand-one__track {
    padding: 60px 0 0 0;
    animation: scroll 15s linear infinite;
  }

  .brand-one__sec-title {
    margin-bottom: 3%;
  }

  .brand-one__sec-title .title {
    font-size: 18px;
    line-height: 26px;
  }

  .brand-one__sec-title .sec-title {
    padding: 15px 40px;
  }

  .brand-one__sec-title .ball {
    width: 35px;
    height: 35px;
  }

  .client-padding {
    padding: 100px 0 60px 0;
  }

  /* Awards/Security Solutions */
  .section-bg-2 {
    padding: 30px 20px 60px 20px;
  }

  .award-one__bg-image {
    display: none;
  }

  .award-one .shape-2,
  .award-one .shape-3 {
    display: none;
  }

  .elementor-heading-title.elementor-size-default {
    font-size: 28px;
  }

  .top-li {
    margin-top: 5%;
  }

  .row {
    flex-direction: column;
    gap: 20px;
  }

  .col-md-6 {
    width: 100%;
  }

  .award-one__single-card {
    padding: 40px 15px 15px 15px;
    margin-top: 15%;
    flex-direction: column;
    text-align: center;
    border-width: 3px;
  }

  .award-one__single-card .shape-1 {
    display: none;
  }

  .award-one__single-card .content-left {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .title-info .title {
    font-size: 18px;
  }

  .title-info .tag {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .award-one__single-card .date {
    margin-top: 10px;
  }

  .award-one__single-card .date img {
    width: 60px;
    height: auto;
  }

  /* CTA */
  .cta-box {
    padding: 20px 15px 20px 15px;
  }

  .cta-flex {
    flex-direction: column;
    gap: 20px;
  }

  .cta-left {
    width: 100%;
    text-align: center;
  }

  .elementor-heading-title.elementor-size-default {
    font-size: 35px;
  }

  .button-33 {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 15px;
  }

  .cta-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 28%;
  }

  .cta-right img {
    height: auto;
  }

  /* Testimonial */
  .testi-section {
    padding: 40px 15px;
  }

  .testi-container {
    flex-direction: column;
    gap: 30px;
  }

  .testi-left {
    text-align: center;
  }

  .testi-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .testi-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .testi-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .testi-slider {
    width: 100%;
    max-width: 340px;
    height: 280px;
  }

  .testi-card {
    padding: 15px;
    width: 500px;
    height: 145px;
  }

  .testi-card.testi-prev,
  .testi-card.testi-next {
    margin-left: 20px;
  }

  .testi-card.testi-prev {
    transform: translateY(-160px) scale(0.9);
  }

  .testi-card.testi-next {
    transform: translateY(160px) scale(0.9);
  }

  .testi-user {
    gap: 10px;
    margin-bottom: 10px;
  }

  .testi-user img {
    width: 40px;
    height: 40px;
  }

  .testi-user h4 {
    font-size: 16px;
  }

  .testi-user span {
    font-size: 11px;
  }

  .testi-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Footer */
  .footer-wrapper {
    padding: 40px 12px 12px;
    margin: 0 8px 8px 8px;
    border-radius: 6px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .footer-brand {
    margin-left: 0;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
  }

  .footer-links {
    margin-left: 0;
    text-align: center;
  }

  .footer-links-2 {
    margin-left: 0;
    margin-top: 0;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    font-size: 15px;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 15px;
  }

  .footer-contact-item strong {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .footer-contact-item p {
    font-size: 14px;
    line-height: 1.5 !important;
    padding-bottom: 15px;
  }

  .footer-contact-link {
    margin-left: 0;
    margin-top: 0;
    font-size: 16px;
  }

  .footer-social {
    margin: 12px 0 20px;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
  }

  .footer-social-link i {
    font-size: 18px;
  }

  .footer-subscribe-form {
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .footer-subscribe-form input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .footer-subscribe-form button {
    padding: 0 15px;
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ============================================
   ULTRA SMALL SCREENS (below 576px)
   ============================================ */
@media(max-width:767px) {
  .logo-nav {
    height: 51px;
    padding: 3px;
  }

  .navbar-toggle span {
    background: #a92c2f;
  }

  .big {
    font-size: 36px !important;
  }

  .padding_2x {
    padding: 50px 0px 0px 30px;
  }

  .solution-text {
    gap: 0px;
  }

  .sol-design h4 {
    font-size: 6px;
  }

  .sol-2 {
    position: relative;
    left: 3%;
    margin-top: -10%;
  }

  .sol-3 {
    position: relative;
    left: -1%;
    margin-top: -2%;
  }

  .sol-4 {
    position: relative;
    left: -3%;
    margin-top: -11%;
  }

  .sol-6 {
    position: relative;
    left: -4%;
    margin-top: -11%;
  }

  .sol-5 {
    position: relative;
    left: -4%;
    margin-top: -5%;
    width: 15%;
  }

  .sol-1 {
    position: relative;
    left: 5%;
    margin-top: -2%;
  }

  .footer-logo img {
    height: 65px;
    margin-left: 19%;
  }

  .social-icons {
    margin-left: 23%;
    width: 100%;
  }

  .footer-links {
    margin-left: 0%;
    text-align: left;
  }

  .footer-links-2 {
    margin-top: -2%;
  }

  .footer-contact-item h6 {
    font-size: 13px;
    padding-bottom: 16px;
    line-height: 30px !important;
    color: #000;
    margin-left: 9%;
    text-align: left;
  }

  .footer-contact-link {
    margin-left: 7%;
  }

  .footer-right {
    padding-left: 0;
    border-left: none;
    width: 88%;
    margin-left: 8%;
  }

  .footer-contact-link {
    font-weight: 600;
    font-size: 13px;
    margin-left: 10%;
    line-height: 25px;
    display: block;
    margin-top: -6%;
    font-family: "Newsreader", serif;
  }

  .footer-links ul li {
    margin-bottom: 0px;
    padding-bottom: 14px;
  }

  .heading-box-why-us {
    margin-top: -14%;
    margin-left: 0%;
    width: 100%;
    margin-bottom: 5%;

  }

  .new-heading-clients {
    width: 100%;
  }
}

/* ============================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   ============================================ */
@media (orientation: landscape) and (max-height: 500px) {
  .new-vt-slider {
    height: 100vh;
    min-height: auto;
  }

  .big {
    font-size: 28px;
    padding: 12px 20px;
  }

  .padding_2x {
    padding: 10px 0 0 30px;
  }

  .about-us-box {
    padding: 80px 20px 20px 20px;
  }

  .cta-box {
    padding-top: 28%;
  }
}

/* ============================================
   HIGH DPI / RETINA DISPLAY ADJUSTMENTS
   ============================================ */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .brand-one__widget img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .testi-user img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}


/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .brand-one__track {
    animation: none;
  }

  .rotate-me {
    animation: none;
  }
}


/* -------------- NEW SOLUTION AT A GLANCE __ HOME PAGE ----------------- */

.new-glance {
  padding: 150px 170px 100px;
  margin: 0px auto;
}


.new-glance-box {
  height: 245px;
  text-align: center;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px 0px;
  margin-bottom: 10%;
  border-bottom: 2px solid #B22D30;
  margin-top: 10%;
}

.new-glance-icon-box {
  width: fit-content;
  text-align: center;
  margin: 0px auto;
  border-radius: 50%;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.new-glance-icon-box img {
  padding: 20px;
  object-fit: cover;
}

.new-glance-text h2 {
  color: #000000;
  font-family: "Newsreader", serif;
  width: 80%;
  text-align: center;
  margin: 8% auto 0%;
  font-size: 25px;
}

.new-glance-box:hover {
  background: #B22D30;
  transition: 0.5s ease;
}

.new-glance-box:hover .new-glance-text h2 {
  color: #ffffff;
  transition: 0.5s ease;
}


@media(max-width:768px) {
  .new-glance {
    padding: 20px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .new-glance {
    padding: 100px 50px;
    margin: 0px auto;
  }

  .new-glance-text h2 {
    font-size: 20px;
  }
}

@media(max-width: 991px) and (min-width: 768px) {
  .footer-contact-item h6 {
    font-size: 14px;
    padding-bottom: 16px;
    line-height: 30px !important;
    margin-left: 5%;
    text-align: left;
    margin-top: -3%;
  }
}

.wsua-box {
  background: #eaeaea;
  clip-path: polygon(0% 0%, 79% 0, 100% 20%, 100% 100%, 0% 100%);
  transition: all 0.5s ease;
  padding: 40px 30px;
  position: relative;
  margin-bottom: 4%;
  height: 286px;
  margin-bottom: 12%;
}

.wsua-box:hover {
  background: #ffffff;
  transition: 1 ease;
}

.wsua-box1::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "01";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}


.wsua-box2::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "02";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}

.wsua-box3::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "03";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}

.wsua-box4::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "04";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}

.wsua-box5::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "05";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}

.wsua-box6::before {
  position: absolute;
  color: rgba(31, 31, 31, 0.05);
  counter-increment: count;
  content: "06";
  z-index: -1;
  inset-inline-end: -10px;
  font-size: 238px;
  font-weight: 700;
  bottom: -45px;
  line-height: 0.75;
}

.wsua-box h1 {
  font-size: 28px;
  font-weight: bold;
  color: #000000;
}

.wsua-box img {
  margin-bottom: 10%;
}

.new-wsua {
  margin-top: 7%;
}


@media (max-width:1400px) {
  .elementor-size-default {
    font-size: 66px;
  }

  .new-glance {
    padding: 150px 70px;
    margin: 0px auto;
  }

  .heading-box-why-us {
    margin-left: 0%;
  }

  .wsua-box {
    height: auto;
  }
}

@media(max-width: 1199px) and (min-width: 992px) {
  .elementor-size-default {
    font-size: 56px;
  }

  .new-glance {
    padding: 100px 10px;
  }

  .wsua-box {
    height: 380px;
  }
}

@media(max-width: 378px) {
  .cta-right {
    margin-top: 87%;
  }
}



/* ---------- NEW STORY ---------- */

.vm-container {
  padding: 100px 0px 100px 0px;
}

.os-story-container {
  max-width: 75%;
  margin: 0 auto;
  padding: 0 20px;
}


.os-story-container {
  max-width: 75%;
  margin: 0 auto;
  padding: 0 20px;
}

.os-story-header {
  text-align: center;
  margin-bottom: 50px;
}

.os-story-header .home-about-heading {
  font-size: 48px;
}

.os-tabs-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.os-tabs-nav {
  display: flex;
  justify-content: center;
  background: #B22D30;
  padding: 0;
  margin: 0;
  list-style: none;
}

.os-tab-btn {
  flex: 1;
  padding: 25px 20px;
  background: transparent;
  border: none;
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Newsreader", serif;
  position: relative;
}

.os-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.3s ease;
}

.os-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.os-tab-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.os-tab-btn.active::after {
  width: 80%;
}

.os-tab-content {
  display: none;
  padding: 50px;
  animation: fadeIn 0.5s ease;
}

.os-tab-content.active {
  display: block;
}

.os-content-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.os-image-box {
  flex: 0 0 45%;
  position: relative;
}

.os-image-box img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.os-image-box img:hover {
  transform: scale(1.02);
}

.os-image-box::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  z-index: -1;
}

.os-text-box {
  flex: 1;
}

.os-text-box h3 {
  font-size: 32px;
  color: #B22D30;
  margin-bottom: 20px;
  font-family: "Newsreader", sans-serif;
  font-weight: 700;
}

.os-text-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-family: "Newsreader", sans-serif;
  margin-bottom: 15px;
  font-weight: 500;
}

.os-text-box .os-year {
  display: inline-block;
  background: #B22D30;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Newsreader", sans-serif;
  margin-bottom: 20px;
}

.founder-container {
  padding: 100px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .os-story-header .home-about-heading {
    font-size: 32px;
  }

  .os-tabs-nav {
    flex-wrap: wrap;
  }

  .os-tab-btn {
    flex: 0 0 50%;
    font-size: 14px;
    padding: 8px !important;
  }

  .os-tab-content {
    padding: 10px;
  }

  .os-content-inner {
    flex-direction: column;
    gap: 30px;
  }

  .os-image-box {
    flex: 0 0 100%;
  }

  .os-text-box h3 {
    font-size: 24px;
  }

  .os-text-box p {
    font-size: 13px;
    text-align: justify;
    hyphens: auto;
  }

  .os-story-container {
    max-width: 100%;
  }

  .breadcumb-wrapper {
    text-align: center;
    padding: 0px;
    background-size: 161px !important;
  }
}

@media (max-width: 480px) {
  .os-tab-btn {
    flex: 0 0 100%;
  }
}


.about-page-box {
  padding: 100px 100px 50px 100px !important;
}

@media(max-width:1300px) {
  .new-vt-slider {
    position: relative;
    width: 100%;
    height: 673px;
    overflow: hidden;
  }

  .big {
    font-size: 35px !important;
    padding-left: 0px;
  }
}


@media (max-width: 576px) {
  .home-about-sub-title {

    font-size: 1.5rem;
  }

  .testi-card p {
    font-size: 11px;

  }

  .testi-slider {

    margin-left: -15%;
  }

  .cta-box {
    padding: 50px 20px 30px 20px;
  }


  .new-vt-slider .slide {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}


@media(max-width:425px) {
  .testi-slider {
    width: 312px;
    margin-left: 0%;
  }

}

@media(max-width:1700px) {
  .about-fonunter__content {
    flex: 1;
    margin-top: 26%;
    margin-left: 9%;
  }
}

@media(max-width:1500px) {
  .big {
    font-size: 50px;
  }
}

@media(max-width:1388px) {
  .about-fonunter__content {
    flex: 1;
    margin-top: 26%;
    margin-left: 13%;
  }

  .card-content h3 {
    font-size: 27px;
  }
}

@media(max-width:1300px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 30px;
  }

  .service-card img {
    object-fit: contain;
  }

}

@media(max-width:1238px) {
  .about-fonunter__quote {
    margin-left: -46%;
  }
}

@media(max-width:1200px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 30px;
  }

  .service-card img {
    object-fit: contain;
  }

}

@media(max-width:1448px) {
  .about-fonunter__content h2 {
    margin-left: -30%;
  }
}

@media(max-width:1400) {
  .about-fonunter__quote {
    margin-left: -78%;
  }
}

@media(max-width:1200px) {
  .founder-box img {
    height: 488px;
  }

  .about-fonunter__image img {
    margin-top: 19%;
    margin-left: -47% !important;
  }

  .card-content h3 {
    font-size: 20px;
  }
}

@media(max-width:767px) {
  .about-fonunter__quote {
    margin-left: -32% !important;
  }

  .about-fonunter__content h2 {
    margin-left: 2;
  }

  .about-fonunter__image img {
    margin-top: 7%;
  }

  .about-fonunter__quote {
    margin-left: -18% !important;
  }
}

@media(max-width:480px) {
  .about-fonunter__quote {
    margin-left: 0% !important;
  }

  .founder-box {
    height: auto;
  }

  .about-fonunter__quote {
    margin-left: -20% !important;
  }
}

@media(max-width:300px) {
  .founder-box img {
    height: auto;
    width: 100vw;
  }

  .about-fonunter__content h2 {
    margin-left: -52%;
  }
}

@media(max-width:1500px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }

  .services-box {
    padding: 100px 50px;
  }
}

@media(max-width:1200px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .services-box {
    padding: 100px 20px;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: auto !important;
  }
}


/* ----------- NEW SOLUTIONS PAGE ------------- */


.one-solutions-details {
  padding: 5% 10%;
}

.solutions-img-container {
  width: 650px;
}

.solutions-img-container img {
  width: 100%;
  border: 4px solid #eaeaea;
  padding: 6px;
  border-radius: 10px;
  object-fit: cover;
}


.solutions-img-container:hover img {
  filter: brightness(0.6);
}

.solutions-title {
  text-align: left;
  color: #B22D30;
  font-weight: bold;
  font-size: 37px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 3%;
      margin-left: 3%;
}

.solutions-icon-details-box {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.solutions-icon-details-box p {
  font-family: "Newsreader", serif;
  font-size: 22px;
}


.solutions-icon-details-box img {
  height: 34px;
}

.one-solutions-details .row {
  display: flex;
      align-items: center;
}

@media(max-width:1600px) {
  .solutions-img-container {
    width: 500px;
  }
}


@media(max-width:1200px) {
  .one-solutions-details {
    padding: 5% 4%;
  }

  .solutions-icon-details-box p {
    font-size: 18px;
  }

  .solutions-icon-details-box {
    padding-top: 12px;
  }

  .solutions-icon-details-box img {
    height: 30px;
  }

  .solutions-title {
    font-size: 26px;

  }
      .solutions-img-container {
        width: 400px;
    }
}

@media(max-width:800px) {
  .solutions-img-container {
    width: 400px;
  }
}


@media(max-width:767px) {
  .one-solutions-details .row {
    align-items: center !important;
    display: block;
  }
      .solutions-title {
        text-align: left;
        font-size: 26px;
        margin-left: 3%;
    }
}


@media(max-width:400px) {
     .solutions-img-container {
        width: 93vw;
    }
        .solutions-title {
        text-align: left;
        font-size: 22px;
        margin-left: 3%;
    }
    .solutions-icon-details-box p {
        font-size: 14px;
        padding-top: 5px;
    }
        .solutions-icon-details-box img {
        height: 24px;
    }
        .solutions-icon-details-box {
        padding-top: 0px;
    }
}

.solutions-icon-h2 {
    color: #b22d30;
    font-family: "Newsreader", serif;
    font-size: 25px;
        line-height: 32px;
}


.new-rental-box .row{
  align-items: flex-start !important;
    margin-top: 4%;
}

.row.new-rental-box {
margin-top: 4%;
    align-items: flex-start;
}

@media(max-width:1200px){
  .solutions-icon-h2 {
    font-size: 18px;
    line-height: 26px;
}
}


.rental-title {
    text-align: center;
    font-size: 55px;
        margin-bottom: 5%;
}