|
Server IP : 2a02:4780:3:2287:0:3736:a38e:8 / Your IP : 216.73.216.63 Web Server : LiteSpeed System : Linux sg-nme-web2187.main-hosting.eu 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : system, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/demo/src/../Management/../../includes/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if (!isset($current_page)) {
$current_page = basename($_SERVER['PHP_SELF'], '.php');
}
$page_titles = [
'index' => 'Home',
'about' => 'About Us',
'services' => 'Services',
'features' => 'Features',
'contact' => 'Contact',
'privacy' => 'Privacy Policy',
'become-partner' => 'Become a Partner'
];
$page_title = isset($page_titles[$current_page]) ? $page_titles[$current_page] . ' | ' . SITE_NAME : SITE_NAME;
$meta_desc = $page_meta_desc ?? DEFAULT_META_DESC;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php echo htmlspecialchars($meta_desc); ?>">
<meta name="keywords" content="<?php echo DEFAULT_KEYWORDS; ?>">
<meta name="author" content="<?php echo COMPANY_NAME; ?>">
<title><?php echo htmlspecialchars($page_title); ?></title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="assets/css/custom.css?v=1">
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
<style>
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow-x: hidden; max-width: 100vw; }
.section-padding { padding: 80px 0; }
.navbar { box-shadow: 0 2px 15px rgba(0,0,0,0.1); padding: 8px 0 !important; min-height: 60px; }
.navbar-brand { font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; text-decoration: none; padding: 4px 0; margin: 0; }
.menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 28px; height: 22px; background: transparent; border: none; cursor: pointer; padding: 0; margin: 0 0 0 12px; z-index: 10001; }
.navbar-brand span:first-child { width:36px;height:36px;background:linear-gradient(135deg, #2563eb, #4f46e5);border-radius:8px;display:flex;align-items:center;justify-content:center;margin-right:8px;flex-shrink:0; }
.nav-link { color: #333 !important; font-weight: 500; padding: 8px 12px !important; }
.nav-link:hover, .nav-link.active { color: #2563eb !important; }
.btn-login-nav { background: #2563eb; color: #fff !important; padding: 6px 16px; border-radius: 6px; margin-left: 8px; font-size: 0.9rem; }
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-around;
width: 28px;
height: 22px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
margin: 0 0 0 auto;
z-index: 10001;
}
.menu-toggle span {
width: 100%;
height: 2px;
background: #333;
border-radius: 2px;
transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 350px;
height: 100vh;
background: linear-gradient(180deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
z-index: 10000;
transition: right 0.4s ease;
padding: 80px 25px 30px;
box-shadow: -5px 0 25px rgba(0,0,0,0.2);
overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-close {
position: absolute;
top: 20px;
right: 20px;
background: rgba(255,255,255,0.15);
border: none;
color: #fff;
width: 35px;
height: 35px;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.25); }
.mobile-menu-link {
display: block;
color: rgba(255,255,255,0.9);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
padding: 14px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s;
}
.mobile-menu-link:hover, .mobile-menu-link.active {
color: #fff;
padding-left: 10px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
}
.mobile-menu-link.active { background: rgba(255,255,255,0.2); font-weight: 600; }
.mobile-login-btn {
display: block;
background: #fff;
color: #2563eb !important;
text-align: center;
padding: 14px 20px;
border-radius: 30px;
font-weight: 600;
margin-top: 25px;
text-decoration: none;
}
.mobile-login-btn:hover { background: #f0f0f0; }
@media (max-width: 991px) {
.desktop-menu { display: none !important; }
.menu-toggle { display: flex !important; }
.navbar .container { padding-left: 15px; padding-right: 15px; }
.navbar-brand { font-size: 1rem; }
.navbar-brand span:first-child { width:32px !important; height:32px !important; }
}
@media (max-width: 768px) {
.section-padding { padding: 50px 0; }
h1 { font-size: 1.75rem !important; }
h2 { font-size: 1.5rem !important; }
}
</style>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1193961286057909');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1193961286057909&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top" style="overflow:hidden;">
<div class="container" style="max-width:100%;">
<a href="index.php" class="navbar-brand">
<img src="assets/images/favicon.png" alt="E Vision Infotech" style="width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-right:8px;flex-shrink:0;object-fit:contain;">
<span style="line-height:1;"><?php echo COMPANY_NAME; ?></span>
</a>
<div class="desktop-menu">
<ul class="nav navbar-nav ml-auto align-items-center">
<li class="nav-item"><a href="index.php" class="nav-link <?php echo $current_page === 'index' ? 'active' : ''; ?>">Home</a></li>
<li class="nav-item"><a href="about-us.php" class="nav-link <?php echo $current_page === 'about' ? 'active' : ''; ?>">About Us</a></li>
<li class="nav-item"><a href="services.php" class="nav-link <?php echo $current_page === 'services' ? 'active' : ''; ?>">Services</a></li>
<li class="nav-item"><a href="features.php" class="nav-link <?php echo $current_page === 'features' ? 'active' : ''; ?>">Features</a></li>
<li class="nav-item"><a href="become-partner.php" class="nav-link <?php echo $current_page === 'become-partner' ? 'active' : ''; ?>">Become a Partner</a></li>
<li class="nav-item"><a href="contact-us.php" class="nav-link <?php echo $current_page === 'contact' ? 'active' : ''; ?>">Contact Us</a></li>
<li class="nav-item"><a href="https://smart.smsoft.in/" target="_blank" class="btn-login-nav">Login</a></li>
</ul>
</div>
<button class="menu-toggle" type="button" onclick="toggleMobileMenu()">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<div class="mobile-menu-overlay" id="mobileOverlay" onclick="toggleMobileMenu()"></div>
<div class="mobile-menu" id="mobileMenu">
<button class="mobile-menu-close" onclick="toggleMobileMenu()">×</button>
<a href="index.php" class="mobile-menu-link <?php echo $current_page === 'index' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-home mr-2"></i> Home
</a>
<a href="about-us.php" class="mobile-menu-link <?php echo $current_page === 'about' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-info-circle mr-2"></i> About Us
</a>
<a href="services.php" class="mobile-menu-link <?php echo $current_page === 'services' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-cogs mr-2"></i> Services
</a>
<a href="features.php" class="mobile-menu-link <?php echo $current_page === 'features' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-star mr-2"></i> Features
</a>
<a href="become-partner.php" class="mobile-menu-link <?php echo $current_page === 'become-partner' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-handshake mr-2"></i> Become a Partner
</a>
<a href="contact-us.php" class="mobile-menu-link <?php echo $current_page === 'contact' ? 'active' : ''; ?>" onclick="toggleMobileMenu()">
<i class="fas fa-envelope mr-2"></i> Contact Us
</a>
<a href="https://smart.smsoft.in/" target="_blank" class="mobile-login-btn" onclick="toggleMobileMenu()">
<i class="fas fa-sign-in-alt mr-2"></i> Login to Portal
</a>
</div>
<script>
function toggleMobileMenu() {
var menu = document.getElementById('mobileMenu');
var overlay = document.getElementById('mobileOverlay');
var toggle = document.querySelector('.menu-toggle');
menu.classList.toggle('active');
overlay.classList.toggle('active');
toggle.classList.toggle('active');
if (menu.classList.contains('active')) {
document.body.style.overflow = 'hidden';
} else {
document.body.style.overflow = 'auto';
}
}
</script>
<main style="padding-top: 60px;">