[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: style.css
/* Main CSS File for ElioSof Solutions Website */ /* ===== VARIABLES ===== */ :root { /* Colors */ --primary-color: #4e42d4; --secondary-color: #00c9a7; --accent-color: #6c63ff; --dark-color: #1a1a2e; --light-color: #f8f9fa; --gray-color: #6c757d; --success-color: #28a745; --warning-color: #ffc107; --danger-color: #dc3545; --white-color: #ffffff; /* Typography */ --body-font: 'Poppins', sans-serif; --heading-font: 'Montserrat', sans-serif; /* Spacing */ --section-padding: 100px 0; --container-padding: 0 15px; /* Transitions */ --transition: all 0.3s ease; /* Border Radius */ --border-radius-sm: 4px; --border-radius-md: 8px; --border-radius-lg: 16px; /* Box Shadow */ --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15); } /* ===== RESET & BASE STYLES ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--body-font); line-height: 1.6; color: var(--dark-color); background-color: var(--white-color); overflow-x: hidden; } a { text-decoration: none; color: var(--dark-color); transition: var(--transition); } a:hover { color: var(--primary-color); } ul { list-style: none; } img { max-width: 100%; height: auto; } button, .btn { cursor: pointer; border: none; outline: none; transition: var(--transition); } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: var(--container-padding); } section { padding: var(--section-padding); } .section-title { font-family: var(--heading-font); font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 50px; position: relative; } .section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--primary-color); } .section-subtitle { text-align: center; color: var(--gray-color); margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; } /* ===== PRELOADER ===== */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--white-color); display: flex; justify-content: center; align-items: center; z-index: 9999; transition: var(--transition); } .preloader.hide { opacity: 0; visibility: hidden; } .preloader .spinner { width: 60px; height: 60px; border: 3px solid rgba(78, 66, 212, 0.2); border-top-color: var(--primary-color); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } /* ===== HEADER ===== */ .header { position: fixed; top: 0; left: 0; width: 100%; background-color: transparent; padding: 20px 0; z-index: 100; transition: var(--transition); } .header.sticky { background-color: var(--white-color); box-shadow: var(--box-shadow); padding: 15px 0; } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; } .logo img { height: 40px; margin-right: 10px; } .logo h1 { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 700; color: var(--dark-color); } .nav-menu { display: flex; align-items: center; } .nav-list { display: flex; } .nav-item { margin: 0 15px; } .nav-link { font-weight: 500; position: relative; padding: 5px 0; } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: var(--transition); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .nav-btn { background-color: var(--primary-color); color: var(--white-color); padding: 10px 20px; border-radius: var(--border-radius-md); margin-left: 20px; font-weight: 500; } .nav-btn:hover { background-color: var(--dark-color); color: var(--white-color); } .mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-color); } /* ===== HERO SECTION ===== */ .hero { height: 100vh; background-color: var(--light-color); display: flex; align-items: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background-color: rgba(78, 66, 212, 0.1); z-index: 0; } .hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; border-radius: 50%; background-color: rgba(0, 201, 167, 0.1); z-index: 0; } .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; position: relative; z-index: 1; } .hero-content { display: flex; flex-direction: column; justify-content: center; } .hero-subtitle { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 20px; font-weight: 500; } .hero-title { font-family: var(--heading-font); font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; } .hero-description { color: var(--gray-color); margin-bottom: 30px; max-width: 500px; } .hero-btns { display: flex; gap: 15px; } .btn-primary { background-color: var(--primary-color); color: var(--white-color); padding: 12px 30px; border-radius: var(--border-radius-md); font-weight: 500; display: inline-block; } .btn-primary:hover { background-color: var(--dark-color); color: var(--white-color); transform: translateY(-3px); box-shadow: var(--box-shadow-hover); } .btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); padding: 12px 30px; border-radius: var(--border-radius-md); font-weight: 500; display: inline-block; } .btn-outline:hover { background-color: var(--primary-color); color: var(--white-color); transform: translateY(-3px); box-shadow: var(--box-shadow-hover); } .hero-image { display: flex; justify-content: center; align-items: center; } .hero-image img { max-width: 100%; animation: float 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } /* ===== SERVICES SECTION ===== */ .services { background-color: var(--white-color); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background-color: var(--white-color); border-radius: var(--border-radius-lg); padding: 30px; box-shadow: var(--box-shadow); transition: var(--transition); text-align: center; position: relative; z-index: 1; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0; background-color: var(--primary-color); z-index: -1; transition: var(--transition); opacity: 0.05; } .service-card:hover { transform: translateY(-10px); box-shadow: var(--box-shadow-hover); } .service-card:hover::before { height: 100%; } .service-icon { width: 70px; height: 70px; background-color: rgba(78, 66, 212, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px; color: var(--primary-color); font-size: 1.8rem; transition: var(--transition); } .service-card:hover .service-icon { background-color: var(--primary-color); color: var(--white-color); } .service-title { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; } .service-description { color: var(--gray-color); margin-bottom: 20px; } .service-link { color: var(--primary-color); font-weight: 500; display: inline-block; position: relative; } .service-link::after { content: '→'; margin-left: 5px; transition: var(--transition); } .service-link:hover::after { margin-left: 10px; } /* ===== ABOUT SECTION ===== */ .about { background-color: var(--light-color); } .about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-image { position: relative; } .about-image img { border-radius: var(--border-radius-lg); box-shadow: var(--box-shadow); } .about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 60px; height: 60px; border-top: 3px solid var(--primary-color); border-left: 3px solid var(--primary-color); z-index: -1; } .about-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 60px; height: 60px; border-bottom: 3px solid var(--secondary-color); border-right: 3px solid var(--secondary-color); z-index: -1; } .about-content { display: flex; flex-direction: column; } .about-title { font-family: var(--heading-font); font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 15px; } .about-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 70px; height: 3px; background-color: var(--primary-color); } .about-description { color: var(--gray-color); margin-bottom: 30px; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; } .stat-item { display: flex; flex-direction: column; } .stat-number { font-family: var(--heading-font); font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 5px; } .stat-title { color: var(--gray-color); font-weight: 500; } /* ===== PORTFOLIO SECTION ===== */ .portfolio { background-color: var(--white-color); } .portfolio-filter { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; } .filter-btn { background-color: transparent; color: var(--dark-color); padding: 8px 20px; border-radius: var(--border-radius-md); font-weight: 500; transition: var(--transition); } .filter-btn.active, .filter-btn:hover { background-color: var(--primary-color); color: var(--white-color); } .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .portfolio-item { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); position: relative; } .portfolio-item:hover { transform: translateY(-10px); box-shadow: var(--box-shadow-hover); } .portfolio-image { position: relative; overflow: hidden; height: 250px; } .portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); } .portfolio-item:hover .portfolio-image img { transform: scale(1.1); } .portfolio-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(78, 66, 212, 0.8); display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition); } .portfolio-item:hover .portfolio-overlay { opacity: 1; } .portfolio-overlay-content { text-align: center; padding: 20px; transform: translateY(20px); transition: var(--transition); } .portfolio-item:hover .portfolio-overlay-content { transform: translateY(0); } .portfolio-category { color: var(--white-color); font-size: 0.9rem; margin-bottom: 10px; display: inline-block; background-color: rgba(255, 255, 255, 0.2); padding: 5px 10px; border-radius: var(--border-radius-sm); } .portfolio-title { color: var(--white-color); font-family: var(--heading-font); font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; } .portfolio-links { display: flex; justify-content: center; gap: 15px; } .portfolio-link { width: 40px; height: 40px; background-color: var(--white-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary-color); transition: var(--transition); } .portfolio-link:hover { background-color: var(--dark-color); color: var(--white-color); } .portfolio-content { padding: 20px; background-color: var(--white-color); } .portfolio-content-title { font-family: var(--heading-font); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; } .portfolio-content-category { color: var(--gray-color); font-size: 0.9rem; margin-bottom: 15px; display: block; } .portfolio-content-description { color: var(--gray-color); margin-bottom: 15px; } /* ===== TESTIMONIALS SECTION ===== */ .testimonials { background-color: var(--light-color); } .testimonials-slider { position: relative; overflow: hidden; } .testimonials-track { display: flex; transition: transform 0.5s ease; } .testimonial-item { min-width: 100%; padding: 0 15px; } .testimonial-card { background-color: var(--white-color); border-radius: var(--border-radius-lg); padding: 30px; box-shadow: var(--box-shadow); position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 20px; font-size: 4rem; color: rgba(78, 66, 212, 0.1); font-family: serif; line-height: 1; } .testimonial-text { font-style: italic; color: var(--gray-color); margin-bottom: 20px; position: relative; z-index: 1; } .testimonial-author { display: flex; align-items: center; } .author-image { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; } .author-image img { width: 100%; height: 100%; object-fit: cover; } .author-info { display: flex; flex-direction: column; } .author-name { font-family: var(--heading-font); font-weight: 600; margin-bottom: 5px; } .author-position { color: var(--gray-color); font-size: 0.9rem; } .testimonial-rating { display: flex; margin-top: 10px; color: var(--warning-color); } .slider-controls { display: flex; justify-content: center; margin-top: 30px; gap: 10px; } .slider-btn { width: 40px; height: 40px; border-radius: 50%; background-color: var(--white-color); color: var(--primary-color); display: flex; justify-content: center; align-items: center; box-shadow: var(--box-shadow); transition: var(--transition); } .slider-btn:hover { background-color: var(--primary-color); color: var(--white-color); } .slider-dots { display: flex; justify-content: center; margin-top: 20px; gap: 8px; } .slider-dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(78, 66, 212, 0.3); cursor: pointer; transition: var(--transition); } .slider-dot.active { background-color: var(--primary-color); transform: scale(1.2); } /* ===== CONTACT SECTION ===== */ .contact { background-color: var(--white-color); } .contact-container { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 30px; } .contact-title { font-family: var(--heading-font); font-size: 2rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 15px; } .contact-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background-color: var(--primary-color); } .contact-description { color: var(--gray-color); margin-bottom: 30px; } .contact-card { display: flex; align-items: center; gap: 15px; padding: 20px; background-color: var(--light-color); border-radius: var(--border-radius-md); transition: var(--transition); } .contact-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); } .contact-card-icon { width: 50px; height: 50px; background-color: var(--primary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white-color); font-size: 1.2rem; } .contact-card-content { display: flex; flex-direction: column; } .contact-card-title { font-weight: 600; margin-bottom: 5px; } .contact-card-text { color: var(--gray-color); } .contact-social { display: flex; gap: 15px; margin-top: 20px; } .social-link { width: 40px; height: 40px; background-color: var(--light-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary-color); transition: var(--transition); } .social-link:hover { background-color: var(--primary-color); color: var(--white-color); transform: translateY(-5px); } .contact-form { background-color: var(--light-color); border-radius: var(--border-radius-lg); padding: 40px; box-shadow: var(--box-shadow); } .form-group { margin-bottom: 20px; } .form-label { display: block; margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid rgba(108, 117, 125, 0.2); border-radius: var(--border-radius-md); background-color: var(--white-color); transition: var(--transition); } .form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(78, 66, 212, 0.1); } textarea.form-control { resize: vertical; min-height: 150px; } .form-btn { background-color: var(--primary-color); color: var(--white-color); padding: 12px 30px; border-radius: var(--border-radius-md); font-weight: 500; display: inline-block; border: none; cursor: pointer; transition: var(--transition); } .form-btn:hover { background-color: var(--dark-color); transform: translateY(-3px); box-shadow: var(--box-shadow-hover); } /* ===== FOOTER ===== */ .footer { background-color: var(--dark-color); color: var(--white-color); padding: 80px 0 0; } .footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 50px; } .footer-widget { display: flex; flex-direction: column; } .footer-logo { display: flex; align-items: center; margin-bottom: 20px; } .footer-logo img { height: 40px; margin-right: 10px; } .footer-logo h2 { font-family: var(--heading-font); font-size: 1.5rem; font-weight: 700; color: var(--white-color); } .footer-about { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; } .footer-widget-title { font-family: var(--heading-font); font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--primary-color); } .footer-links { display: flex; flex-direction: column; gap: 10px; } .footer-link { color: rgba(255, 255, 255, 0.7); transition: var(--transition); display: flex; align-items: center; } .footer-link::before { content: '→'; margin-right: 8px; color: var(--primary-color); transition: var(--transition); } .footer-link:hover { color: var(--white-color); transform: translateX(5px); } .footer-newsletter-text { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; } .footer-newsletter-form { display: flex; gap: 10px; } .footer-newsletter-input { flex: 1; padding: 10px 15px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--border-radius-md); background-color: rgba(255, 255, 255, 0.05); color: var(--white-color); transition: var(--transition); } .footer-newsletter-input:focus { outline: none; border-color: var(--primary-color); } .footer-newsletter-btn { background-color: var(--primary-color); color: var(--white-color); padding: 10px 15px; border-radius: var(--border-radius-md); cursor: pointer; transition: var(--transition); } .footer-newsletter-btn:hover { background-color: var(--secondary-color); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; text-align: center; } .footer-copyright { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; } .footer-copyright a { color: var(--primary-color); transition: var(--transition); } .footer-copyright a:hover { color: var(--white-color); } /* ===== RESPONSIVE STYLES ===== */ @media screen and (max-width: 992px) { .hero .container, .about .container { grid-template-columns: 1fr; } .hero-content { order: 1; text-align: center; align-items: center; } .hero-image { order: 0; margin-bottom: 30px; } .about-image { margin-bottom: 30px; } .contact-container { grid-template-columns: 1fr; } } @media screen and (max-width: 768px) { .section-title { font-size: 2rem; } .hero-title { font-size: 2.5rem; } .mobile-toggle { display: block; } .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background-color: var(--white-color); flex-direction: column; justify-content: flex-start; padding: 80px 20px 30px; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); transition: var(--transition); z-index: 99; } .nav-menu.active { right: 0; } .nav-list { flex-direction: column; width: 100%; } .nav-item { margin: 10px 0; width: 100%; } .nav-link { display: block; padding: 10px 0; } .nav-btn { margin: 20px 0 0; width: 100%; text-align: center; } .close-menu { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--dark-color); } .services-grid, .portfolio-grid { grid-template-columns: 1fr; } .about-stats { grid-template-columns: 1fr; gap: 20px; } .footer-top { grid-template-columns: 1fr; } } @media screen and (max-width: 576px) { .hero-btns { flex-direction: column; gap: 15px; } .btn-primary, .btn-outline { width: 100%; text-align: center; } .portfolio-filter { flex-direction: column; align-items: center; } .filter-btn { width: 100%; text-align: center; } .footer-newsletter-form { flex-direction: column; } .footer-newsletter-btn { width: 100%; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.08 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002