* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /* overflow-x: hidden; */
      box-sizing: border-box;
}

/* home page of landing page with header  */

/* upper-header of home page  */

@media (max-width:340px){
  .header-container{
    width:100%;
    border:1px solid orange ;
  
  }
}
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-image: url(Image/security2.png); */
  /* background-color: #000; */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  width: 100%;
  /* height: 70rem; */
  padding: 0 10px 70px 0;
  border: none;
  /* bordeR:2px solid orange; */
}
.header-container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #d11516;
  border-radius: 50%;
  filter: blur(150px);
  top: 10%;
  left: -100px;
  opacity: 0.25;
}
@media (max-width:350px){
  .header-container::before{
    background: none;
  }
}
/* keywords content of home page  */

.home-container {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-top: 130px; */
  margin-top:100px;
  /* border:1px solid white; */
}
.hero-content {
  /* position: relative; */
  z-index: 2;
  max-width: 1250px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  /* margin: 350px 0 50x 0; */
  /* border:2px solid pink; */
}
.main-heading {
  /* font-size: 2.7rem; */
  font-size: 2.4rem;
  font-size: 2.6rem !important;
  font-weight: 700;
  /* line-height: 1.1;0 */
  /* margin-bottom: 25px; */
  color: #ffffff;
  position: relative;
  z-index: 3;
  /* border:1px solid white; */
  /* padding: 0 !important; */
    font-size: clamp(1.6rem, 4vw, 2.6rem) !important;
}

.text-slider {
  position: relative;
  min-height: 6.8em;
  /* min-height: 8rem; */
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border:1px solid orange; */
}

.text-slider div {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 12s infinite;
  width: 100%;
  color: #fff;
  font-weight: 600;
  z-index: 10;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.text-slider div span {
  color: #d11516;
  font-weight: 700;
}

 .text-slider div:nth-child(1) {
  animation-delay: 0s;
}
.text-slider div:nth-child(2) {
  animation-delay: 2s;
}
.text-slider div:nth-child(3) {
  animation-delay: 4s;
}
.text-slider div:nth-child(4) {
  animation-delay: 6s;
}
.text-slider div:nth-child(5) {
  animation-delay: 8s;
}
.text-slider div:nth-child(6) {
  animation-delay:10s;
}
/* @keyframes fadeSlide {
  0%,
  16% {
    opacity: 0;
    transform: translateY(50px);
  }
  20%,
  36% {
    opacity: 1;
    transform: translateY(0);
  }
  40%,
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
} */

@keyframes fadeSlide {
  0% { opacity: 0; transform: translateY(20px); }
  12% { opacity: 1; transform: translateY(0); }
  18% { opacity: 1; transform: translateY(0); }
  22% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}
.hero-content p {
  font-size: 1.3rem;
  color: #f5f5f5;
  margin-bottom: 30px;
  text-align: center;
}
.hero-left-side {
  z-index: 2;
  max-width: 950px;
  width: 43%;
  text-align: center;
  padding: 0 20px;
  /* border:2px solid white; */
}

/* rounder new section add   */

.content {
  /* border:2px solid orange; */
  position: relative;
  width: 100%;
  /* margin:100px; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-wrap: wrap;
  gap: 11%;
  padding: 10px 0 30px 0;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); */
}
.left-content {
  width: 600px;
  /* border: 1px solid white; */
  margin-bottom: 50px;
}
.content {
  animation: fadeInUp 1s ease;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(162, 247, 162, 0.363);
  backdrop-filter: blur(4px);
  border: 1px solid rgb(155, 252, 155);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 45px;
  /* margin-top:-20px; */
}

.dot-hero {
  width: 0.5rem;
  height: 0.5rem;
  background: rgb(99, 236, 99);
  background: rgb(72, 219, 72);
  border-radius: 9999px;
  animation: pulse 1.5s infinite;
}

.label {
  color: rgb(155, 252, 155);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-text h1 {
  /* font-size: 52px; */
   font-size: clamp(1rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  /* margin: 0px 0 24px 0; */
  letter-spacing: -1px;
}
/* .hero-text h1 span {
   background: linear-gradient(135deg, #d11516, #ff6b6b);
   background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
} */
.highlight {
   position: relative;
  /* color: #111; */
   animation: colorShift 2.5s ease-in-out infinite;

}
@keyframes colorShift {
  0% {
    color: #d11516;
  }
  50% {
    color: #ff4d4d;
  }
  100% {
    color: #d11516;
  }
}


.hero-text > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.795);
  line-height: 1.8;
  margin-bottom: 32px;
}

.stats-h {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stats-h {
  text-align: center;
}

.stats-h h3 {
  font-size: 38px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.795);
  color: white;
  margin-bottom: 4px;
}

.stats-h p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.795);
}
.cta-buttons-home .btn-11 {
  /* background: #d11516; */
  background: linear-gradient(95deg, #071952, #d11516);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
 font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
    flex-wrap: wrap;
  transition: 0.3s ease;  
   text-align: center;
     transition:
    background 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cta-buttons-home .btn-11:hover {
  background: #b50f10;
   /* background: linear-gradient(95deg, #d11516, #ff4b4b); */
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(209, 21, 22, 0.35);
}
a{
  text-decoration: none;
}
.call-icon {
  font-size: 1.2rem;
  animation: pulse 1.4s infinite;
  color: #fff;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.dummy-number {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 5px;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .cta-buttons-home {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons-home .btn-11 {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .dummy-number {
    display: block;
    font-size: 0.9rem;
    margin-left: 0;
    opacity: 0.85;
  }

  .call-icon {
    font-size: 1.1rem;
  }
}
/* man heading content query  */

@media (max-width:425px){
  .hero-content{
    padding:0
  }
  .text-slider div{
    font-weight: 500;
  }
  .text-slider div span{
    font-weight: 500;
  }
  .main-heading{
    font-size:1.2em !important;
     line-height: 1;
  }
}
.whyus-section {
  position: relative;
  display: flex;
  justify-content: center;
  /* border:1px solid white; */
  padding-top:17px;
}

.content-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.circle-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  /* border:1px solid orange; */
}

.circle-layers {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  border-radius: 50%;
  border: 2px dashed rgba(254, 202, 202, 0.3);
  animation: spinSlow 20s linear infinite;
}

.circle-big {
  width: 500px;
  height: 500px;
}

.circle-small {
  position: absolute;
  width: 400px;
  height: 400px;
  border-style: dotted;
  border-color: rgba(253, 164, 175, 0.3);
  animation-direction: reverse;
}

.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.title-box img {
  width: 180px;
  height: 130px;
}
.title-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.title-box p {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(to right, #ef4444, #ff6b6b);
  background-clip: text;
  color: transparent;
}

.card {
  position: absolute;
}
.card img {
  width: 50px;
  height: 50px;
}
.top-center {
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.right-center {
  top: 35%;
  right: -14%;
  transform: translateY(-50%);
}
.right1-center {
  top: 55%;
  right: -14%;
}
.bottom-center {
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.left-center {
  top: 35%;
  left: -18%;
  transform: translateY(-50%);
}

.left1-center {
  top: 55%;
  left: -18%;
}

.card-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  width: 160px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.4s ease;
  border-width: 4px;
  border-style: solid;
  border-color: transparent;
  /* border:1px solid orange; */
}

.card-box:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.card-box i {
  font-size: 36px;
  margin-bottom: 12px;
}

.card-box h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.border-red {
  border-top-color: #ef4444;
  width: 200px;
}

.border-blue {
  border-right-color: #ef4444;
  width: 200px;
}

.border-green {
  border-bottom-color: #ef4444;
}

.border-purple {
  border-left-color: #ef4444;
  width: 220px;
}

@keyframes spinSlow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1372px) {
  .content {
    flex-direction: column;
    gap: 80px;
    padding: 50px 20px;
  }

  .left-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    /* bordeR:2px  solid white; */
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .stats {
    justify-content: center;
  }


  .whyus-section {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
    /* border:1px solid white; */
  }
  /* @media (max-width:1250px){

} */
  /* Scale down the circle structure */
  .circle-wrapper {
    width: 450px;
    height: 450px;
  }

  .circle-big {
    width: 450px;
    height: 450px;
  }

  .circle-small {
    width: 350px;
    height: 350px;
  }

  /* Adjusting card-box size */
  .card-box {
    width: 150px; /* Slight reduction */
    padding: 15px;
  }

  .border-red,
  .border-blue,
  .border-purple {
    width: 200px;
  }

  /* Repositioning cards to hug the circle tighter */
  .right-center,
  .right1-center {
    right: -22%; /* Move closer to the circle edge */
  }

  .left-center,
  .left1-center {
    left: -22%; /* Move closer to the circle edge */
  }

  .top-center {
    top: -5%;
  }

  .bottom-center {
    bottom: -5%;
  }
  /* .right-center{
  right:-90px;
  } */
}

/* Medium Mobile Screens (Max-width 768px) */
@media (max-width:790px) {
  .hero-text h1 {
    font-size: 33px;
  }

}
@media (max-width: 768px) {
  .left-content {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text > p {
    font-size: 16px;
  }

  .stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stats h3 {
    font-size: 30px;
  }

 

  .btn-1,
  .btn-2 {
    width: 100%;
    justify-content: center;
  }

  /* Scale down the circle structure further for mobile */
  .circle-wrapper {
    width: 350px;
    height: 350px;
  }

  .circle-big {
    width: 350px;
    height: 350px;
  }

  .circle-small {
    width: 250px;
    height: 250px;
  }

  .title-box img {
    width: 100px;
    height: 80px;
  }

  /* Adjust card box for mobile */
  .card-box {
    width: 120px;
    padding: 10px;
    border-radius: 15px;
  }

  .card-box h4 {
    font-size: 11px; /* Smaller font for card titles */
  }

  .border-red,
  .border-blue,
  .border-purple {
    width: 150px; /* Match card box width */
  }

  /* Reposition side cards to prevent crowding/overlap */
  .right-center {
    top: 25%; /* Higher */
  }
  .right1-center {
    top: 55%; /* Lower */
  }
  .left-center {
    top: 25%; /* Higher */
  }
  .left1-center {
    top: 55%; /* Lower */
  }

  .top-center {
    top: -10%;
  }

  .bottom-center {
    bottom: -10%;
  }
}

/* Extra Small Mobile Screens (Max-width 480px) */
@media (max-width: 520px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text > p {
    font-size: 14px;
  }

  .stats {
    flex-direction: column; /* Stack stats vertically if necessary */
    align-items: center;
    gap: 10px;
  }

  /* Final scale down for the smallest screens */
  .circle-wrapper {
    width: 280px;
    height: 280px;
  }

  .circle-big {
    width: 280px;
    height: 280px;
  }

  .circle-small {
    width: 200px;
    height: 200px;
  }

  .title-box img {
    width: 80px;
    height: 60px;
  }

  /* Hide the duplicate cards to simplify the view on tiny screens */
  .right1-center,
  .left1-center {
    display: none;
  }

  /* Adjust remaining cards for the new small circle and removed cards */
  .card-box {
    width: 140px;
  }

  .border-red,
  .border-blue,
  .border-purple {
    width: 100px;
  }

  .right-center {
    top: 40%;
    right: -5%;
  }
  .left-center {
    top: 40%;
    left: -5%;
  }

  .top-center {
    top: -10%;
  }

  .bottom-center {
    bottom: -10%;
  }
}
@media (max-width: 420px) {
  .stats-h {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    /* border:2px solid orange; */
  }
}
@media (max-width: 1399px) and (min-width: 1250px) {
  .circle-wrapper {
    margin-right: 100px;
  }
}
@media (max-width: 1365px) {
  .stats-h {
    margin-left: 120px;
  }
}
@media (max-width: 650px) {
  .stats-h {
    margin-left: 50px;
  }
}
@media(max-width:400px){
  .circle-layers{
    border:2px solid orange;
  }
   .circle-big, .circle-small, .center-title{
    display:none;
  }
 .top-center img,
.right-center img,
.bottom-center img,
.left-center img {
  width: 25px;
  height: 25px;
}
 .bottom-center{
  bottom:10%;
  /* right:35%; */
  left:50%;
 }
 .right-center{
  right:-3%;
 }
}

/* about us section for new page  */

.main-container {
  min-height: 45rem;
  width: 100%;
  /* margin-top: 13rem; */
  display: flex;
  justify-content: center;
  /* padding: 0 1rem; */
  padding:80px 30px;
  /* border:1px solid orange; */
}

.inner-wrapper {
  width: 100%;
  max-width: 1400px;
  /* max-width:1280px; */
  display: flex;
  /* margin-left: 15em; */
  gap: 3.5rem;
  /* border:2px solid orange; */
}

.images-section {
  width: 45%;
  height: 100%;
  position: relative;
  min-height: 500px;
  /* border:1px solid orange; */
}
.image-card-1 {
  width: 70%;
  height: 45%;
  margin-left: -4rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-image: url("Image/hardware3.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.image-card-1:hover {
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-card-1:hover .image-overlay {
  opacity: 1;
}

.image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  
}

.image-card-1:hover .image-badge {
  opacity: 1;
}

.image-badge span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
}

.image-card-2 {
  background-image: url("Image/poscompress.jpg");
  background-image: url("Image/resendimg.webp");
  background-size: cover;
  background-position: center;
  height: 45%;
  width: 65%;
  position: absolute;
  margin-top: -10em;
  margin-left: 13em;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 10;
  transition: all 0.5s ease;
}

.image-card-2:hover {
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
  transform: scale(1.05);
}
/* .image-card {
  position: relative;
} */
.image-gradient {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    transparent,
    rgba(0, 0, 0, 0.4)
  );
  border-radius: 1.5rem;
  /* border:2px solid orange; */
}

.image-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: white;
  color:black;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.image-card-2:hover .image-text {
  opacity: 1;
}

.image-text p {
  font-weight: 700;
   font-size: 0.95rem;
}

.image-card-3 {
  position: absolute;
  width: 60%;
  height: 45%;
  margin-left: -4rem;
  border-radius: 1.5rem;
  margin-top: 5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-image: url("Image/idealpos2.webp");

  background-position: center;
  background-size: cover;
  overflow: hidden;
  z-index: 20;
  transition: all 0.5s ease;
}

.image-card-3:hover {
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
  transform: scale(1.05);
}

.image-badge-bottom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-card-3:hover .image-badge-bottom {
  opacity: 1;
}

.image-badge-bottom p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
}

.camera-circle {
  position: absolute;
  z-index: 30;
  margin-left: 6rem;
  margin-top: -3rem;
}

.circle-outer {
  height: 9.2rem;
  width: 9.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  background-color: white;
  transition: 0.45s ease;
}
.circle-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  /* Gradient border */
  padding: 5px;
  background: conic-gradient(#ff5f6d, #ffc371, #47c6ff, #9b5cff, #ff5f6d);
  background: conic-gradient(#ff2a2a, #003a70, #ff4d4d, #004c8c, #ff2a2a);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;

  animation: rotateBorder 4s linear infinite;
}
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(100deg);
  }
}

.circle-inner img {
  width: 90px;
  height: 90px;
}
.circle-inner {
  height: 8rem;
  width: 8rem;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.circle-outer:hover .circle-inner {
  transform: rotate(12deg);
}

.circle-inner i {
  font-size: 2.25rem;
  color: white;
}
.change-size {
  top: 300px;
  left: 200px;
}

.content-section {
  width: 45%;
  height: 100%;
    text-align: left;
}

.section-header-about {
  display: flex;
  align-items: center;
  padding-left: 3rem;
  /* padding-top: 1rem; */
}

.pulse-dot {
  height: 0.75rem;
  width: 0.75rem;
  /* margin-right: 0.5rem; */
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  border-radius: 50%;
  background-color: #dc2626;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.section-about {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #374151;
  margin-left: 10px;
}

.main-heading {
  padding-left: 3rem;
  padding-top: 1.5rem;
  /* padding:1rem; */
  /* padding-right: 4rem; */
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.35;
  color:black;
  /* border:2px solid white; */
}

.gradient-text {
  background: linear-gradient(to right, #ef4444, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  /* display: inline-block !important; */
}

.underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 0.25rem;

  border-radius: 9999px;
}

.dark-text {
  color: #1f2937;
  display: inline-block;
}

.description {
  padding-left: 3rem;
  padding-right: 2rem;
  /* padding-top: 2rem; */
  font-size: 18px;
  color: #4b5563;
  line-height: 1.625;
}

.features {
  padding-left: 3rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  display: flex;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

.feature-item i {
  color: #22c55e;
}

.feature-item span {
  font-weight: 500;
}

.video-experience-section {
  display: flex;
  margin-top: 3rem;
  margin-left: 3rem;
  gap: 1.5rem;
  align-items: center;
}

.video-card {
  position: relative;
  width: 18em;
  height: 11em;
  background-image: url("Image/mservice.webp");
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}

.video-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  border-radius: 1rem;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 3rem;
  width: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-card:hover .play-button {
  opacity: 1;
}

.play-button i {
  color: #dc2626;
  margin-left: 0.25rem;
}

.experience-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-icon {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(to bottom right, #ef4444, #b91c1c);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.award-icon:hover {
  transform: scale(1.1);
}

.award-icon i {
  font-size: 1.5rem;
}

.experience-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.experience-text .years {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-text .subtitle {
  font-size: 1.25rem;
  color: #374151;
}

.cta-button-wrapper {
  padding-left: 3rem;
  margin-top: 2.5rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

@media (max-width: 1600px) {
  .inner-wrapper {
    margin-left: 10em;
  }
}
@media (max-width: 1450px) {
  .inner-wrapper {
    margin-left: 5em;
  }

  .main-heading {
    font-size: 2.5em;
  }
}
@media (max-width: 1220px) {
  .camera-circle {
    display: none;
  }
  .image-card-1 {
    top: 50px;
    left: 50px;
  }
  .image-card-3 {
    left: 50px;
  }
}
@media (max-width: 1200px) {
  .inner-wrapper {
    margin-left: 2em;
    gap: 2rem;
  }

  .main-heading {
    font-size: 2.2em;
    padding-right: 2rem;
  }

  .description {
    font-size: 18px;
  }

  .image-card-2 {
    margin-left: 10em;
  }

  .camera-circle {
    margin-left: 4rem;
  }
}

@media (max-width: 1111px) {
  .content-section{
    text-align: alignx;
  }
  .main-container {
    /* margin-top: 8rem; */
  }

  .inner-wrapper {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    /* gap: 0rem; */
    align-items: center;
  }

  .images-section,
  .content-section {
    width: 100%;
    max-width: 800px;
  }

  .images-section {
    min-height: 600px;
  }

  .section-header,
  .main-heading,
  .description,
  .features,
  .video-experience-section,
  .cta-button-wrapper {
    padding-left: 1rem;
  }

  .main-heading {
    padding-right: 1rem;
    font-size: 2.5em;
  }

  .description {
    padding-right: 1rem;
  }
  .image-card{
    /* border:1px solid black; */
    width:100%;
  }
  .image-card-1 {
    top: -20px;
    left: 200px;
  }
  .image-card-2 {
    top: 370px;
    right: 250px;
  }
  .image-card-3 {
    top: 360px;
    left: 200px;
  }
  /* .image-card-3{
    display:none;
  } */
  .content-section{
    /* border:1px solid black; */
    margin-top:-130px;
    padding:30px;
  }
}

@media (max-width: 768px) {
  .main-container {
    margin-top: 4rem;
    padding: 0 0.5rem;
  }

  .inner-wrapper {
    gap: 3rem;
  }

  .images-section {
    min-height: 550px;
  }

  .image-card-1 {
    width: 75%;
    height: 50%;
    margin-left: -2rem;
  }

  .image-card-2 {
    width: 65%;
    height: 50%;
    margin-left: 8em;
    margin-top: -8em;
  }

  .image-card-3 {
    width: 65%;
    height: 45%;
    margin-left: -2rem;
    margin-top: 3rem;
  }

  .camera-circle {
    margin-left: 3.5rem;
    margin-top: -2.5rem;
  }

  .circle-outer {
    height: 8rem;
    width: 8rem;
  }

  .circle-inner {
    height: 5rem;
    width: 5rem;
  }

  .circle-inner i {
    font-size: 1.75rem;
  }

  .main-heading {
    font-size: 2em;
  }

  .description {
    font-size: 16px;
  }

  .video-experience-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .video-card {
    width: 100%;
    max-width: 20em;
  }
  .experience-info{
    display:none;
  }
}

@media (max-width: 640px) {
  .main-heading {
    font-size: 1.75em;
  }

  .features {
    flex-direction: column;
    gap: 1rem;
  }

  .experience-text h2 {
    font-size: 1.25rem;
  }

  .experience-text .years {
    font-size: 1.5rem;
  }

  .experience-text .subtitle {
    font-size: 1rem;
  }

  .section-header,
  .main-heading,
  .description,
  .features,
  .video-experience-section,
  .cta-button-wrapper {
    padding-left: 0.5rem;
  }

  .main-heading,
  .description {
    padding-right: 0.5rem;
  }
}
@media (max-width: 480px) {
  .images-section {
    min-height: 400px;
  }

  .image-card-1 {
    width: 70%;
    margin-left: 0;
  }

  .image-card-2 {
    width: 60%;
    margin-left: 6em;
    margin-top: -7em;
  }

  .image-card-3 {
    width: 60%;
    margin-left: 0;
    margin-top: 2rem;
  }

  .camera-circle {
    margin-left: 2rem;
    margin-top: -2rem;
  }

  .circle-outer {
    height: 7rem;
    width: 7rem;
  }

  .circle-inner {
    height: 4.5rem;
    width: 4.5rem;
  }

  .circle-inner i {
    font-size: 1.5rem;
  }

  .main-heading {
    font-size: 1.5em;
  }

  .description {
    font-size: 14px;
  }

  .video-card {
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  /* .main-heading {
    font-size: 1.3em;
  } */

  .image-card-2 {
    margin-left: 5em;
  }

  .camera-circle {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1635px) {
  .image-card-1,
  .image-card-2,
  .image-card-3 {
    width: 50%;
    height: 35%;
  }
}
@media (max-width: 710px) {
  .image-card-2 {
    top: 310px;
    left: 40px;
  }
  .image-card-3 {
    top: 330px;
  }
}
@media (max-width: 475px) {
  .image-card-2,
  .image-card-3 {
    display: none;
  }
  .images-section {
    display: none;
  }
}
@media(max-width:1032px){
  .main-heading{
    font-size: 2rem;
  }
}
@media (max-width:580px){
  .main-heading{
    font-size: 1.3rem;
  }
}

/* new queires  */

@media (max-width: 1111px) {
  .images-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: static;
    min-height: auto;
    /* border:2px solid orange; */
    margin-bottom:90px;
  }

  .image-card-1,
  .image-card-2,
  .image-card-3 {
    position: static;
    width: 100%;
    height: 220px;
    margin: 0;
  }

  .camera-circle {
    display: none;
  }
}

@media (max-width: 1024px) {
  .images-section {
    grid-template-columns: repeat(2, 1fr);
    padding:20px;
  }

  /* Hide the least important image */
  .image-card-3 {
    display: none;
  }
}

@media (max-width: 600px) {
  .images-section {
    grid-template-columns: 1fr;
  }

  .image-card-2 {
    display: none;
  }

  .image-card-1 {
    height: 200px;
  }
}

/* testimonial new section  */

.testimonial-section {
  /* background-color: #f4f6f9;  */
  padding: 100px 20px;
  padding:70px 20px 0px 20px;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Image/working.jpg") center/cover no-repeat;
  filter: blur(2px) brightness(0.8);
  opacity: 0.25;
  z-index: 0;
}
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d1b5e;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
  /* border: 2px solid white; */
  /* position: absolute; */
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.testimonial-subheading {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #333;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.4);
  /* position: absolute; */
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  position: relative;
  background: white;
  border-left: 5px solid #b30000;
  border-radius: 15px;
  padding: 40px 25px 25px 25px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.review-platform-facebook {
  position: relative;
}

.review-platform-facebook::before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  font-size: 90px;
  color: rgba(0, 0, 0, 0.123);
  position: absolute;
  right: 0px;
  top: 0;
  /* left:15px; */
  /* top: 2px; */
  z-index: 0;
}
.review-platform-instagram {
  position: relative;
}
.review-platform-instagram::before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  font-size: 90px;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 0;
}
.review-platform-google {
  position: relative;
}
.review-platform-google::before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  font-size: 95px;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 0;
}
.review-platform-trustpilot {
  position: relative;
}

.review-platform-trustpilot::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 90px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 0;
}
.quote {
  font-size: 4rem;
  color: #b30000;
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-bottom: 20px;
  padding-left: 25px;
  color: #333;
}

.testimonial-client {
  font-weight: bold;
  font-size: 1.05rem;
  color: #0d1b5e;
  text-align: right;
}

@media (max-width: 900px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }
  .testimonial-heading {
    font-size: 2.2rem;
  }
}

/* our services of home page  */
.services-main
 {
  width: 100%;
  padding: 100px 70px;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

.services-container-text {
  text-align: center;
  width: 900px;
  max-width: 90%;
  /* max-width: 900px; */
  margin: 0 auto 60px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.services-heading h3 {
  color: #d11516;
  font-weight: 600;
  letter-spacing: 2px;
  /* font-size: 18px; */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.services-heading h1 {
  font-size: clamp(28px, 5vw, 40px);
  color: #071952;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.services-heading p {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 50px;

  /* new */

  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 30px;
  justify-content: center;
}

.services-box1 {
  width: 340px;
  width: 380px;
  padding: 45px 28px;
  padding: 25px 28px;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-image: url(Image/cardimage.webp);
  background-repeat: repeat;
  background-size: contain;
}

.services-box1:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(209, 21, 22, 0.4);
}

.service-icon-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-icon-box h1 {
  font-size: 55px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.service-icon-box i {
  background: #d11516;
  color: #fff;
  font-size: 26px;
  padding: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services-box1 h2 {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  border-left: 4px solid #d11516;
  padding-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-box1 p {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e5e5;
  margin-top: 10px;
  min-height: 60px;
}

@media (max-width: 768px) {
  .services-box1 {
    width: 90%;
  }

  .services-heading h1 {
    font-size: 30px;
  }

  .services-heading p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .services-container-text {
    flex-direction: column;
    text-align: center;
    padding: 0 30px 0 30px;
    width: 1500px;
    /* border:1px solid orange; */
  }
  .services-heading h1 {
    font-size: 18px;
  }
   .services-container-text{
    padding:0;
  }
  .services-main{
    padding:40px 40px;
  }
}
@media (max-width: 992px) {
  .services-box1 {
    width: 100%;
    max-width: 450px;
  }
  .services-heading h1 {
    font-size: 30px;
  }
 
}

@media (max-width: 768px) {
  .services-container-text {
    flex-direction: column;
    text-align: center;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 590px) {
  .services-box1 {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .service-box h1 {
    font-size: 1.8rem;
  }

  .services-box1 {
    padding: 25px 20px;
    width: 100%;
  }

  .services-box1 h2 {
    font-size: 18px;
  }

  .services-box1 p {
    font-size: 15px;
  }
}

/* new  */

@media (max-width: 1250px) {
  .services-container {
    grid-template-columns: repeat(2, 370px);
    gap: 80px;
  }
}
@media (max-width: 970px) {
  .services-container {
    grid-template-columns: repeat(2, 300px);
    gap: 80px;
  }
}
@media (max-width: 780px) {
  .services-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-card {
    width: 90%;
    max-width: 370px;
  }
}
@media (max-width:510px) {
  .services-heading h1{
    font-size: 20px;
  }
  .service-heading p{
    font-size: 15px;
  }
}
/* featured services of home page  */

.featured-services-main {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.featured-services-main::before {
  position: absolute;
  content: "";
  background-image: url(Image/pexels-fauxels-3182781.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 30%;
  top: 0;
  left: 0;
  z-index: 1;
}
@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.featured-services-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #111111cb 30%, #a51f1fcc 80%, #111111);
  height: 30%;
  z-index: 2;
}
.row2 {
  margin-top: -130px;
}
.featured-container {
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px 40px 20px;
  position: relative;
  z-index: 10;
}
.featured-container h3 {
  color: #d11516;
}
.featured-container h1 {
  color: white;
  font-size: 52px;
  padding: 20px 0;
  font-size: clamp(28px, 5vw, 40px);
}
.featured-container p {
  color: rgb(247, 212, 212);
  font-size: 18px;
}

.featured-boxes {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 100px 0;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;

  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
  margin: 50px auto;
  max-width: 1200px;
}

.featured-box1 {
  width: 370px;
  height: auto;
  padding: 30px;
  /* padding: 35px 28px 40px 28px; */
  border-radius: 17px;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.featured-box1:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.big-service {
  background: linear-gradient(145deg, #111111 30%, #a51f1f 80%, #111111);
  color: white;
}

.featured-box1 h3 {
  color: #d11516;
  display: inline-block;
  margin-left: 170px;
}
.featured-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin: 10px 0 20px 0;
}
.service-line {
  border: 0.5px solid #ccc;
  margin: 20px 0;
}
.service-line {
  border: none;
  height: 4px;
  width: 300px;
  background: linear-gradient(90deg, #8b0000, #ff1a1a, #8b0000);
  background: linear-gradient(to right, #d11516, #111111);
  border-radius: 2px;
  margin: 20px 0 25px 0;
  transition: width 0.4s ease;
}
.featured-box1:hover .service-line {
  width: 100px;
}
.service-line {
  border: none;
  height: 4px;
  width: 85px;
  width: 300px;
  background: linear-gradient(90deg, #ff3c3c 0%, #d11516 40%, #000000 100%);
  border-radius: 50px;
  margin: 20px 0 25px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.featured-box1 p {
  color: gray;
  font-weight: 450;
  font-size: 16px;
}

.featured-box1 i {
  padding: 15px;
  font-size: 30px;
  color: white;
  /* color:#d11516; */
  background-color: #d11516;
  margin: 0 0 10px -30px;
  /* border-radius: 10px; */
  border-top-right-radius: 30%;
  border-bottom-right-radius: 30%;
}
.cta-buttons {
  display: flex;
  gap: 16px;
   flex-wrap: wrap;
     align-items: center;
  /* margin-bottom: 32px; */
}

.btn-1,
.btn-2 {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  column-gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
    text-decoration: none;
}
.cta-buttons .btn-1 i {
  /* width:20px; */
  /* height:20px; */
  background-color: none !important;
  /* border:1px solid white; */
}
.btn-1 {
  background: linear-gradient(135deg, #d11516, #ff4444);
  color: white;
  box-shadow: 0 4px 20px rgba(209, 21, 22, 0.4);
}

.btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(209, 21, 22, 0.6);
}

.btn-2 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-2:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-1,
  .btn-2 {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
  }
}
@media (max-width: 1200px) {
  .featured-boxes {
    gap: 50px;
  }
   .cta-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .featured-container h1 {
    font-size: 40px;
  }
  /* .featured-box1 {
    width: 50%;
  } */
  .featured-image {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .featured-box1 {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .featured-container h1 {
    font-size: 32px;
  }
  .featured-container p {
    font-size: 16px;
  }
  .featured-boxes {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .featured-box1 {
    /* width: 50%; */
    padding: 20px;
  }
  .featured-image {
    height: 160px;
  }
  .featured-box1 button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .featured-container h1 {
    font-size: 26px;
  }
  .featured-box1 {
    width: 70%;
  }
  .featured-image {
    height: 150px;
  }
  .featured-box1 p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .service-line {
    display: none;
  }
}

/* new  */

@media (max-width: 1200px) {
  .featured-boxes {
    grid-template-columns: repeat(2, 360px);
  }
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .featured-boxes {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .featured-box1 {
    width: 90%;
    max-width: 360px;
  }
}
@media (max-width: 1200px) {
  .featured-boxes {
    grid-template-columns: repeat(2, 360px);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .featured-boxes {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  .btn-1, .btn-2 {
    font-size: 15px;
    padding: 13px 22px;
  }
}
@media (max-width: 768px) {
  .cta-buttons {
    /* flex-direction: column; */
    width: 100%;
  }

  .btn-1, .btn-2 {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }
}
@media (max-width: 480px) {
  .btn-1, .btn-2 {
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 360px) {
  .btn1, .btn-2 {
    font-size: 13.5px;
    padding: 11px;
  }
  .featured-services-main::before {
    background-image: none;
  }
  .featured-services-main::after {
    display: none;
  }
  .featured-container h1{
     color:black;
  }
   .featured-container p{
    color:gray;
   }
}
/* brands name  */

.brand-pro {
  width: 100%;
  /* padding: 120px 20px; */
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7f8ff, #ffffff);
  text-align: center;
  /* border:2px solid green; */
  border-radius: 55px;
  /* box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.18); */
  margin-top: -50px;
  z-index: 100;
  position: relative;
  /* border:2px solid orange; */

}
.brand-partner {
  border-radius: 0;
  margin: 0;
  padding:50px 0px;
   /* background: linear-gradient(135deg, #f7f8ff2d, #ffffff27); */
  background: linear-gradient(135deg, #f7f8ff, #ffffff);
   background: none;
   /* border:2px solid orange; */
   /* background-color: white; */
}
.brand-partner-2{
border-radius: 0;
padding:20px 40px;
margin-top:20px;
/* background: linear-gradient(135deg, #f7f8ff, #ffffff); */
background: rgba(255, 255, 255, 0);
box-shadow: none !important;
}
.client-brand-2{
  box-shadow: none !important;
  background-color: white;
}
.brand-inner-container {
  width: 100%;
}
.brand-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.brand-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 70px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}
.brand-heading::after {
  content: "";
  width: 160px;
  height: 5px;
  background: linear-gradient(90deg, #ff4d4d, #b30000);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}
.brand-glass-wrapper {
  width: 100%;
  /* max-width: 1500px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 50px;
  padding: 0 30px;
  animation: scrollBrands 11s linear infinite;
  /* bordeR:2px solid green; */
}
.client-brand-2{
    background: rgba(255, 255, 255, 0.55);
    background: white !important;
}

.glass-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  max-width: 150px;
  /* height: 170px; */
  height: 120px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);

  transition: 0.4s ease;
}
.glass-card h2 {
  max-width: 78%;
  height: auto;
  filter: grayscale(40%);
  transition: all 0.3s ease;
}
.glass-card img {
  max-width: 78%;
  height: auto;
  filter: grayscale(40%);
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
}

.glass-card:hover img {
  filter: grayscale(0%);
}
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .glass-card {
    min-width: 130px;
    height: 95px;
  }
}
@media (max-width: 480px) {
  .glass-card {
    min-width: 110px;
    height: 85px;
  }
}

/* why choose us page of home page  */

.choose-main {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(135deg, #0a0a0a 10%, #111827 45%, #440808 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 8%;
  position: relative;
  padding: 150px 50px 150px 50px;
}

.choose-main::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #d11516;
  border-radius: 50%;
  filter: blur(150px);
  top: 20%;
  left: -100px;
  opacity: 0.25;
}

.choose-main::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #d11516;
  border-radius: 50%;
  filter: blur(120px);
  bottom: 15%;
  right: -100px;
  opacity: 0.2;
}

.choose-content {
  display: flex;
  justify-content: space-between;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  color: white;
  z-index: 2;
}

/* Left Section */
.choose-left {
  flex: 1 1 45%;
  position: relative;
  padding-right: 50px;
  text-align: left;
  /* border: 1px solid orange; */
}

.choose-left-bg {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, #d11516 10%, transparent 70%);
  opacity: 0.15;
  z-index: 0;
}

.choose-left h3 {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: #d11516;
}

.choose-left h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 12px 0 17px 0;
  z-index: 2;
  position: relative;
  /* border:1px solid white; */
}

.choose-left p {
  color: #d1d6e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  z-index: 2;
}

.choose-btn {
  background-color: #d11516;
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #d11516, #071952);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}
.choose-btn:hover {
  background-color: #ff3b3b;
  transform: translateY(-3px);
}

/* Right Cards */
.choose-right {
  flex: 1 1 47%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

.choose-card {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 25px 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(209, 21, 22, 0);
}
.choose-card:hover {
  transform: translateY(-8px) scale(1.03);
  border: 1px solid #d11516;
  box-shadow: 0 0 20px rgba(209, 21, 22, 0.5);
}

.choose-card i {
  font-size: 36px;
  color: #d11516;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.choose-card:hover i {
  color: #ff3b3b;
  transform: rotate(10deg) scale(1.2);
}

.choose-card h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.choose-card p {
  font-size: 0.9rem;
  color: #d1d6e0;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 1042px) {
  .choose-content {
    flex-direction: column;
    /* text-align: center; */
  }
}
@media (max-width: 1024px) {
  .choose-content {
    flex-direction: column;
    text-align: center;
  }
  .choose-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .choose-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .choose-right {
    grid-template-columns: 1fr;
  }
  .choose-card {
    width: 80%;
  }
}
@media (max-width: 480px) {
 .choose-card {
    width: 100%;
  }
}
/* our work  */

.work-section {
  padding: 96px 0px;
  background: #f9fafb;
}

.container {
  width: 85%;
  margin: 0 auto;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.section-label .dot {
  width: 12px;
  height: 12px;
  background: #dc2626;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.section-label h3 {
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Header Row */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.section-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
}

.section-header .highlight {
  background: linear-gradient(to right, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  color: transparent;
}

.view-btn {
  padding: 10px 24px;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.view-btn:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 600px;
}

.item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent,
    transparent
  );
  z-index: 10;
}

.text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: white;
  z-index: 20;
}

.text h3 {
  margin-bottom: 8px;
  font-weight: 700;
}

.text p {
  opacity: 0.8;
}

/* Grid Sizes */
.big {
  grid-column: span 2;
  grid-row: span 2;
}

.tall {
  grid-row: span 2;
}

.small {
  grid-column: span 1;
  grid-row: span 1;
}

/* Stats Box */
.stats {
  background: linear-gradient(to bottom right, #dc2626, #7f1d1d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.stats-box {
  text-align: center;
  color: white;
  /* padding: 24px; */
  background-color: none !important;
}



.plus-one {
  font-size: 32px !important;
  /* margin-bottom: 16px; */
    color: #ffdede !important;
}

.stats-box h3 {
  font-size: 24px;
  font-weight: 800;
    margin: 6px 0;
}

.stats-box p {
  font-size: 16px;
  /* opacity: 0.8; */
  font-weight: 400;
  margin-top: 6px;
    letter-spacing: 0.4px;
}
.sub-text {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  margin-top: 8px;
  line-height: 1.5;
}
@media (max-width: 1320px) {
  .section-header h1 {
    font-size: 34px;
  }
  .gallery {
    height: 550px;
  }
}

@media (max-width: 1300px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
}
@media (max-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .big {
    grid-column: span 3;
    height: 380px;
  }

  .tall {
    grid-column: span 1;
    height: 340px;
  }

  .small {
    height: 260px;
  }

  .stats {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .view-btn {
    align-self: flex-start;
  }

  .section-header h1 {
    font-size: 32px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .big {
    grid-column: span 2;
    height: 360px;
  }

  .tall {
    height: 300px;
  }

  .small,
  .stats {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .work-section {
    padding: 70px 0;
  }

  .section-header h1 {
    font-size: 30px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .big {
    height: 320px;
  }

  .tall {
    height: 260px;
  }

  .small,
  .stats {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92%;
  }

  .section-header h1 {
    font-size: 28px;
  }

  .view-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .big,
  .tall,
  .small,
  .stats {
    grid-column: span 1;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 24px;
  }
  .section-label h3 {
    font-size: 14px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .view-btn {
    width: 100%;
    text-align: center;
  }

  .text h3 {
    font-size: 16px;
  }

  .text p {
    font-size: 13px;
  }

  .gallery {
    gap: 12px;
  }

  .big,
  .tall,
  .small,
  .stats {
    height: 220px;
  }
}

/* merchant services  */

.merchant-pro {
  padding: 100px 10%;
  background: linear-gradient(135deg, #fff5f5, #ffe9e9);
  /* border: 1px solid green;; */
}
.merchant-pro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.merchant-pro-content {
  flex: 1.2;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 40px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.2);
}

.merchant-pro-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
  margin-bottom: 18px;
}

.merchant-pro-content h2 span {
  color: #e63946;
}

.merchant-pro-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.merchant-pro-features .feat {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 10px;
  background: #ffffff;
  border-left: 5px solid #e63946;
  transition: 0.3s;
}

.merchant-pro-features .feat:hover {
  transform: translateX(8px);
  background: #ffe5e5;
}

.icon {
  /* background: #e63946; */
  color: white;
  color:#e63946;
    width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 22px;
  font-weight: bold;
  padding: 7px;
}
.merchant-pro-buttons {
  margin-top: 25px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.merchant-btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  text-align: center;
}

.merchant-btn.primary {
  background: linear-gradient(90deg, #ff3737, #b30000);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 50, 50, 0.33);
}

.merchant-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.merchant-btn.outline {
  border: 2px solid #e63946;
  color: #e63946;
  background: white;
}

.merchant-btn.outline:hover {
  background: #ffe5e5;
  transform: translateY(-3px);
}

.merchant-pro-image-stack {
  position: relative;
  width: 700px;
  height: 600px;
}

.stack-img {
  width: 380px;
  height: auto;
  border-radius: 18px;
  position: absolute;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

/* First (bottom) */
.img1m {
  top: 0px;
  left: 100px;
  z-index: 1;
  /* transform: rotate(-3deg); */
}

/* Middle */
.img2 {
  top: 300px;
  left: 60px;
  z-index: 2;
}

/* Front */
.img3m {
  top: 150px;
  left: 370px;
  z-index: 3;
}
.img4m {
  /* width:200px; */
  top: 350px;
  left: 100px;
}
/* Hover highlight */
.stack-img:hover {
  transform: scale(1.07) translateY(-10px);
  z-index: 5;
}
/* resposive  */

@media (max-width: 1600px) {
  .merchant-pro-image-stack {
    transform: scale(0.95);
  }
}

@media (max-width: 1400px) {
  .merchant-pro-content h2 {
    font-size: 32px;
  }
  .merchant-pro-image-stack {
    transform: scale(0.9);
  }
}


@media (max-width: 1200px) {
  .merchant-pro-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .merchant-pro-buttons {
    justify-content: center;
  }


}
@media (max-width: 1024px) {
  .merchant-pro-content {
    padding: 35px;
  }

  .merchant-pro-desc {
    font-size: 16px;
  }

  .merchant-pro-image-stack {
    width: 500px;
    height: 440px;
  }
}

@media (max-width: 900px) {
  .merchant-pro-image-stack {
    transform: scale(0.85);
  }
}
@media (max-width: 768px) {
  .merchant-pro {
    padding: 80px 6%;
  }

  .merchant-pro-content h2 {
    font-size: 30px;
  }

  
}

@media (max-width: 650px) {
  .merchant-pro-content {
    padding: 30px 25px;
  }

 

  .camera-circle {
    transform: scale(0.55);
  }
}

@media (max-width: 500px) {
  .merchant-pro-content h2 {
    font-size: 26px;
  }

  .merchant-pro-buttons {
    flex-direction: column;
    gap: 12px;
  }

 
}


/* new queires  */

@media (max-width: 1599px) {
  .merchant-pro-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .merchant-pro-image-stack {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: static;
    /* border:2px solid orange; */
  }

  .stack-img {
    position: static;
    width: 100%;
    max-width: 400px;
    margin: auto;
    transform: none !important;
    /* bordeR:2px solid orange; */
  }

  .img4m {
    /* grid-column: span 2; */
    max-width: 350px;
  }

  .camera-circle {
    display: none; /* cleaner on laptops */
  }
}

@media (max-width: 1023px) {
  
  .merchant-pro-image-stack {
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    width: 100%;
    position: static;
    height: auto;
  }

  .stack-img {
      position: static;
    width: 100%;
    max-width: 420px;
    margin: auto;
    transform: none !important;
  }
.img1m,
  .img3m {
    display: block;
  }
  .img4m {
      display: none;
  }
   .camera-circle {
    display: none;
  }
}

@media (max-width: 767px) {
  .merchant-pro-content {
    text-align: left;
  }

  .merchant-pro-image-stack {
    gap: 20px;
  }

  .stack-img {
    max-width: 100%;
    border-radius: 14px;
  }
}
@media (max-width:550px){
  .img1m{
    display:none;
  }
  .merchant-pro-image-stack {
   display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 22px; */
    width: 100%;
    position: static;
    height: auto;
  }

}

/* ideal pos page  */

.hero-pos {
  position: relative;
  /* min-height: 70vh; */
  /* background: #000; */
  color: #fff;
  padding: 4rem 1rem 5rem;
  overflow: hidden;
  border: none;
  /* background: linear-gradient(135deg, #0a0a0a 10%, #111827 45%, #440808 90%); */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2d0a0a 100%);
}
.hero-pos::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #d11516;
  border-radius: 50%;
  filter: blur(150px);
  top: 10%;
  left: -100px;
  opacity: 0.25;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.6), rgba(0,0,0,.2)); */
}

/* CONTENT */
.hero-content-pos {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: auto;
  display: grid;
  /* gap: 6rem; */
   gap: clamp(2rem, 4vw, 6rem);
  padding: 0 1rem;
  grid-template-columns: 1fr 420px;
    padding: 0 clamp(1rem, 4vw, 2rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.hero-content-pos > * {
  min-width: 0;
}
/* LEFT */
.left {
  padding-top: 0.5rem;
  text-align: left;
}

.badge-p {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 38, 38, 0.13);
  border: 1px solid rgba(220, 38, 38, 0.22);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff4b4b;
  border-radius: 50%;
}

.title {
  /* font-size: 2rem; */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
   font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 1.15;
}

.highlight {
  color: #ff3b3b;
}

.subtitle2 {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  /* text-align: center; */
  /* border:1px solid orange ; */
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  max-width: 60ch;
  /* text-align: left;
  text-align: left; */
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: #dc2626;
  color: #fff;
  padding: 0.9rem 1.7rem;
  border-radius: 14px;
  border: none;
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1.7rem;
  border-radius: 14px;
}

.stats-p {
  display: flex;
  gap: clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
}

.number {
  font-size: 1.6rem;
  font-weight: 800;
   font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.label-p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* RIGHT */
.right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
   gap: clamp(0.8rem, 2vw, 1.2rem);
}

.feature-card {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.feature-card img {
  width: 60px;
  height: 60px;
   width: clamp(45px, 6vw, 60px);
  height: auto;
}

.feature-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-text p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.93rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-1,
.btn-2 {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  transition: all 0.3s ease;
}

.btn-1 {
  background: linear-gradient(135deg, #d11516, #ff4444);
  color: white;
  box-shadow: 0 4px 20px rgba(209, 21, 22, 0.4);
}

.btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(209, 21, 22, 0.6);
}

.btn-2 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-2:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.bottom-shadow {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 90px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.4),
    transparent
  );
}

/* RESPONSIVE */


@media (max-width: 900px) {

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .right {
    max-width: 450px;
    margin: auto;
  }
  .feature-card {
    justify-content: center;
    text-align: left;
  }
  .title {
    font-size: 2.2rem;
  }
}
@media (max-width: 1050px) {
  .hero-content-pos {
    display: flex;
    flex-direction: column;
    text-align: center;
      grid-template-columns: 1fr;
    /* text-align: center; */
  }
  .subtitle2 {
    /* text-align: center; */
    max-width: 70%;
    /* margin: 0 auto; */
    /* margin-left:110px; */
       /* margin-inline: auto; */
    /* text-align: center; */
    text-align: left;
  }
 
}
@media (max-width:600px) {
   .stats-p {
    display: flex;
    justify-content: center;
    align-items: center;
     /* justify-content: center; */
  }
}
@media (max-width:750px) {
 .pos-btn{
  width:100%;
  /* display:flex; */
  /* justify-content: flex-start; */
}
}
  /* .btn-1,
  .btn-2 {
    width: 100%;
    justify-content: center;
  } */
/* } */
/* internet wifi  */

.wifi-main {
  width: 100%;
  background: linear-gradient(135deg, #0a0a0a 10%, #111827 45%, #440808 90%);
  background: #f7f4f9;
  padding: 150px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wifi-main::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #b30000, #ff4747);
  opacity: 0.12;
  transform: rotate(25deg);
  border-radius: 40px;
}

.wifi-main::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #d11516;
  border-radius: 50%;
  filter: blur(150px);
  bottom: 5%;
  right: -120px;
  opacity: 0.25;
}

.wifi-container {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: white;
  z-index: 2;
  /* border:2px solid orange; */
}

.wifi-left {
  flex: 1 1 50%;
  padding-right: 100px;
}

.wifi-left h3 {
  color: #d11516;

  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #b30000;
  background: linear-gradient(90deg, #b30000, #ff4747);
  -webkit-background-clip: text;
  color: transparent;
}

.wifi-left h1 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 800;
  margin: 15px 0 20px;
  /* color: white; */
  line-height: 1.3;
}

.wifi-left p {
  font-size: 1rem;
  color: #d1d6e0;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
}

.wifi-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 30px;
}

.wifi-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #d1d6e0;
}

.wifi-point i {
  color: #d11516;
  font-size: 20px;
}
.wifi-point span {
  color: #444;
}

/* Right Images */
.wifi-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wifi-images-overlap {
  position: relative;
  width: 420px;
  height: 360px;
}
.wifi-img {
  position: absolute;
  width: 430px;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  opacity: 0.95;
  border: 2px solid white;
}

.wifi-img.img1 {
  /* top: 0; */
  top: -40px;
  /* left: -20px; */
  right: 50px;
  bottom: 50px;
  z-index: 3;
  transform: rotate(-3deg);
}

.wifi-img.img2 {
  top: 120px;
  left: 250px;
  z-index: 2;
  transform: rotate(4deg);
}

.wifi-img.img3 {
  top: 120px;
  left: 180px;
  z-index: 1;
  transform: rotate(-2deg);
}

.wifi-img:hover {
  transform: scale(1.05);
  z-index: 5;
  box-shadow: 0 15px 40px rgba(209, 21, 22, 0.5);
  opacity: 1;
}

@media (max-width: 992px) {
  .wifi-images-overlap {
    width: 320px;
    height: 280px;
  }

  .wifi-img {
    width: 220px;
    height: 160px;
  }

  .wifi-img.img1 {
    top: 0;
    left: 0;
  }

  .wifi-img.img2 {
    top: 40px;
    left: 60px;
  }

  .wifi-img.img3 {
    top: 80px;
    left: 120px;
  }
  .wifi-container {
    flex-direction: column;
  }

  .wifi-left,
  .wifi-right {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .wifi-left h1 {
    font-size: 2rem;
  }

  .wifi-img-box {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .wifi-images-overlap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .wifi-img {
    position: static;
    transform: none;
    width: 90%;
    height: 180px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1720px) {
  .wifi-img.img2 {
    left: 100px;
    /* right:100px;  */
    /* display: none; */
  }
}
@media (max-width: 1297px) and (min-width: 1000px) {
  .wifi-img.img2 {
    display: none;
  }
}

/* hardware of home page  */

.hardware-section {
  background: #f7f4f9;
  padding: 90px 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2d0a0a 100%);
}

.hardware-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff0000, transparent);
  top: -150px;
  right: -150px;
  opacity: 0.15;
  filter: blur(80px);
}
.hardware-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00d4ff, transparent);
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
  filter: blur(100px);
}
.hardware-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: auto;
  gap: 60px;
}
.hardware-text {
  flex: 1.1;
  min-width: 350px;
}

.hardware-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  color: white;
  margin-bottom: 20px;
}

.hardware-text h2 span {
  background: linear-gradient(120deg, #ff0844, #ff6b35);
  background-clip: text;
  color: transparent;
}

.hardware-text p {
  font-size: 1.15rem;
  color: #b8b8c8;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hardware-points .hp {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #ff0844;
  transition: all 0.3s ease;
}

.hardware-points .icon {
  font-size: 2rem;
  margin-right: 12px;
  color: #b30000;
}

.hardware-points h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  color: white;
}

.hardware-points p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #555;
  font-size: 1.13rem;
  color: #b8b8c8;
  line-height: 1.7;
}

.hardware-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 13px 35px;
  border-radius: 40px;
  background: linear-gradient(135deg, #b30000, #ff4747);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.hardware-btn:hover {
  transform: translateY(-4px) scale(1.03);
}
.hardware-images-new {
  position: relative;
  flex: 1;
  min-width: 350px;
  min-height: 420px;
}
.hw-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.4s;
}

.hw-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hw-card.main {
  width: 350px;
  height: 400px;
  top: 20px;
  left: 60px;
  transform: rotate(-2deg);
}

.hw-card.small {
  width: 260px;
  height: 260px;
}

.hw-card.small.top {
  /* top: 55px; */
  bottom: 200px;
  right: 35px;
  transform: rotate(8deg);
}

.hw-card.small.bottom {
  bottom: -55px;
  right: 85px;
  transform: rotate(-8deg);
}

.hw-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
}

.hardware-badge-pro {
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  /* background: radial-gradient(circle at center, #b30000, #7a0000); */
  background-color: white;
  box-shadow: 0 20px 40px rgba(179, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hardware-badge-pro img {
  width: 80px;
  height: 80px;
  animation: spin 6s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* .badge-icon {
  font-size: 2.4rem;
  color: #fff;
  z-index: 3;
} */

.badge-text-circle {
  position: absolute;
  inset: 0;
  animation: rotateText 10s linear infinite;
}

.badge-text-circle span {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.badge-text-circle span::after {
  content: attr(data-text);
}

.badge-text-circle span {
  display: inline-block;
}

.badge-text-circle span {
  display: block;
  padding: 0;
  white-space: nowrap;

  transform: rotate(0deg) translateY(-75px);
  /* 75px = radius (half of 160px) */
}
.hardware-text h2,
.hardware-text p,
.hardware-points {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1100px) {
  .hardware-container {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .hardware-badge-pro {
    display: none;
  }
  .hw-card.small.bottom {
    top: 10px;
    right: 150px;
  }
  .hw-card.small.top {
    right: -10px;
    top: 10px;
  }
}
@media (max-width: 900px) {
  .hardware-images {
    height: 350px;
  }
  .hw-img {
    width: 230px;
  }
  .hardware-section {
    padding: 50px 50px;
  }
}
@media (max-width: 1484px) {
  .hardware-images-new .main {
    display: none;
  }
  .hardware-badge-pro {
    top: 50px;
    left: 60px;
    /* right:20px; */
  }
}
@media (max-width:420px) {
  .hardware-points .hp h4 {
    font-size: 0.7rem;
  }
  .hardware-points .hp p{
    font-size: 0.80rem;
  }
  .hardware-points .hp{
    background:none;
  }
  .cta-buttons{
    /* width:60%; */
    font-size: 0.2rem;
  }
}
@media (max-width:498px){
   .hw-card.small.bottom {
    top: 10px;
    right: 100px;
  }
  .hw-card.small.top {
    right: -20px;
    top: 10px;
    /* border:2px solid orange; */
  }
}
@media (max-width:395px){
   .hw-card.small.top {
    display: none;
   }
    .hw-card.small.bottom{
      left:50px;
    }
}
@media (max-width: 420px) {
  .hardware-text,
  .hardware-images-new {
    min-width: 100%;
  }
  .hardware-section {
    padding: 40px 20px;
  }
}



/* buttons of thi spage  */

/* blog page of home page  */

/* testimonials of home page  */

/* faq page of home page  */
/* contact us form of home page  */

/* footer of home page */


/* whats app logo  */

/* ===== WhatsApp Floating Button Enhanced ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  bottom: 520px;
/* top:100px; */
  right: 26px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  z-index: 9999;
  box-shadow:
    0 0 0 rgba(209, 21, 22, 0.6),
    0 12px 30px rgba(37, 211, 102, 0.45);
  animation: whatsapp-pulse 2s infinite;
  transition: transform 1s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

/* ===== Pulse Ring Animation (Brand Color) ===== */
@keyframes whatsapp-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(209, 21, 22, 0.55),
      0 12px 30px rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(209, 21, 22, 0),
      0 12px 30px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(209, 21, 22, 0),
      0 12px 30px rgba(37, 211, 102, 0.45);
  }
}

/* ===== Tooltip ===== */
.wa-tooltip {
  position: absolute;
  right: 80px;
 
  background: #d11516;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.3s ease;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #d11516;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 770px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 30px;
    bottom: 200px !important;
    right: 20px;
  }

  .wa-tooltip {
    display: none; 
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    /* box-shadow: none; */
  }
}
@media (max-width:1540px) {
   .whatsapp-float {
     bottom: 490px;
    right: 20px;
   }
}

.messenger-float {
  position: fixed;
  bottom: 650px; /* slightly above WhatsApp */
  right: 30px;
  width: 60px;
  height: 60px;
  background: #0084ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s ease;
    /* Pulse animation */
  /* animation: messengerPulse 2s infinite; */
   
}
@keyframes messengerPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 132, 255, 0.6),
      0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(0, 132, 255, 0),
      0 0 0 36px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 132, 255, 0),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.messenger-float:hover {
   animation: none;
  transform: scale(1.05);
}


.ms-tooltip {
  position: absolute;
  right: 80px;
  background: #0084ff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.3s ease;
  overflow: hidden;
}

.ms-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0084ff;
}

.messenger-float:hover .ms-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 770px) {
  .messenger-float {
    width: 56px;
    height: 56px;
    font-size: 30px;
    bottom: 120px !important;
    right: 20px;
  }

  .ms-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .messenger-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
     /* box-shadow: none; */
  }
}
@media (max-width:1540px) {
   .messenger-float {
     bottom: 390px;
    right: 20px;
   }
}

/* @media (max-width:350px){
  .messenger-float,  .whatsapp-float{
   
    width: 40px;
    height:40px;
  }
} */