﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
}


.navbar-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: #000;
  border-bottom: 2px solid rgba(255, 0, 0, 0.7);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

.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: #fff;
  text-decoration: none;
  font-size: 22px;
  padding: 6px 0;
  position: relative;
}

.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: red;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar-menu.active {
    max-height: 500px;
        background: #000000;
        width: 55%;
        margin-left: 40%;
  }

  .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;
}
}



/* =============== HOME PAGE STYLING START =============== */

/* -------- SLIDER SECTION STYLING START ---------- */



.slider-container {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.slider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.slider-slide.slider-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.4));
}

.slider-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  padding: 100px;
  color: #fff;
  animation: sliderFadeUp 1.2s ease forwards;
  justify-content: center;
  margin-top: 11%;
  margin-left: 8%;

}

@keyframes sliderFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-tag {
  display: inline-block;
  padding: 9px 28px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-radius: 40px;
}

.slider-content h1 {
  font-size: 52px;
  line-height: 1.1;
  position: relative;
  margin-bottom: 25px;
  font-weight: bold;
}

.slider-line {
  display: block;
  width: 0;
  height: 4px;
  background: #ff2b2b;
  margin-top: 15px;
  animation: sliderLineGrow 1.2s ease forwards;
}

@keyframes sliderLineGrow {
  to {
    width: 120px;
  }
}

.slider-content p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
}

.slider-buttons {
  display: flex;
  gap: 18px;
}

.slider-btn {
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.slider-btn-primary {
  background: #ff2b2b;
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 43, 43, 0.6);
  animation: sliderPulse 2s infinite;
}

@keyframes sliderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 43, 43, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 43, 43, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 43, 43, 0);
  }
}

.slider-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.slider-btn:hover {
  transform: translateY(-3px);
}

.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
}

.slider-dot.active {
  background: #ff2b2b;
}


/* -------- ABOUT US SECTION STYLING -------- */

.about-us-box {
  padding: 200px;
}

.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: flex-start;
}

.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: #515151;
  background-color: #FFFFFF00;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  padding: 10px 29px 10px 29px;
  border-radius: 16%;
  border-radius: 50px;
}

.text-gradient {
  background: linear-gradient(87deg, #eb3437 0%, #427dd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.para-text {
  font-family: "DM Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #d4d4d4;
}

.about-list {
  font-family: "DM Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 46px;
  color: #d4d4d4;
  margin-left: -3%;
}


/* --------- NEW SLIDER ------- */

/*Line Drop Animation*/
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
}

.line {
  height: 100vh;
  width: 1.5px;
  position: absolute;
  content: "";
  background-color: rgb(238 238 238 / 15%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.line:nth-child(1) {
  margin-left: -33.34%;
}

.line:nth-child(2) {
  margin-left: -16.67%;
}

.line:nth-child(3) {
  margin-left: 0;
}

.line:nth-child(4) {
  margin-left: 16.67%;
}

.line:nth-child(5) {
  margin-left: 33.34%;
}

/* animation */
.line::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  /* height: 138px; */
  height: 15vh;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(255, 255, 255, 0)),
      color-stop(75%, #dddddd),
      to(#dddddd));
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      #dddddd 75%,
      #dddddd 100%);
  -webkit-animation: run 05s 0s infinite;
  animation: run 05s 0s infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: none;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

@keyframes run {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

@-webkit-keyframes run {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.lines .line:nth-child(2)::after {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

@media (max-width: 575px) {
  .mainslider .slider-thumbs {
    bottom: 20%;
  }
}


.home-slider {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-slider-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
}

.text-box {
  width: 45%;
}

.small-heading-text {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
  border: 1px solid #898989;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
}

.slider-text-style {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  font-size: 96px;
  color: #fff;
  background: linear-gradient(87deg, #eb3437 0%, #427dd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: none;
}

.text-animate {
  animation: textSlideIn 0.6s ease forwards;
}

@keyframes textSlideIn {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-box {
  width: 45%;
  position: relative;
}

.img-static {
  width: 100%;
  max-width: 800px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  margin-top: 25%;
}

.img-rotate {
  width: 100%;
  max-width: 520px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform-style: preserve-3d;
}

.spin-360 {
  animation: fullSpin 0.8s ease-in-out forwards;
}

@keyframes fullSpin {
  0% {
    transform: rotateX(20deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(20deg) rotateY(360deg);
  }
}


.mainslider {
  width: 100%;
  background: #000;
}

.img-rotate {
  width: 100%;
  max-width: 520px;
  position: absolute;
  right: 16%;
  top: 0;
  z-index: 2;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  margin-top: -53%;
}

/* One full flip */
.flip-360 {
  animation: flipReturn 0.8s cubic-bezier(.2, .05, .2, .95) forwards;
}

@keyframes flipReturn {
  0% {
    transform: rotateX(20deg) rotateY(0deg);
  }

  49% {
    transform: rotateX(20deg) rotateY(179deg);
  }

  51% {
    transform: rotateX(20deg) rotateY(181deg);
  }

  100% {
    transform: rotateX(20deg) rotateY(360deg);
  }
}


.hr {
  border: none;
  height: 20px;
  width: 90%;
  height: 50px;
  margin-top: 0;
  border-bottom: 1px solid #427dd5;
  box-shadow: 0 20px 33px -13px #427dd5;
  margin: -50px auto 10px;
  margin-left: 0%;
}

/* .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: #000;
}

.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: #fff;
  font-weight: bold;
  font-size: 57px;
  font-family: sans-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: 15%;

}

.about-top-lines-img {
  height: 339px;
  margin-top: -50%;
  margin-left: 69%;
  margin-bottom: 10%;
}

.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: 100px 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)),
    url('../Images/home/counter.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* 🔥 Parallax effect */
}

/* 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;
  }
}


/* -------- Why us --------- */
/* Section */
.why-us-section {
  padding: 80px 20px 0px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Title */
.why-us-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #ffffff;
}

.why-us-title span {
  color: #ff4d6d;
}

/* Layout */
.why-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 8%;
}

/* Columns */
.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -12%;
}

/* Cards */
.why-us-card {
  width: 260px;
  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%;
  /* position: absolute; */
  height: 50%;
  top: 50%;
  width: 100%;
  left: 0;
  background: linear-gradient(rgb(47 5 7 / 37%) 0%, rgb(48 49 63) 100%);
}


.why-us-card h4 {
  margin-bottom: 10px;
  color: #eb3437;
  font-size: 26px;
  font-weight: 900;
}


.why-us-card p {
  font-size: 18px;
  color: #bcbcbc
}

/* Center Image */
.why-us-image img {
  max-width: 700px;
  /* animation: why-us-image-float 6s ease-in-out infinite; */
}

/* Floating Animations */
@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);
  }
}

/* Animation Variants */
.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;
}



/* ---------- 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;
}

.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: #ffffff;
  font-weight: bold;
}

.funfact-one__single-item .tag {
  color: #ffffff;
}

.funfact-one__items.style-2 {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}

.counter-text-box {
  position: relative;
  top: -49%;
  background: #000;
  padding: 41px 25px;
  border-radius: 50%;
  left: -1%;
}

.logo-nav {
  height: 65px;
  padding: 3px;
}

.heading-box-why-us {
  margin-top: 25%;
}


/* ------ 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: #737373;
  margin-top: 60px;
  box-shadow: rgb(94 94 112) 0px 7px 29px 0px;
  color: #fff;
}

.award-one__single-card .shape-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  filter: contrast(0.1);

}

.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: 6%;
}

.title-info .title {
  font-size: 24px;
}


/* -- 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: 86%;
  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: #fff;
  line-height: 40px;
  position: relative;
  z-index: 33;
}

.brand-one__sec-title .ball.ball-2 {
  background-color: #af0000;
  left: -18px;
  top: 33%;
}

.brand-one__content {
  position: relative;
  border-bottom: 1px solid #e2e2e25e;
  padding: 60px 0;
  display: flex;
  gap: 83px;
}

.brand-one__content::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  height: 1px;
  background-color: #e2e2e25e;
  top: -72px;
  z-index: -2;
}

.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(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.brand-one__sec-title {
  margin-bottom: -8%;
  z-index: 20;
}

.client-padding {
  padding: 200px 0px 100px 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: 245px;
  margin-bottom: -15%;
}

.cta-flex {
  display: flex;
  gap: 124px;
}

.cta-left {
  width: 56%;
}

.cta-right img {
  height: 600px;
}

.cta-right {
  margin-top: -11%;
}

/* ----------- FOOTER ---------- */

.footer-wrapper {
  background: #0f1f3d;
  color: #cfd6e4;
  padding: 70px 40px 30px;
  margin: 10px 54px;
  border-radius: 22px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

.footer-left {
  flex: 2;
}

.footer-right {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: #fff;
  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: #0f1f3d;
  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(2, 1fr);
  gap: 30px;
}

.footer-title {
  color: #fff;
  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: #cfd6e4;
  text-decoration: none;
  font-size: 20px;
  margin-top: 15px;
}

.footer-links ul li a:hover {
  color: #ff3c3c;
}

.footer-subscribe-title {
  color: #fff;
  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: #ff3c3c;
  padding: 0 20px;
  cursor: pointer;
  font-size: 18px;
}

.footer-contact-item strong {
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  padding-bottom: 20px;
}

.footer-contact-item p {
    font-size: 19px;
    padding-bottom: 35px;
    line-height: 30px !important;
}

.footer-contact-row {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom span {
  color: #e4e4e4;
}

.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: #9F2C2D;
  transition: 1s ease-in-out;
}

/* 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 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;
  }

  .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%;
    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%;
    }

    .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: 76%;
}
}

/* 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: 500px;
  }
}

@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    gap: 20px;
  }

  .cta-left {
    width: 100%;
  }

  .cta-right {
    margin-top: 0;
  }

  .cta-right img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .cta-box {
    padding-top: 150px;
  }

  .cta-right img {
    height: 300px;
  }
}

/* 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;
  }

  .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: 16px;
  }
}




/* ===================== ABOUT US PAGE STYLING ================== */

.breadcumb-wrapper {
  text-align: center;
  padding: 150px 0px 0px 100px;
}

.breadcumb-wrapper .breadcumb-content {
  --space: 150px;
  padding: 150px 0;
  position: relative;
  z-index: 1;
}

.breadcumb-title {
  margin: -0.18em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 500;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}

.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: #a5a5a5;
  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; */
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #1a1a1a;
    padding: 10px;
}

.about-page-image-left img,
.about-page-image-right img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.about-page-content {
    max-width: 600px;
    text-align: left;
    margin-left: 5%;
        margin-top: 8%;
}

.about-page-content h1 {
  
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;

}

.about-page-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.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;
}

@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;
}


/* ----------- 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;
}

.why-us-item h4 {
      color: #ffffff;
    margin-bottom: 8px;
    font-size: 23px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* positioning */
.left.top {
     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;
 }   

.right.top {
  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;
}

.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 #ffffff;
  border-radius: 50%;
  animation: spin 10s linear infinite;

}

/* dots */
.rotating-border .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  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: #000000;
  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: 18px;
      font-weight: 100;
}


.about-page-pointer{
      display: flex;
    border: 1px solid #4b4b4b;
    border-radius: 20px;
    background: #1b1b1b;
}

.about-pointer-container{
      padding: 34px;
}


/* --------------- 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{
    border: 1px solid #4b4b4b;
    border-radius: 20px;
    background: #1b1b1b;
    padding: 50px 30px;
        color: #fff;
}

.vm-gap{
  margin-bottom: 3%;
}

.vm-content-box-right{
  margin-left: -16%;
  width: 100%;
}


.vm-box{
  margin-top :5%;
}

.vm-content-box h1{
  font-weight: bold;
}


@media (max-width:767px){
  .breadcumb-wrapper {
    text-align: center;
    padding: 0px;
}

.breadcumb-wrapper .breadcumb-content {
    padding: 50px 0;
}

.about-page-section {
    display: block;
}

.about-page-content {
    margin-top: 40%;
}
.elementor-size-default {
    font-size: 30px;
}
.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: #1d1d1d;
    border: 1px solid #000;
    padding: 30px 10px;
    border-radius: 20px;
}

.contact-us-contact-details-icon {
    width: 100px;
    height: 100px;
    background: #303030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #424242;
}

.contact-us-contact-details-icon i {
      color: #9b2b2d;
    font-size: 40px;
}

.contact-us-contact-details-item h4 {
      color: #ffffff;
    font-size: 25px;
    padding-bottom: 13px;
    padding-top: 15px;
    font-weight: bold;
}

.contact-us-contact-details-item p {
      color: #cfd6dc;
    font-size: 18px;
    line-height: 1.6;
}

.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: #252525;
    border-radius: 20px;
    padding: 50px;
}

.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: #ffffff;
    font-size: 20px;
    padding-bottom: 7px;
}

.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: #000;
    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: linear-gradient(135deg, #9b2b2d, #8e2f39);
    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:767px){
  .contact-box {
    padding: 0px 30px;
}

.contact-us-contact-details-wrapper {
    display: block;
}
.contact-us-contact-details-item {
    width: 100%;
}
.contact-details-container {
    margin: 10px;}

    .contact-details-container {
    padding: 0px;
}
.map-box {
    padding-top: 0%;
    margin-left: 7%;
}

.map-box iframe{
  height: 300px;
}
}



/* -------------- SERVICES ------------ */


.services {
  padding: 100px 0px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2a44;
}

.section-title span {
  background: linear-gradient(90deg, #ff4d4d, #6c63ff);
  -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: 2px solid #1c1c1c;
    padding: 1px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
}

.card-content h3 {
    font-size: 31px;
    margin-bottom: 8px;
    font-weight: bold;
}

.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;
}

.service-text-box h1{
      color: #eb3437;
    font-weight: bold;
    font-size: 50px;
    padding-bottom: 0px;
    text-transform: capitalize;
    font-family: auto;
}

.service-text-box p{
       color: #d1d1d1;
    font-size: 18px;
    line-height: 31px;
        padding-bottom: 10px;
}

.key-details ul{
 list-style-type: disclosure-closed;
    color: #eb3437;
    font-size: 17px;
    line-height: 34px;
    margin-left: 3%;
}

.key-feature-text{
  color :#ffffff;
}

.sd-hr{
      width: 25%;
    /* border-top: #b4b4b4 !important; */
    border-top: 1px solid #6f6f6f;
        margin-bottom: 5%;
}

@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: 12px;
    line-height: 25px;
    text-align: justify;
}

.key-details ul {
    font-size: 14px;
    line-height: 27px;
    margin-left: 6%;
}

.breadcumb-title {
    font-size: 34px;
}

.breadcumb-menu
 {
    margin-top: 0px;
}
}


/* =========== 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(320px, 1fr));
  gap: 30px;
}

.pro-case-card {
  background: linear-gradient(180deg, #141f2e, #0b1320);
  border-radius: 18px;
  padding: 35px;
  color: #fff;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  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: 19px;
    color: #d1d1d1;
    line-height: 1.7;
}

.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: 462px;
    text-align: center;
    margin-top: 7%;
    width: 712px;
}

.pro-image img{
height: 100%;
    border: 1px solid #565656;
    padding: 5px;
    border-radius: 20px;
}


/* --------------- ABOUT FOUNDER ------------ */


.about-fonunter {
    color: #ffffff;
    border-bottom: 4px dashed #323232;
}

.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: #272727bf;
    padding: 25px;
    border-radius: 12px;
    width: 184%;
    margin-left: -63%;
    margin-bottom: -9%;
    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;
}

.about-fonunter__quote span {
  font-size: 13px;
  opacity: 0.8;
}

.about-fonunter__image {
  flex: 1;
}

.about-fonunter__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
      margin-left: 36%;
}

.about-fonunter__content h2{
      margin-left: -33%;
}

@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: -23%;
    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: 14px;
    line-height: 26px;
}
.about-fonunter__quote span {
    font-size: 10px;
}
.about-fonunter__image img {
    margin-left: 0%;
}
.about-fonunter__container {
    gap: 0px;
}
}
