
PK 
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/releases/css/all.css"/>
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/bootstarp/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/super-classes.css">
<link rel="stylesheet" href="assets/css/custom-style.css">
<link rel="stylesheet" href="assets/css/mobile.css">
<title>Refund Policy | VNV Solutions</title>
</head>
<body>
<!--navbar-->
<div class="w-100 float-left header-con">
<div class="container-fluid nav-fixed-top" style="background-color: white;">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="index.php">
<img src="assets/images/vnv-logo.png" alt="VNV Solutions">
</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active pl-lg-0">
<a class="nav-link p-0" href="index.php">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link p-0" href="index.php#about">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link p-0" href="index.php#whyus">WHY US</a>
</li>
<li class="nav-item">
<a class="nav-link p-0" href="index.php#services">SERVICES</a>
</li>
<li class="nav-item">
<a class="nav-link p-0" href="index.php#gallery">GALLERY</a>
</li>
</ul>
<div class="navbar-btn d-inline-block">
<a href="contact.php">CONTACT NOW <i class="fas fa-angle-right"></i></a>
</div>
</div>
</nav>
</div>
</div>
<!--navbar-->
<!--banner-->
<section class="sub-banner-sec generic-banner w-100 float-left d-table position-relative">
<div class="d-table-cell align-middle">
<div class="container">
<div class="banner-inner-con text-white text-center wow bounceInUp" data-wow-duration="2s">
<h1 class="position-relative">Refund Policy</h1>
<nav aria-label="breadcrumb">
<ol class="breadcrumb d-inline-block">
<li class="breadcrumb-item d-inline-block"><a class="text-white" href="index.php">Home</a></li>
<li class="breadcrumb-item active d-inline-block" aria-current="page">Refund Policy</li>
</ol>
</nav>
</div>
</div>
</div>
</section>
<!--banner-->
<!--conference-sec-->
<section class="conference-sec w-100 float-left padding-top padding-bottom" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="confernce-text-sec">
<h2>Refund Policy</h2>
<p class="text-justify" >All service requests (including project cancellations or service downgrades) must be submitted in writing to info@vnvsolutions.in.</p>
<p class="text-justify" >Refunds for services already rendered will not be applicable. For eligible advance payments made for services not yet initiated, refunds may be considered on a case-by-case basis and processed within 15 business days from approval.</p>
<p class="wow bounceInUp text-justify" data-wow-duration="2s">VNV Solutions reserves the right to approve or deny refund requests based on the nature of the service engagement.</p>
<p><u><b>Contact details.</b></u></p>
<p><strong>VNV Solutions<br>
2204, Tower 4, Panchsheel Wellington,<br>
Crossing Republik, Ghaziabad,<br>
Uttar Pradesh-201016.<br>
INDIA<br>
Phone No.: +91 9311227181<br>
E-mail : info@vnvsolutions.in</strong>
</p>
</div>
</div>
</div>
</div>
</section>
<!--conference-sec-->
<!--footer-sec-->
<section class="footer-main-sec w-100 float-left padding-top position-relative">
<div class="container">
<!--form-sec-->
<div class="footer-inner-sec">
<ul class="list-unstyled text-center">
<li class="d-inline-block"><a class="text-white" href="privacy-policy.php">Privacy Policy</a></li>
<li class="d-inline-block"><a class="text-white" href="refund-policy.php">Refund Policy</a></li>
<li class="d-inline-block"><a class="text-white" href="terms-conditions.php">Terms & Conditions</a></li>
<li class="d-inline-block"><a class="text-white" href="contact.php">CONTACT</a></li>
</ul>
<div class="footer-social-sec text-center">
<a href="index.php">
<figure>
<img src="assets/images/logo.png" alt="VNV Solutions">
</figure>
</a>
<p class="text-white d-inline-block">Copyright @ 2025, VNV Solutions. All Rights Reserved.</p>
</div>
</div>
<!--form-sec-->
</div>
</section>
<!--footer-sec-->
<script src="assets/js/jquery-3.6.0.min.js"></script>
<!-- <script src="assets/js/jquery-3.2.1.slim.min.js"></script> -->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/wow.js"></script>
<script>
new WOW().init();
</script>
<script>
window.addEventListener('scroll', function() {
const navfixedtop = document.querySelector('.nav-fixed-top');
if (window.scrollY > 500) {
navfixedtop.classList.add('scrolled');
} else {
navfixedtop.classList.remove('scrolled');
}
});
</script>
</body>
</html>


PK 99