BLACKSITE
:
216.73.216.62
:
147.93.18.13 / vinyasaweddings.com
:
Linux srv667811 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
:
/
var
/
www
/
skinhealer.in
/
views
/
Upload File:
files >> /var/www/skinhealer.in/views/landingpage.php
<?php require_once __DIR__ . '/../db.php'; // Check if the request method is POST if ($_SERVER['REQUEST_METHOD'] === 'POST') { try { // Validate inputs if (empty($_POST['name']) || empty($_POST['phone'])) { throw new Exception('Name and phone number are required'); } if (!preg_match('/^[0-9]{10,15}$/', $_POST['phone'])) { throw new Exception('Please enter a valid 10-15 digit phone number'); } // Prepare SQL statement using PDO $stmt = $db->prepare("INSERT INTO enquiries (name, phone, message) VALUES (:name, :phone, :message)"); // Bind parameters and execute $stmt->execute([ ':name' => $_POST['name'], ':phone' => $_POST['phone'], ':message' => $_POST['message'] ?? null ]); // Success - redirect to thank you page header('Location: thankyou'); exit(); } catch (PDOException $e) { $error = "Database error: " . $e->getMessage(); } catch (Exception $e) { $error = $e->getMessage(); } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hair Fall Treatment | Premium Hair Solutions</title> <!-- Bootstrap 5 CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap Icons --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"> <!-- Owl Carousel --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"> <link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet"> <style> :root { --primary: #4267B2; --secondary: #f8f9fa; --accent: #ff6b6b; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow-x: hidden; } /* Header */ .main-header { padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; background: white; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s; } .call-btn { background: var(--primary); color: white; padding: 10px 25px; border-radius: 50px; font-weight: 600; transition: all 0.3s; text-decoration: none; } .call-btn:hover { background: #1a4ab5; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(42, 91, 215, 0.3); } /* Hero Section */ /* Hero Section */ .hero-section { padding: 150px 0 100px; position: relative; margin-top: 50px; overflow: hidden; color: #fff; /* Light text for better contrast */ } .hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* background-image: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */ background-size: cover; background-position: center; z-index: 1; } .contact-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); background-size: cover; background-position: center; z-index: 1; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* background-color: #4267B2; Primary color with 85% opacity */ z-index: 2; opacity: 0.9; } .contact-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #4267B2; /* Primary color with 85% opacity */ z-index: 2; opacity: 1; } .container.position-relative { position: relative; z-index: 3; } .hero-heading { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; /* color: #fff; */ color: var(--primary); } .hero-subheading { font-size: 1.2rem; color: var(--primary); margin-bottom: 30px; } .contact-heading { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: #fff; } .contact-subheading { font-size: 1.2rem; color: #fff; margin-bottom: 30px; } .contact-form { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); color: #333; /* Dark text for form */ } /* Why Choose Us */ .why-choose { padding: 30px 0; background: white; } .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 50px; position: relative; color: var(--primary); } .section-title:after { content: ''; position: absolute; bottom: -15px; left: 0; width: 80px; height: 4px; background: var(--primary); } .image-card { height: 100%; max-height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: #fff; display: flex; align-items: center; justify-content: center; } .image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; } .image-card:hover { transform: scale(1.02); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15); } .image-card:hover img { transform: scale(1.05); } /* Craftsmanship Section */ .craft-section { padding: 40px 0; background: var(--secondary); /* border: 2px solid red; */ } .craft-img { border-radius: 10px; transition: all 0.3s; } .craft-img:hover { transform: scale(1.05); } .card-body { display: flex; flex-direction: column; justify-content: center; align-items: center; } /* Team Section */ .team-section { padding: 40px 0; } .team-card { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s; } .team-card:hover { transform: translateY(-10px); } .team-img { height: 300px; object-fit: cover; } /* Sticky Buttons */ .sticky-buttonBook { position: fixed; /* border: 2px solid red; */ bottom: 40%; right: -63px; z-index: 99; display: flex; flex-direction: column; /* gap: 15px; */ transform: rotate(270deg); /* Add this line for 90-degree rotation */ transform-origin: center; /* Ensures it rotates around its center */ } .sticky-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 99; display: flex; flex-direction: column; gap: 15px; } .sticky-buttons1 { position: fixed; bottom: 30px; left: 30px; z-index: 99; display: flex; flex-direction: column; gap: 15px; } .sticky-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); transition: all 0.3s; } .book-btn { /* width: 60px; height: 60px; */ /* border-radius: 50%; */ display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); transition: all 0.3s; padding: 10px 20px; text-decoration: none; border-radius: 5px; } .sticky-btn:hover { transform: scale(1.1); } .call-btn-sticky { background: var(--primary); } .whatsapp-btn { background: #25D366; } /* Responsive Adjustments */ @media (max-width: 992px) { .hero-heading { font-size: 2.2rem; } .ambassador-img { margin-top: 50px; } } @media (max-width: 768px) { .hero-section { padding: 120px 0 80px; } .section-title { font-size: 2rem; } } .hero-image-wrapper { position: relative; /* padding: 15px; */ width: 100%; height: 500px; /* background: rgba(255, 255, 255, 0.1); border-radius: 12px; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.2); */ } .hero-image { max-height: 500px; width: auto; object-fit: cover; object-position: center; transition: transform 0.3s ease; height: 100%; } .hero-image:hover { transform: scale(1.03); } .button-group { display: flex; gap: 12px; margin-top: 20px; } .custom-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; gap: 8px; } /* Primary button hover effects */ .primary-btn { background: var(--primary); color: white; border: 2px solid var(--primary); position: relative; overflow: hidden; z-index: 1; } .primary-btn:hover { background: var(--primary-dark); /* Slightly darker shade */ border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); color: var(--primary); } .primary-btn::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; z-index: -1; } .primary-btn:hover::after { transform: scaleX(1); transform-origin: left; } /* Outline button hover effects */ .outline-btn { background: transparent; color: var(--primary); border: 2px solid var(--primary); position: relative; overflow: hidden; z-index: 1; } .outline-btn:hover { color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .outline-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; z-index: -1; } .outline-btn:hover::before { transform: scaleX(1); transform-origin: left; } /* Mobile responsive styles */ @media (max-width: 576px) { /* Hide desktop buttons */ .button-group:not(.mobile-buttons) { display: none !important; } /* Style mobile buttons */ .mobile-buttons { /* flex-direction: column; */ gap: 10px; width: 100%; } .mobile-buttons .custom-btn { width: 100%; padding: 12px; } } @media (min-width: 576px) { /* Hide mobile buttons on desktop */ .mobile-buttons { display: none !important; } } .image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; } .image-card { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; aspect-ratio: 1/1; /* Makes all cards square */ } .image-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); } .image-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); color: white; padding: 20px; } .image-overlay h3 { margin: 0; font-size: 1.2rem; font-weight: 600; } @media (max-width: 768px) { .image-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 576px) { .image-grid { grid-template-columns: 1fr; } } </style> </head> <body> <!-- Header --> <!-- <header class="main-header"> <div class="container"> <div class="d-flex justify-content-between align-items-center"> <a href="#" class="navbar-brand"> <img src="<?= BASE_URL ?>/public/assets/img/logo_1.png" alt="Clinic Logo" height="100"> </a> <a href="tel:+918448078931" class="call-btn"> <i class="bi bi-telephone me-2"></i> +91 8448078931 </a> </div> </div> </header> --> <!-- Hero Section --> <!-- <section class="hero-section"> <div class="hero-background"></div> <div class="hero-overlay"></div> <div class="container position-relative"> <div class="row align-items-center"> <div class="col-lg-6"> <h1 class="hero-heading">Celebrity Level Hair Transplant Starts at Just 25,000/- INR</h1> <p class="hero-subheading"> Your hair is more than just hair—it's your crown. If thinning hair has been affecting your confidence, a hair transplant could be the life-changing decision you need. Reclaim your crown and restore your glory with a permanent solution that brings your natural hairs back. </p> <div class="button-group d-none d-sm-flex"> <a href="#contact" class="custom-btn primary-btn"> <i class="bi bi-calendar-check"></i> Book Appointment </a> <a href="#" class="custom-btn outline-btn"> <i class="bi bi-headset"></i> Call Now </a> </div> </div> <div class="col-lg-6"> <div class="hero-image-wrapper position-relative"> <img src="<?= BASE_URL ?>/public/assets/img/doctors/doctors-img4.png" alt="Hair Treatment Specialist" class="hero-image img-fluid rounded-3"> <div class="button-group mobile-buttons d-flex d-sm-none mt-3"> <a href="#contact" class="custom-btn primary-btn w-100"> <i class="bi bi-calendar-check"></i> Book Now </a> <a href="#" class="custom-btn outline-btn w-100"> <i class="bi bi-headset"></i> Call Us </a> </div> </div> </div> </div> </div> </section> --> <!-- Why Choose Us --> <!-- <section class="why-choose"> <div class="container"> <h2 class="section-title text-center">Why Choose Our Hair Treatment</h2> <div class="owl-carousel owl-theme"> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/1.jpeg" alt="Expert Doctors" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/2.jpeg" alt="Advanced Technology" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/3.jpeg" alt="Proven Results" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/4.jpeg" alt="Personalized Care" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/5.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> </div> </div> </section> --> <section class="desktop-hero d-none d-md-block"> <div class="container"> <div class="row align-items-center gx-5"> <!-- Right Column - Form (content unchanged, only styling added) --> <div class="col-lg-6"> <div class="contact-form bg-white p-4 p-lg-4 rounded-3 shadow" style="border-top: 4px solid #0d6efd;"> <?php if (isset($error)): ?> <div class="alert alert-danger mb-3"><?= htmlspecialchars($error) ?></div> <?php endif; ?> <img src="<?= BASE_URL ?>/public/assets/img/logo_1.png" alt="Clinic Logo" height="120" class="mb-3 d-block mx-auto"> <form method="POST" action=""> <div class="mb-3"> <input type="text" class="form-control form-control-lg" name="name" placeholder="Your Name" required style="padding: 12px 15px; border-radius: 8px;" value="<?= isset($_POST['name']) ? htmlspecialchars($_POST['name']) : '' ?>"> </div> <div class="mb-3"> <input type="tel" class="form-control form-control-lg" name="phone" placeholder="Phone Number" required style="padding: 12px 15px; border-radius: 8px;" value="<?= isset($_POST['phone']) ? htmlspecialchars($_POST['phone']) : '' ?>"> </div> <div class="mb-3"> <textarea class="form-control form-control-lg" name="message" rows="3" placeholder="Describe Your Concern" style="padding: 12px 15px; border-radius: 8px; min-height: 100px;"><?= isset($_POST['message']) ? htmlspecialchars($_POST['message']) : '' ?></textarea> </div> <button type="submit" class="btn btn-primary w-100 py-3 fw-bold" style="border-radius: 8px; font-size: 1.1rem; letter-spacing: 0.5px;"> Submit Now </button> </form> </div> </div> <!-- Left Column - Content (unchanged) --> <div class="col-lg-6"> <h1 class="display-4 fw-bold mb-4">Celebrity Level Hair Transplant<br> <span class="text-primary">Starts at Just ₹25,000</span></h1> <img src="<?= BASE_URL ?>/public/assets/img/landing/1.jpeg" alt="Hair restoration before after" class="img-fluid w-100 rounded-lg object-fit-cover" style="height: 300px;"> </div> </div> </div> </section> <section class="hero-box mobile-nav-box d-md-none" id="contact"> <!-- Show only on mobile and tablet --> <div class="container"> <!-- Single Row for both heading and form --> <div class="row align-items-stretch g-2 g-md-3"> <!-- Changed to align-items-stretch --> <!-- Form Column --> <div class="col-6 col-md-6" id="top-row"> <div class="contact-form bg-white h-100 p-3 p-lg-3 rounded-3 shadow-sm" style="border-top: 4px solid #0d6efd;"> <?php if (isset($error)): ?> <div class="alert alert-danger mb-2 p-2" style="font-size: 12px;"> <?= htmlspecialchars($error) ?></div> <?php endif; ?> <img src="<?= BASE_URL ?>/public/assets/img/logo_1.png" alt="Clinic Logo" style="height: 50px; width: auto; margin-bottom: 12px;" class="d-block mx-auto"> <form method="POST" action=""> <div class="mb-2"> <input type="text" class="form-control" name="name" placeholder="Your Full Name" required style="padding: 8px 12px; border-radius: 6px; font-size: 13px;" value="<?= isset($_POST['name']) ? htmlspecialchars($_POST['name']) : '' ?>"> </div> <div class="mb-2"> <input type="tel" class="form-control" name="phone" placeholder="Phone Number" required style="padding: 8px 12px; border-radius: 6px; font-size: 13px;" value="<?= isset($_POST['phone']) ? htmlspecialchars($_POST['phone']) : '' ?>"> </div> <div class="mb-2"> <textarea class="form-control" name="message" rows="2" placeholder="Describe Your Concern" style="padding: 8px 12px; border-radius: 6px; min-height: 70px; font-size: 13px;"><?= isset($_POST['message']) ? htmlspecialchars($_POST['message']) : '' ?></textarea> </div> <button type="submit" class="btn btn-primary w-100 py-2 fw-bold" style="border-radius: 6px; font-size: 13px; letter-spacing: 0.5px;"> Submit Now </button> </form> </div> </div> <!-- Heading Column --> <div class="col-6 col-md-6 d-flex flex-column"> <!-- Added flex column --> <div class="h-100 p-3 rounded-3 shadow-sm d-flex align-items-center justify-content-center" style="background: white; border-top: 4px solid #0d6efd;"> <h1 class="fw-bold mb-0 section-title" style="font-size: 30px; line-height: 1.4;"> Celebrity Level Hair Transplant starts at Just ₹25,000 </h1> </div> </div> </div> <!-- Full Width Image Row --> <!-- Full Width Image Row --> <div class="row mt-2 gx-0"> <!-- gx-0 removes horizontal gutters --> <div class="col-12 px-0"> <!-- px-0 removes padding --> <img src="<?= BASE_URL ?>/public/assets/img/landing/ABHI.png" alt="Hair restoration before after" class="img-fluid w-100 rounded-0 object-fit-cover landing-image"> </div> </div> </div> </section> <style> .hero-box { padding: 1rem 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); } .contact-form { background: white; } /* Better responsive adjustments */ @media (max-width: 576px) { .hero-box { padding: 0.75rem 0; } .row.align-items-stretch>div { padding: 0 5px; } } @media (min-width: 992px) { .d-md-none { display: none !important; } } </style> <section class="why-choose"> <div class="container"> <h2 class="section-title text-center">Why Choose Us</h2> <div class="row justify-content-center"> <!-- Image 2 --> <div class="col-md-4 mb-4"> <div class="image-card h-100" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/2.jpeg" alt="Proven Results" class="img-fluid w-100 h-100 object-fit-cover rounded"> </div> </div> <!-- Image 3 --> <div class="col-md-4 mb-4"> <div class="image-card h-100" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/3.jpeg" alt="Personalized Care" class="img-fluid w-100 h-100 object-fit-cover rounded"> </div> </div> <div class="col-md-4 mb-4"> <div class="image-card h-100" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/4.jpeg" alt="Expert Team" class="img-fluid w-100 h-100 object-fit-cover rounded"> </div> </div> <div class="col-md-4 mb-4"> <div class="image-card h-100" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/5.jpeg" alt="Natural Results" class="img-fluid w-100 h-100 object-fit-cover rounded"> </div> </div> <div class="col-md-4 mb-4"> <div class="image-card h-100" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/6.jpeg" alt="Advanced Technology" class="img-fluid w-100 h-100 object-fit-cover rounded"> </div> </div> </div> </div> </section> <!-- Craftsmanship Section --> <section class="craft-section"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center mb-5"> <h2 class="section-title">Fine Craftsmanship and Artistic Precision</h2> <p class="lead">For your transplanted hair that looks truly yours – natural, undetectable results </p> </div> </div> <div class="row g-4"> <!-- <div class="col-md-4"> <div class="card border-0 shadow-sm h-100"> <div class="card-body text-center p-4"> <i class="bi bi-eyeglasses text-primary mb-3" style="font-size: 2.5rem;"></i> <h4>Micro-Level Precision</h4> <p>Each graft is carefully extracted and implanted with surgical precision for natural-looking results.</p> </div> </div> </div> --> <div class="col-md-4" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/craft/3.jpeg" alt="Before After" class="img-fluid craft-img w-100 h-100 object-fit-cover"> </div> <div class="col-md-4" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/craft/1.jpeg" alt="Before After" class="img-fluid craft-img w-100 h-100 object-fit-cover"> </div> <!-- <div class="col-md-4"> <div class="card border-0 shadow-sm h-100"> <div class="card-body text-center p-4"> <i class="bi bi-flower2 text-primary mb-3" style="font-size: 2.5rem;"></i> <h4>Natural Growth Pattern</h4> <p>We replicate your natural hair growth direction and angle for seamless integration.</p> </div> </div> </div> --> <div class="col-md-4" data-aos="zoom-in"> <img src="<?= BASE_URL ?>/public/assets/img/landing/craft/2.jpeg" alt="Before After" class="img-fluid craft-img w-100 h-100 object-fit-cover"> </div> <!-- <div class="col-md-4"> <div class="card border-0 shadow-sm h-100"> <div class="card-body text-center p-4"> <i class="bi bi-heart-pulse text-primary mb-3" style="font-size: 2.5rem;"></i> <h4>Minimally Invasive</h4> <p>Our advanced techniques ensure minimal discomfort and faster recovery times.</p> </div> </div> </div> --> </div> </div> </section> <!-- Gallery --> <section class="why-choose"> <div class="container"> <h2 class="section-title text-center">Gallery</h2> <div class="owl-carousel owl-theme"> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/1.jpeg" alt="Expert Doctors" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/2.jpeg" alt="Advanced Technology" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/3.jpeg" alt="Proven Results" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/4.jpeg" alt="Personalized Care" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/5.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/6.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/7.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/8.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/9.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/10.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/11.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/gallery/12.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> </div> </div> </div> </section> <!-- Team Section --> <section class="team-section"> <div class="container"> <h2 class="section-title text-center mb-5">Our Expert Team</h2> <div class="row justify-content-center"> <div class="col-lg-5 col-md-6 mb-4"> <div class="team-card"> <img src="<?= BASE_URL ?>/public/assets/img/doctors/2.jpeg" alt="Dr. Patel" class="img-fluid team-img w-100"> <div class="p-4 text-center"> <h4>Dr. Mohit Kumar</h4> <p> Dr. Mohit Kumar is a highly respected Trichologist, Senior Hair Transplant Consultant, and Aesthetic Physician with over 12 years of experience in advanced hair and skin care. He completed his medical graduation from Agra University, Uttar Pradesh. </p> <p> Over the years, he has held key positions at India's top hair clinics: <ul> <li>Senior Trichologist – Richfeel Trichology Centre, New Delhi (2014–2016)</li> <li>Hair Transplant Consultant – Plush Hair Clinic, Greater Noida (2016–2017)</li> <li>Senior Consultant – Advanced Hair Studio, Hyderabad & New Delhi (2017–2022)</li> <li>Consultant – Clinic Dermatech, New Delhi (2022–2023)</li> <li>Aesthetic Physician – AK Clinics (2023)</li> <li>Founder & Senior Consultant – Skin Healer Clinic, Delhi (Sep 2023–Present)</li> </ul> </p> <p> Driven by a passion to restore confidence and natural beauty, Dr. Kumar specializes in personalized treatments that deliver real, visible results in hair restoration and aesthetic care. </p> </div> </div> </div> <div class="col-lg-5 col-md-6 mb-4"> <div class="team-card"> <img src="<?= BASE_URL ?>/public/assets/img/doctors/1.jpeg" alt="Dr. Smith" class="img-fluid team-img w-100"> <div class="p-4 text-center"> <h4>Dr. Aparna Gupta</h4> <p> MBBS (Santosh Medical College, Ghaziabad)<br> MD (Ram Manohar Lohia, New Delhi) </p> <p> Dr. Aparna Gupta is a highly skilled hair transplant surgeon specializing in advanced techniques like Follicular Unit Extraction (FUE), Bio-FUE, and Direct Hair Transplant (DHT). Her meticulous approach and attention to detail ensure natural-looking, long-lasting results tailored to each individual. </p> <p> At SKINHEALER CLINIC, she blends the latest technology with compassionate, personalized care to deliver seamless and satisfying outcomes. Her dedication to excellence and patient satisfaction has made her a trusted name in the field of hair restoration. </p> </div> </div> </div> </div> </div> </section> <!-- Before and After --> <section class="why-choose"> <div class="container"> <h2 class="section-title text-center">Hair Transformation Before & After</h2> <div class="owl-carousel owl-theme"> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/before-after/1.jpeg" alt="Expert Doctors" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/before-after/2.jpeg" alt="Advanced Technology" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/before-after/3.jpeg" alt="Proven Results" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/before-after/4.jpeg" alt="Personalized Care" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/before-after/5.jpeg" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> </div> </div> </div> </section> <!-- Google Review --> <section class="why-choose"> <div class="container"> <div style=" display: flex; justify-content: center; align-items: center; height: 150px;"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/heading.webp" alt="Expert Doctors" class="img-fluid" style="width: 250px; height: auto;"> </div> <div class="owl-carousel owl-theme"> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/1.webp" alt="Expert Doctors" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/2.webp" alt="Advanced Technology" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/3.webp" alt="Proven Results" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/4.webp" alt="Personalized Care" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/5.webp" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> <div class="item"> <div class="image-card"> <img src="<?= BASE_URL ?>/public/assets/img/landing/review/6.webp" alt="Affordable Packages" class="img-fluid w-100 h-100 object-fit-cover"> </div> </div> </div> </div> </div> </section> <!-- conatct --> <section class="hero-section"> <div class="contact-background"></div> <!-- Background image layer --> <div class="contact-overlay"></div> <!-- Color overlay layer --> <div class="container position-relative"> <!-- Content container --> <div class="row justify-content-center"> <!-- Changed to center the column --> <div class="col-lg-6 col-md-8"> <!-- Adjusted column width for better centering --> <div class="contact-form bg-white p-4 p-lg-5 rounded-3 shadow" style="border-top: 4px solid #0d6efd;"> <?php if (isset($error)): ?> <div class="alert alert-danger mb-4"><?= htmlspecialchars($error) ?></div> <?php endif; ?> <h3 class="text-center mb-4">Book Free Consultation</h3> <form method="POST" action=""> <div class="mb-3"> <input type="text" class="form-control py-3" name="name" placeholder="Your Full Name" required style="border-radius: 8px;" value="<?= isset($_POST['name']) ? htmlspecialchars($_POST['name']) : '' ?>"> </div> <div class="mb-3"> <input type="tel" class="form-control py-3" name="phone" placeholder="Phone Number" required style="border-radius: 8px;" value="<?= isset($_POST['phone']) ? htmlspecialchars($_POST['phone']) : '' ?>"> </div> <div class="mb-3"> <textarea class="form-control py-3" name="message" rows="3" placeholder="Describe your Concerns" style="border-radius: 8px; min-height: 120px;"><?= isset($_POST['message']) ? htmlspecialchars($_POST['message']) : '' ?></textarea> </div> <button type="submit" class="btn btn-primary w-100 py-3 fw-bold" style="border-radius: 8px; font-size: 1.1rem;"> Submit Now </button> </form> </div> </div> </div> </div> </section> <!-- Faq --> <section class="why-choose"> <div class="container"> <h2 class="section-title text-center mb-5">Frequently Asked Questions</h2> <div class="accordion" id="hairTransplantFAQ"> <!-- FAQ 1 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingOne"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne"> <span class="faq-question">What is a hair transplant?</span> </button> </h2> <div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> A hair transplant is a surgical procedure where hair follicles are moved from a donor area (usually the back or sides of the scalp) to thinning or balding areas. </div> </div> </div> <!-- FAQ 2 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingTwo"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> <span class="faq-question">What are the types of hair transplant techniques?</span> </button> </h2> <div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> The main techniques include:<br><br> <strong>FUE (Follicular Unit Extraction):</strong> Individual hair follicles are extracted and implanted.<br> <strong>DHI (Direct Hair Implantation):</strong> A modified FUE where follicles are implanted using a special pen-like tool for more precision.<br> <strong>BIO-FUE:</strong> FUE combined with PRP/GFC therapy to improve healing and hair growth. </div> </div> </div> <!-- FAQ 3 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingThree"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> <span class="faq-question">Is the procedure painful?</span> </button> </h2> <div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> No, it is performed under local anesthesia, so the patient is awake but doesn't feel pain. </div> </div> </div> <!-- FAQ 4 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingFour"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour"> <span class="faq-question">How long does the procedure take?</span> </button> </h2> <div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Depending on the number of grafts, it typically takes 4–8 hours in a single session. </div> </div> </div> <!-- FAQ 5 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingFive"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive"> <span class="faq-question">Is hair transplant permanent?</span> </button> </h2> <div id="collapseFive" class="accordion-collapse collapse" aria-labelledby="headingFive" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Yes, transplanted hair is generally permanent because it comes from DHT-resistant donor areas. </div> </div> </div> <!-- FAQ 6 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingSix"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix"> <span class="faq-question">When will I see results?</span> </button> </h2> <div id="collapseSix" class="accordion-collapse collapse" aria-labelledby="headingSix" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Initial shedding occurs in 2–4 weeks. Visible regrowth begins around 3–4 months, with full results in 9–12 months. </div> </div> </div> <!-- FAQ 7 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingSeven"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven"> <span class="faq-question">Are there any side effects?</span> </button> </h2> <div id="collapseSeven" class="accordion-collapse collapse" aria-labelledby="headingSeven" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Minor swelling, redness, or itching may occur temporarily. Serious complications are rare when performed by a qualified surgeon. </div> </div> </div> <!-- FAQ 8 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingEight"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseEight" aria-expanded="false" aria-controls="collapseEight"> <span class="faq-question">How many grafts will I need?</span> </button> </h2> <div id="collapseEight" class="accordion-collapse collapse" aria-labelledby="headingEight" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> It depends on the level of baldness and desired density. Your doctor will assess and recommend the right number during consultation. </div> </div> </div> <!-- FAQ 9 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingNine"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseNine" aria-expanded="false" aria-controls="collapseNine"> <span class="faq-question">Can women also get a hair transplant?</span> </button> </h2> <div id="collapseNine" class="accordion-collapse collapse" aria-labelledby="headingNine" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Yes, women with patterned thinning, traction alopecia, or receding hairlines can benefit from hair transplant. </div> </div> </div> <!-- FAQ 10 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingTen"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTen" aria-expanded="false" aria-controls="collapseTen"> <span class="faq-question">Will the transplanted hair look natural?</span> </button> </h2> <div id="collapseTen" class="accordion-collapse collapse" aria-labelledby="headingTen" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Absolutely. With advanced techniques like DHI and proper hairline design, the results are virtually undetectable. </div> </div> </div> <!-- FAQ 11 --> <div class="accordion-item border-0 mb-3 shadow-sm rounded-3 overflow-hidden"> <h2 class="accordion-header" id="headingEleven"> <button class="accordion-button collapsed bg-white text-dark fw-bold py-3" type="button" data-bs-toggle="collapse" data-bs-target="#collapseEleven" aria-expanded="false" aria-controls="collapseEleven"> <span class="faq-question">What post-care is required?</span> </button> </h2> <div id="collapseEleven" class="accordion-collapse collapse" aria-labelledby="headingEleven" data-bs-parent="#hairTransplantFAQ"> <div class="accordion-body bg-light"> Avoid touching the graft area, intense workouts, and sun exposure for a few days. Follow your doctor's instructions strictly for best results. </div> </div> </div> </div> </div> </section> <footer class="landing-footer py-4 bg-light border-top"> <div class="container"> <div class="row align-items-center"> <div class="col-md-6 text-center text-md-start"> <p class="m-0 text-muted">© <script>document.write(new Date().getFullYear())</script> Skin Healer. All rights reserved. </p> </div> <div class="col-md-6 text-center text-md-end"> <!-- <p class="m-0 text-muted"> <a href="#" class="text-decoration-none text-muted me-3">Privacy Policy</a> <a href="#" class="text-decoration-none text-muted">Terms of Service</a> </p> --> </div> </div> </div> </footer> <!-- Sticky Buttons --> <div class="sticky-buttonBook"> <a href="#contact" class="book-btn call-btn-sticky"> Book Appointment </a> </div> <div class="sticky-buttons"> <a href="https://wa.me/84480 78931" class="sticky-btn whatsapp-btn"> <i class="bi bi-whatsapp"></i> </a> </div> <div class="sticky-buttons1"> <a href="tel:+91 84480 78931" class="sticky-btn call-btn-sticky"> <i class="bi bi-telephone"></i> </a> </a> </div> <!-- Bootstrap JS --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <!-- Owl Carousel --> <script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script> <script> // Header scroll effect $(window).scroll(function () { if ($(this).scrollTop() > 50) { $('.main-header').addClass('scrolled'); } else { $('.main-header').removeClass('scrolled'); } }); // Owl Carousel $(document).ready(function () { $('.owl-carousel').owlCarousel({ loop: true, margin: 20, nav: false, dots: false, autoplay: true, // Auto play autoplayTimeout: 3000, // Auto play interval in milliseconds (3 seconds) autoplayHoverPause: true, // Pause on hover responsive: { 0: { items: 1, }, 768: { items: 2 }, 992: { items: 3 }, 1200: { items: 3 } } }); }); </script> <script> AOS.init(); </script> <script> function adjustImageHeight() { const topRow = document.getElementById('top-row'); const image = document.querySelector('.landing-image'); if (topRow && image) { const topRowHeight = topRow.offsetHeight; image.style.height = `calc(92vh - ${topRowHeight}px)`; } } // Adjust on load and resize window.addEventListener('load', adjustImageHeight); window.addEventListener('resize', adjustImageHeight); </script> </body> </html>