updated designs
This commit is contained in:
145
index.html
145
index.html
@@ -8,99 +8,164 @@
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<style>
|
||||
:root {
|
||||
--primary-dark: #0a0e17;
|
||||
--primary-dark: #1a1f2c;
|
||||
--primary-light: #ffffff;
|
||||
--accent-gray: #3a3a3a;
|
||||
--accent-silver: #e0e0e0;
|
||||
--accent-color: #2c3e50;
|
||||
--accent-hover: #34495e;
|
||||
--text-light: #f8f9fa;
|
||||
--text-dark: #2c3e50;
|
||||
--gradient-start: #2c3e50;
|
||||
--gradient-end: #3498db;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background-color: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
background-color: #f8f9fa;
|
||||
color: var(--text-dark);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
padding: 2rem 0;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
color: var(--text-light);
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
margin-bottom: 4rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.header::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg') center/cover;
|
||||
opacity: 0.1;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.header .container {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-weight: 800;
|
||||
letter-spacing: 5px;
|
||||
letter-spacing: 8px;
|
||||
margin-bottom: 0;
|
||||
font-size: 3.5rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.header h2 {
|
||||
font-size: 1.2rem;
|
||||
letter-spacing: 3px;
|
||||
font-size: 1.4rem;
|
||||
letter-spacing: 4px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.version-card {
|
||||
border: 1px solid #e9e9e9;
|
||||
border-radius: 5px;
|
||||
background: var(--primary-light);
|
||||
border: none;
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
height: 100%;
|
||||
margin-bottom: 2rem;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
|
||||
}
|
||||
|
||||
.version-card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
||||
transform: translateY(-10px) scale(1.02);
|
||||
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.version-img {
|
||||
height: 200px;
|
||||
height: 250px;
|
||||
background-size: cover;
|
||||
background-position: top center;
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
background-position: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.version-img::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 50%;
|
||||
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
|
||||
}
|
||||
|
||||
.version-content {
|
||||
padding: 1.5rem;
|
||||
padding: 2rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.version-content h3 {
|
||||
margin-bottom: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent-color);
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.version-content p {
|
||||
color: #666;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.btn-view {
|
||||
background-color: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
color: var(--text-light);
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
border-radius: 0;
|
||||
padding: 12px 25px;
|
||||
border-radius: 30px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-block;
|
||||
margin-top: 1rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn-view::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
.btn-view:hover {
|
||||
background-color: var(--accent-gray);
|
||||
color: var(--primary-light);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.btn-view:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
padding: 2rem 0;
|
||||
background: var(--primary-dark);
|
||||
color: var(--text-light);
|
||||
padding: 3rem 0;
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
margin-top: 4rem;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
margin-bottom: 0;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.version-1-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
||||
@@ -108,6 +173,20 @@
|
||||
.version-3-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
||||
.version-4-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
||||
.version-5-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.header {
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.version-card {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@@ -6,7 +6,7 @@
|
||||
<title>JPM Security & Services</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="style6.css">
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
|
88
style2.css
88
style2.css
@@ -4,13 +4,15 @@
|
||||
*/
|
||||
|
||||
:root {
|
||||
--primary-dark: #0a0e17; /* Dark navy/black from the card */
|
||||
--primary-light: #ffffff; /* White/silver from the card */
|
||||
--accent-gray: #3a3a3a; /* Gray from the card borders */
|
||||
--accent-silver: #e0e0e0; /* Lighter silver for accents */
|
||||
--text-dark: #333333;
|
||||
--primary-dark: #1a1f2c;
|
||||
--primary-light: #ffffff;
|
||||
--accent-color: #3498db;
|
||||
--accent-hover: #2980b9;
|
||||
--text-dark: #2c3e50;
|
||||
--text-light: #f8f9fa;
|
||||
--side-nav-width: 280px;
|
||||
--gradient-start: #2c3e50;
|
||||
--gradient-end: #3498db;
|
||||
}
|
||||
|
||||
/* General Styles */
|
||||
@@ -48,7 +50,7 @@ section {
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: var(--primary-dark);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
border: none;
|
||||
color: var(--primary-light);
|
||||
padding: 12px 30px;
|
||||
@@ -56,13 +58,29 @@ section {
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
transition: all 0.3s ease;
|
||||
border-radius: 0;
|
||||
border-radius: 30px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn-primary::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: var(--accent-gray);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.btn-primary:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
/* Side Navigation */
|
||||
@@ -72,33 +90,41 @@ section {
|
||||
left: 0;
|
||||
width: var(--side-nav-width);
|
||||
height: 100vh;
|
||||
background-color: var(--primary-dark);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
color: var(--primary-light);
|
||||
padding: 40px 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
z-index: 1000;
|
||||
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
margin-bottom: 60px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 5px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.logo-subtext {
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 2px;
|
||||
opacity: 0.8;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.side-nav nav ul li {
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.side-nav nav ul li a {
|
||||
@@ -108,11 +134,13 @@ section {
|
||||
padding: 8px 0;
|
||||
position: relative;
|
||||
opacity: 0.7;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.side-nav nav ul li a:hover,
|
||||
.side-nav nav ul li a.active {
|
||||
opacity: 1;
|
||||
transform: translateX(10px);
|
||||
}
|
||||
|
||||
.side-nav nav ul li a::after {
|
||||
@@ -150,11 +178,29 @@ section {
|
||||
border-radius: 50%;
|
||||
margin-right: 10px;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.social-icon::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
.social-icon:hover {
|
||||
background-color: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
.social-icon:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.nav-footer p {
|
||||
@@ -170,8 +216,9 @@ section {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
background-color: var(--primary-dark);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
color: var(--primary-light);
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.mobile-nav-header {
|
||||
@@ -188,6 +235,7 @@ section {
|
||||
height: 20px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
@@ -230,15 +278,26 @@ section {
|
||||
.mobile-menu {
|
||||
display: none;
|
||||
padding: 20px 0;
|
||||
background-color: var(--primary-dark);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
transform: translateY(-100%);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.mobile-menu.active {
|
||||
display: block;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.mobile-menu nav ul li {
|
||||
margin-bottom: 15px;
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.mobile-menu.active nav ul li {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.mobile-menu nav ul li a {
|
||||
@@ -246,6 +305,11 @@ section {
|
||||
padding: 10px 0;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.mobile-menu nav ul li a:hover {
|
||||
transform: translateX(10px);
|
||||
}
|
||||
|
||||
.mobile-social-links {
|
||||
|
396
style3.css
396
style3.css
@@ -1,15 +1,17 @@
|
||||
/*
|
||||
* JPM Security & Services - Style 3
|
||||
* A modern, full-screen design with parallax effects
|
||||
* A modern design with parallax effects and animations
|
||||
*/
|
||||
|
||||
:root {
|
||||
--primary-dark: #0a0e17; /* Dark navy/black from the card */
|
||||
--primary-light: #ffffff; /* White/silver from the card */
|
||||
--accent-gray: #3a3a3a; /* Gray from the card borders */
|
||||
--accent-silver: #e0e0e0; /* Lighter silver for accents */
|
||||
--text-dark: #333333;
|
||||
--primary-dark: #1a1f2c;
|
||||
--primary-light: #ffffff;
|
||||
--accent-color: #3498db;
|
||||
--accent-hover: #2980b9;
|
||||
--text-dark: #2c3e50;
|
||||
--text-light: #f8f9fa;
|
||||
--gradient-start: #2c3e50;
|
||||
--gradient-end: #3498db;
|
||||
}
|
||||
|
||||
/* General Styles */
|
||||
@@ -95,7 +97,7 @@ section {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: var(--primary-dark);
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@@ -108,107 +110,114 @@ section {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.preloader .logo-container {
|
||||
animation: pulse 1.5s infinite;
|
||||
.logo-container {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
.preloader .logo-text {
|
||||
font-size: 4rem;
|
||||
.logo-text {
|
||||
font-size: 3rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 8px;
|
||||
color: var(--primary-light);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.logo-container::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 50%;
|
||||
animation: ripple 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.1);
|
||||
opacity: 0.8;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ripple {
|
||||
0% {
|
||||
width: 0;
|
||||
height: 0;
|
||||
opacity: 0.5;
|
||||
}
|
||||
100% {
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.navbar {
|
||||
padding: 20px 0;
|
||||
transition: all 0.4s ease;
|
||||
background-color: transparent;
|
||||
background: rgba(26, 31, 44, 0.95);
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 1rem 0;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
background-color: var(--primary-dark);
|
||||
padding: 15px 0;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
||||
padding: 0.5rem 0;
|
||||
background: rgba(26, 31, 44, 0.98);
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-weight: 800;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.brand-text {
|
||||
font-weight: 800;
|
||||
color: var(--primary-light);
|
||||
letter-spacing: 3px;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.navbar-toggler:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link {
|
||||
color: var(--primary-light);
|
||||
.nav-link {
|
||||
color: var(--primary-light) !important;
|
||||
font-weight: 500;
|
||||
padding: 10px 15px;
|
||||
padding: 0.5rem 1rem !important;
|
||||
position: relative;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* Fix for active navigation link */
|
||||
.navbar-nav .nav-link.active {
|
||||
color: var(--primary-light);
|
||||
background-color: rgba(10, 14, 23, 0.7);
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link::after {
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background-color: var(--primary-light);
|
||||
background: var(--accent-color);
|
||||
transition: all 0.3s ease;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link:hover::after,
|
||||
.navbar-nav .nav-link.active::after {
|
||||
.nav-link:hover::after,
|
||||
.nav-link.active::after {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero-section {
|
||||
height: 100vh;
|
||||
background-color: var(--primary-dark);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.hero-section::before {
|
||||
@@ -218,14 +227,12 @@ section {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg') center/cover;
|
||||
opacity: 0.2;
|
||||
animation: scale 20s infinite alternate;
|
||||
animation: zoom 20s infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes scale {
|
||||
@keyframes zoom {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
@@ -237,50 +244,35 @@ section {
|
||||
.hero-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
text-align: center;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.hero-logo {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
margin: 0 auto 30px;
|
||||
background-image: url('ben-rosett-WdJkXFQ4VHY-unsplash.jpg');
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 5rem;
|
||||
font-size: 4rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 10px;
|
||||
margin-bottom: 0;
|
||||
color: var(--primary-light);
|
||||
margin-bottom: 1rem;
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
animation: fadeInUp 1s forwards 0.5s;
|
||||
animation: fadeInUp 1s ease forwards;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.5rem;
|
||||
letter-spacing: 5px;
|
||||
margin-bottom: 30px;
|
||||
font-weight: 400;
|
||||
color: var(--primary-light);
|
||||
opacity: 0.8;
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
animation: fadeInUp 1s forwards 0.7s;
|
||||
animation: fadeInUp 1s ease 0.2s forwards;
|
||||
}
|
||||
|
||||
.hero-text {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 40px;
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
color: var(--primary-light);
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
animation: fadeInUp 1s forwards 0.9s;
|
||||
animation: fadeInUp 1s ease 0.4s forwards;
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
@@ -290,59 +282,66 @@ section {
|
||||
}
|
||||
}
|
||||
|
||||
/* Scroll Down Animation */
|
||||
.scroll-down {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 2;
|
||||
animation: bounce 2s infinite;
|
||||
}
|
||||
|
||||
.scroll-down a {
|
||||
display: inline-block;
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 50px;
|
||||
border: 2px solid var(--primary-light);
|
||||
border-radius: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.scroll-down span {
|
||||
.scroll-down a span {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
top: 8px;
|
||||
left: 50%;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin-left: -12px;
|
||||
border-left: 2px solid var(--primary-light);
|
||||
border-bottom: 2px solid var(--primary-light);
|
||||
transform: rotate(-45deg);
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
margin-left: -3px;
|
||||
background-color: var(--primary-light);
|
||||
border-radius: 50%;
|
||||
animation: scrollDown 2s infinite;
|
||||
opacity: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.scroll-down span:nth-of-type(1) {
|
||||
animation-delay: 0s;
|
||||
.scroll-down a span:nth-child(2) {
|
||||
top: 20px;
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
|
||||
.scroll-down span:nth-of-type(2) {
|
||||
top: 16px;
|
||||
animation-delay: 0.15s;
|
||||
}
|
||||
|
||||
.scroll-down span:nth-of-type(3) {
|
||||
.scroll-down a span:nth-child(3) {
|
||||
top: 32px;
|
||||
animation-delay: 0.3s;
|
||||
animation-delay: 0.4s;
|
||||
}
|
||||
|
||||
@keyframes scrollDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(10px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
40% {
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
60% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -411,23 +410,18 @@ section {
|
||||
|
||||
/* Services Section */
|
||||
.services-section {
|
||||
padding: 100px 0;
|
||||
background-color: var(--primary-light);
|
||||
padding: 120px 0;
|
||||
}
|
||||
|
||||
.services-container {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.service-box {
|
||||
background-color: #f8f9fa;
|
||||
padding: 40px 30px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
|
||||
background: var(--primary-light);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
transition: all 0.3s ease;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -437,80 +431,80 @@ section {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
background-color: var(--primary-dark);
|
||||
transition: all 0.5s ease;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.service-box:hover::before {
|
||||
height: 100%;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
opacity: 0;
|
||||
transition: all 0.3s ease;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.service-box:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.service-box:hover h3,
|
||||
.service-box:hover p,
|
||||
.service-box:hover .service-link {
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.service-box:hover .service-icon {
|
||||
background-color: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
.service-box:hover::before {
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
background-color: rgba(10, 14, 23, 0.05);
|
||||
color: var(--primary-dark);
|
||||
font-size: 1.8rem;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
margin-bottom: 25px;
|
||||
transition: all 0.3s ease;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-icon i {
|
||||
font-size: 30px;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.service-box h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-box p {
|
||||
color: var(--text-dark);
|
||||
margin-bottom: 20px;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-link {
|
||||
color: var(--accent-color);
|
||||
font-weight: 600;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.service-link i {
|
||||
margin-left: 5px;
|
||||
transition: all 0.3s ease;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.service-link:hover {
|
||||
color: var(--accent-hover);
|
||||
}
|
||||
|
||||
.service-link:hover i {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
/* About Section */
|
||||
.about-section {
|
||||
position: relative;
|
||||
padding: 120px 0;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
/* Parallax Section */
|
||||
.parallax-section {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -520,20 +514,16 @@ section {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
background: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg') center/cover fixed;
|
||||
opacity: 0.1;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.parallax-bg::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(10, 14, 23, 0.85);
|
||||
/* About Section */
|
||||
.about-section {
|
||||
position: relative;
|
||||
padding: 120px 0;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.about-content {
|
||||
@@ -619,52 +609,64 @@ section {
|
||||
|
||||
/* Contact Section */
|
||||
.contact-section {
|
||||
padding: 120px 0;
|
||||
background-color: #f8f9fa;
|
||||
background-color: var(--primary-light);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.contact-info-box {
|
||||
background-color: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
padding: 50px 40px;
|
||||
height: 100%;
|
||||
border-radius: 5px;
|
||||
background: var(--primary-light);
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.contact-info-header {
|
||||
margin-bottom: 30px;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
color: var(--primary-light);
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.contact-info-header h3 {
|
||||
position: relative;
|
||||
padding-bottom: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.contact-info-header h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 50px;
|
||||
height: 2px;
|
||||
background-color: var(--primary-light);
|
||||
.contact-info-content {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.contact-info-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.contact-info-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.contact-info-item .icon {
|
||||
font-size: 1.5rem;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 20px;
|
||||
min-width: 30px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-info-item .icon i {
|
||||
font-size: 20px;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.contact-info-item .text h4 {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 5px;
|
||||
color: var(--text-dark);
|
||||
}
|
||||
|
||||
.contact-info-item .text p {
|
||||
color: var(--text-dark);
|
||||
opacity: 0.8;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.contact-social {
|
||||
@@ -907,7 +909,7 @@ textarea.form-control {
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 3.5rem;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
@@ -934,13 +936,11 @@ textarea.form-control {
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 3rem;
|
||||
letter-spacing: 5px;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1rem;
|
||||
letter-spacing: 3px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
@@ -970,7 +970,11 @@ textarea.form-control {
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.hero-title {
|
||||
font-size: 2.5rem;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.preloader .logo-text {
|
||||
|
850
style4.css
850
style4.css
File diff suppressed because it is too large
Load Diff
779
style5.css
779
style5.css
File diff suppressed because it is too large
Load Diff
590
style6.css
Normal file
590
style6.css
Normal file
@@ -0,0 +1,590 @@
|
||||
/*
|
||||
* JPM Security & Services - Style 6
|
||||
* A modern and sophisticated design with enhanced animations
|
||||
*/
|
||||
|
||||
:root {
|
||||
--primary-dark: #1a1f2c;
|
||||
--primary-light: #ffffff;
|
||||
--accent-color: #e63946;
|
||||
--accent-hover: #c1121f;
|
||||
--text-dark: #2b2d42;
|
||||
--text-light: #f8f9fa;
|
||||
--gradient-start: #1a1f2c;
|
||||
--gradient-end: #2b2d42;
|
||||
--border-color: #e9ecef;
|
||||
--bg-light: #f8f9fa;
|
||||
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
/* General Styles */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
color: var(--text-dark);
|
||||
background-color: var(--primary-light);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 100px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.navbar {
|
||||
padding: 20px 0;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
padding: 15px 0;
|
||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 2rem;
|
||||
font-weight: 800;
|
||||
color: var(--primary-light);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled .navbar-brand {
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: var(--primary-light) !important;
|
||||
font-weight: 600;
|
||||
padding: 10px 20px !important;
|
||||
position: relative;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled .nav-link {
|
||||
color: var(--primary-dark) !important;
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--accent-color);
|
||||
transition: var(--transition);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
height: 100vh;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
opacity: 0.1;
|
||||
animation: zoomIn 20s infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes zoomIn {
|
||||
from {
|
||||
transform: scale(1);
|
||||
}
|
||||
to {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
color: var(--primary-light);
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
animation: fadeInUp 1s ease forwards;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin-bottom: 30px;
|
||||
opacity: 0;
|
||||
animation: fadeIn 1s ease 0.5s forwards;
|
||||
}
|
||||
|
||||
.logo-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--accent-color);
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.logo-image::before {
|
||||
content: 'JPM';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 2rem;
|
||||
font-weight: 800;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 5rem;
|
||||
font-weight: 800;
|
||||
color: var(--primary-light);
|
||||
margin-bottom: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.hero .lead {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 30px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.btn {
|
||||
padding: 15px 35px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
border-radius: 30px;
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.btn::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
||||
transition: 0.5s;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.btn:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--accent-color);
|
||||
color: var(--primary-light);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: var(--accent-hover);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
|
||||
}
|
||||
|
||||
/* Services Section */
|
||||
.services {
|
||||
background-color: var(--bg-light);
|
||||
}
|
||||
|
||||
.section-header {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 2.5rem;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.section-header h2::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 50%;
|
||||
width: 50px;
|
||||
height: 3px;
|
||||
background: var(--accent-color);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background: var(--primary-light);
|
||||
padding: 40px 30px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
transition: var(--transition);
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.service-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||
opacity: 0;
|
||||
transition: var(--transition);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.service-card:hover::before {
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
.service-card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
background: var(--accent-color);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 25px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-icon i {
|
||||
font-size: 30px;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.service-card h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-card p {
|
||||
color: var(--text-dark);
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* About Section */
|
||||
.about {
|
||||
background-color: var(--primary-light);
|
||||
}
|
||||
|
||||
.about-image {
|
||||
height: 500px;
|
||||
background-image: url('ben-rosett-WdJkXFQ4VHY-unsplash.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
border-radius: 15px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-image::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
right: 20px;
|
||||
bottom: 20px;
|
||||
border: 3px solid var(--accent-color);
|
||||
border-radius: 15px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.values {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.values h3 {
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.values h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 0;
|
||||
width: 40px;
|
||||
height: 3px;
|
||||
background: var(--accent-color);
|
||||
}
|
||||
|
||||
.values ul li {
|
||||
margin-bottom: 15px;
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.values ul li::before {
|
||||
content: '→';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* Contact Section */
|
||||
.contact {
|
||||
background-color: var(--bg-light);
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
background: var(--primary-light);
|
||||
padding: 40px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.contact-info h3 {
|
||||
margin-bottom: 25px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.contact-info h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 0;
|
||||
width: 40px;
|
||||
height: 3px;
|
||||
background: var(--accent-color);
|
||||
}
|
||||
|
||||
.contact-info ul li {
|
||||
margin-bottom: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.contact-info ul li i {
|
||||
width: 30px;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: var(--accent-color);
|
||||
color: var(--primary-light);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.social-icon:hover {
|
||||
background: var(--accent-hover);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
.business-hours {
|
||||
background: var(--primary-light);
|
||||
padding: 40px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.business-hours h3 {
|
||||
margin-bottom: 25px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.business-hours h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 0;
|
||||
width: 40px;
|
||||
height: 3px;
|
||||
background: var(--accent-color);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
font-size: 2rem;
|
||||
font-weight: 800;
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.footer-tagline {
|
||||
font-size: 1rem;
|
||||
color: var(--accent-color);
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: var(--primary-light);
|
||||
opacity: 0.8;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
opacity: 1;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
@keyframes fadeInUp {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive Styles */
|
||||
@media (max-width: 1199.98px) {
|
||||
.hero h1 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
section {
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.about-image {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.hero {
|
||||
height: auto;
|
||||
padding: 150px 0 100px;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.contact-info,
|
||||
.business-hours {
|
||||
padding: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 12px 25px;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user