/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero-rvc-section {
  position: relative;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  min-height: 50vh;
  overflow: hidden;
}

/* Gradient Blob - Top Left */
.hero-rvc-gradient {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #9f06c5, #9b5de5);
  filter: blur(170px);
  opacity: 0.5;
  z-index: 0;
}

/* Background Image */
.hero-rvc-background-img {
  position: absolute;
  top: 20px;
  right: 0;
  max-width: 500px;
  max-height: 700px;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

/* Background Image */
.hero-rvc-background-img-2 {
  position: absolute;
  top: 20px;
  left: 0;
  max-width: 500px;
  max-height: 700px;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

@media(max-width: 1200px){
  .hero-rvc-background-img-2 {
  display: none;
}}

@media(max-width: 768px){
  .hero-rvc-background-img {
  opacity: 0.3;
}
.hero-rvc-gradient {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #9f06c5, #9b5de5);
  opacity: 0.6;
}
}
/* Fade Bottom of Hero */
.hero-rvc-fade-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  margin-top: 20px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 3;
}

/* Content Wrapper becomes a flexbox for centering */
.hero-rvc-content-wrapper {
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding: 5px;
  margin-top: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

/* Thin Grid Overlay behind content */
.hero-rvc-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(150, 90, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(150, 90, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
  pointer-events: none;
}

/* Content inside is centered and stacked */
.hero-rvc-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: slideUp 1s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.hero-rvc-logo {
  width: 60px;
  margin-bottom: 20px;
}

/* Heading */
.hero-rvc-heading {
  font-size: 3rem;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero-rvc-content .hero-para {
  max-width: 600px;
  margin-bottom: 40px;
}

/* Boxes */
.hero-rvc-info-pair {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-rvc-info-img {
  width: 140px;
  border-radius: 12px;
}

.hero-rvc-info-text {
  max-width: 500px;
  font-size: 16px;
  color: #161616;
  text-align: left;
}

.hero-rvc-info-text .p-1 {
  max-width: 500px;
  font-size: 18px;
  font-weight: bold;
  color: #530ac7;
}

.hero-rvc-info-text .p-1 i {
  font-size: 18px;
  font-weight: bold;
  color: #530ac7;
  margin-left: 8px;
}

.hero-rvc-info-text p {
  margin-bottom: 5px;
}

.hero-rvc-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-rvc-heading {
    font-size: 2.2rem;
  }
  .hero-rvc-boxes {
    flex-direction: column;
    align-items: center;
  }
}

/* Button */
.hero-button {
  background: none;
  outline: none;
  border: none;
  margin-top: 50px;
  z-index: 10;
}

.hero-button a {
  padding: 14px 28px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #6c028d, #050505);
  border: none;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-button a i {
  font-size: 20px;
  margin-left: 12px;
  color: #fff;
  transition: 1s ease-in;
}

.hero-button a:hover {
  transform: translateY(-4px);
  padding-right: 200px;
}

.hero-button a:hover i {
  transform: translateX(240px) rotate(-20deg);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-button a:hover {
    transform: translateY(-4px);
    padding-right: 130px;
  }

  .hero-button a:hover i {
    transform: translateX(110px) rotate(-12deg);
  }
}





.srvc-bx-section {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.srvc-bx-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.srvc-bx-box {
  position: relative;
  /* padding: 20px; */
  background: linear-gradient(135deg, rgba(113, 49, 177, 1), rgb(54, 12, 138)); /* Purplish gradient */
  backdrop-filter: blur(10px); /* Glassy blur effect */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
  border: 1px solid transparent; /* Transparent border to apply gradient */
  border-image: linear-gradient(135deg, rgba(120, 60, 180, 0.4), rgba(60, 30, 120, 0.2)) 1; /* Gradient border */
}

.srvc-bx-box {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.srvc-bx-box.srvc-bx-visible {
  opacity: 1;
  transform: translateY(0);
}



.srvc-bx-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 180px;
  padding: 10px;
}

.srvc-bx-icon {
  font-size: 18px;
  color: #fff;
}

.srvc-bx-number {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.srvc-bx-divider {
  height: 6px;
  background-color: #fff;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
  width: 100%;
}

.srvc-bx-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  padding: 10px;
}

/* Responsive: 2x2 layout */
@media (max-width: 1024px) {
  .srvc-bx-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .srvc-bx-container {
    grid-template-columns: repeat(2, 1fr);
  }
}









  .sr-services-container {
    max-width: 1268px;
    margin: 100px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
.srvc-disc-txt{
    text-align: center;
}
.srvc-disc-txt p{
    display: block;
    color: #61027e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.srvc-disc-txt h3{
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}
  .sr-service-box {
    width: calc(90% - 15px);
    min-height: 600px;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: sr-service-pop 0.5s ease forwards;
    overflow: hidden;
  }

  .sr-service-box:nth-child(1) { animation-delay: 0.1s; }
  .sr-service-box:nth-child(2) { animation-delay: 0.2s; }
  .sr-service-box:nth-child(3) { animation-delay: 0.3s; }
  .sr-service-box:nth-child(4) { animation-delay: 0.4s; }

  /* .sr-service-box:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    rgba(255, 255, 255, 0.1);
  } */

  .sr-service-box h2 {
    font-size: 2rem;
    color: #161616;
    margin: 0 0 15px;
    font-weight: 700;
    text-align: left;
  }

  .sr-service-box p {
    font-size: 1.1rem;
    color: #2e2e2e;
    margin: 0 0 20px;
    line-height: 1.6;
    text-align: left;
  }

  .sr-image-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .sr-image-box {
    width: 50%;
    max-width: 450px;
    padding: 10px;
    background: rgba(90, 15, 151, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
  }

  .sr-image-box img {
    width: 100%;
    max-height: 320px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }



  .sr-bottom-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .sr-track-record {
    width: 50%;
  }

  .sr-track-record table {
    width: 100%;
    border-collapse: collapse;
    color: #161616;
  }

  .sr-track-record th, .sr-track-record td {
    padding: 10px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .sr-track-record th {
    font-weight: 600;
    color: #590ab3;
  }

  .sr-buttons-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .sr-feature-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #161616;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    transition: background 0.3s ease;
  }

  .sr-get-quote-btn {
   padding: 8px 18px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #6c028d, #050505);
  border: none;
  border-radius: 12px;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4); */
  cursor: pointer;
  transition: all 0.3s ease;
  }

  .sr-get-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  @keyframes sr-service-pop {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1024px) {
    .sr-service-box {
      width: 100%;
    }
    .sr-image-container {
      flex-direction: column;
      align-items: center;
    }
    .sr-image-box {
      width: 100%;
    }
    .sr-bottom-container {
      flex-direction: column;
    }
    .sr-track-record, .sr-buttons-container {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .sr-service-box h2 {
      font-size: 1.8rem;
    }
    .sr-service-box p {
      font-size: 1rem;
    }
    .sr-track-record th, .sr-track-record td {
      font-size: 0.85rem;
    }
  }















h1, h2, h3{
  font-family: 'Vietnam Pro', sans-serif;
}
p, a{
  font-family: 'Roboto', sans-serif;
}