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">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary-dark: #0a0e17;
|
--primary-dark: #1a1f2c;
|
||||||
--primary-light: #ffffff;
|
--primary-light: #ffffff;
|
||||||
--accent-gray: #3a3a3a;
|
--accent-color: #2c3e50;
|
||||||
--accent-silver: #e0e0e0;
|
--accent-hover: #34495e;
|
||||||
|
--text-light: #f8f9fa;
|
||||||
|
--text-dark: #2c3e50;
|
||||||
|
--gradient-start: #2c3e50;
|
||||||
|
--gradient-end: #3498db;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
background-color: var(--primary-light);
|
background-color: #f8f9fa;
|
||||||
color: var(--primary-dark);
|
color: var(--text-dark);
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
color: var(--primary-light);
|
color: var(--text-light);
|
||||||
padding: 2rem 0;
|
padding: 4rem 0;
|
||||||
text-align: center;
|
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 {
|
.header h1 {
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
letter-spacing: 5px;
|
letter-spacing: 8px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
font-size: 3.5rem;
|
||||||
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header h2 {
|
.header h2 {
|
||||||
font-size: 1.2rem;
|
font-size: 1.4rem;
|
||||||
letter-spacing: 3px;
|
letter-spacing: 4px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1.5rem;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-card {
|
.version-card {
|
||||||
border: 1px solid #e9e9e9;
|
background: var(--primary-light);
|
||||||
border-radius: 5px;
|
border: none;
|
||||||
|
border-radius: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
|
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-card:hover {
|
.version-card:hover {
|
||||||
transform: translateY(-10px);
|
transform: translateY(-10px) scale(1.02);
|
||||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-img {
|
.version-img {
|
||||||
height: 200px;
|
height: 250px;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: top center;
|
background-position: center;
|
||||||
border-bottom: 1px solid #e9e9e9;
|
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 {
|
.version-content {
|
||||||
padding: 1.5rem;
|
padding: 2rem;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-content h3 {
|
.version-content h3 {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1.5rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
color: var(--accent-color);
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.version-content p {
|
||||||
|
color: #666;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-view {
|
.btn-view {
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
color: var(--primary-light);
|
color: var(--text-light);
|
||||||
border: none;
|
border: none;
|
||||||
padding: 10px 20px;
|
padding: 12px 25px;
|
||||||
border-radius: 0;
|
border-radius: 30px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 1rem;
|
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 {
|
.btn-view:hover {
|
||||||
background-color: var(--accent-gray);
|
transform: translateY(-2px);
|
||||||
color: var(--primary-light);
|
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-view:hover::before {
|
||||||
|
left: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
background-color: var(--primary-dark);
|
background: var(--primary-dark);
|
||||||
color: var(--primary-light);
|
color: var(--text-light);
|
||||||
padding: 2rem 0;
|
padding: 3rem 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 3rem;
|
margin-top: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer p {
|
.footer p {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-1-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
.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-3-img { background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg'); }
|
||||||
.version-4-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'); }
|
.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>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
<title>JPM Security & Services</title>
|
<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 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="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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
|
88
style2.css
88
style2.css
@@ -4,13 +4,15 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--primary-dark: #0a0e17; /* Dark navy/black from the card */
|
--primary-dark: #1a1f2c;
|
||||||
--primary-light: #ffffff; /* White/silver from the card */
|
--primary-light: #ffffff;
|
||||||
--accent-gray: #3a3a3a; /* Gray from the card borders */
|
--accent-color: #3498db;
|
||||||
--accent-silver: #e0e0e0; /* Lighter silver for accents */
|
--accent-hover: #2980b9;
|
||||||
--text-dark: #333333;
|
--text-dark: #2c3e50;
|
||||||
--text-light: #f8f9fa;
|
--text-light: #f8f9fa;
|
||||||
--side-nav-width: 280px;
|
--side-nav-width: 280px;
|
||||||
|
--gradient-start: #2c3e50;
|
||||||
|
--gradient-end: #3498db;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* General Styles */
|
/* General Styles */
|
||||||
@@ -48,7 +50,7 @@ section {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--primary-light);
|
color: var(--primary-light);
|
||||||
padding: 12px 30px;
|
padding: 12px 30px;
|
||||||
@@ -56,13 +58,29 @@ section {
|
|||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
transition: all 0.3s ease;
|
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 {
|
.btn-primary:hover {
|
||||||
background-color: var(--accent-gray);
|
|
||||||
transform: translateY(-3px);
|
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 */
|
/* Side Navigation */
|
||||||
@@ -72,33 +90,41 @@ section {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: var(--side-nav-width);
|
width: var(--side-nav-width);
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
color: var(--primary-light);
|
color: var(--primary-light);
|
||||||
padding: 40px 30px;
|
padding: 40px 30px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
|
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-container {
|
.logo-container {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-text {
|
.logo-text {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
letter-spacing: 5px;
|
letter-spacing: 5px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-subtext {
|
.logo-subtext {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-nav nav ul li {
|
.side-nav nav ul li {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-nav nav ul li a {
|
.side-nav nav ul li a {
|
||||||
@@ -108,11 +134,13 @@ section {
|
|||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-nav nav ul li a:hover,
|
.side-nav nav ul li a:hover,
|
||||||
.side-nav nav ul li a.active {
|
.side-nav nav ul li a.active {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
transform: translateX(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-nav nav ul li a::after {
|
.side-nav nav ul li a::after {
|
||||||
@@ -150,11 +178,29 @@ section {
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
transition: all 0.3s ease;
|
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 {
|
.social-icon:hover {
|
||||||
background-color: var(--primary-light);
|
background-color: var(--primary-light);
|
||||||
color: var(--primary-dark);
|
color: var(--primary-dark);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-icon:hover::before {
|
||||||
|
left: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-footer p {
|
.nav-footer p {
|
||||||
@@ -170,8 +216,9 @@ section {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
color: var(--primary-light);
|
color: var(--primary-light);
|
||||||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-nav-header {
|
.mobile-nav-header {
|
||||||
@@ -188,6 +235,7 @@ section {
|
|||||||
height: 20px;
|
height: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-toggle span {
|
.menu-toggle span {
|
||||||
@@ -230,15 +278,26 @@ section {
|
|||||||
.mobile-menu {
|
.mobile-menu {
|
||||||
display: none;
|
display: none;
|
||||||
padding: 20px 0;
|
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 {
|
.mobile-menu.active {
|
||||||
display: block;
|
display: block;
|
||||||
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-menu nav ul li {
|
.mobile-menu nav ul li {
|
||||||
margin-bottom: 15px;
|
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 {
|
.mobile-menu nav ul li a {
|
||||||
@@ -246,6 +305,11 @@ section {
|
|||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-menu nav ul li a:hover {
|
||||||
|
transform: translateX(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-social-links {
|
.mobile-social-links {
|
||||||
|
396
style3.css
396
style3.css
@@ -1,15 +1,17 @@
|
|||||||
/*
|
/*
|
||||||
* JPM Security & Services - Style 3
|
* JPM Security & Services - Style 3
|
||||||
* A modern, full-screen design with parallax effects
|
* A modern design with parallax effects and animations
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--primary-dark: #0a0e17; /* Dark navy/black from the card */
|
--primary-dark: #1a1f2c;
|
||||||
--primary-light: #ffffff; /* White/silver from the card */
|
--primary-light: #ffffff;
|
||||||
--accent-gray: #3a3a3a; /* Gray from the card borders */
|
--accent-color: #3498db;
|
||||||
--accent-silver: #e0e0e0; /* Lighter silver for accents */
|
--accent-hover: #2980b9;
|
||||||
--text-dark: #333333;
|
--text-dark: #2c3e50;
|
||||||
--text-light: #f8f9fa;
|
--text-light: #f8f9fa;
|
||||||
|
--gradient-start: #2c3e50;
|
||||||
|
--gradient-end: #3498db;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* General Styles */
|
/* General Styles */
|
||||||
@@ -95,7 +97,7 @@ section {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -108,107 +110,114 @@ section {
|
|||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preloader .logo-container {
|
.logo-container {
|
||||||
animation: pulse 1.5s infinite;
|
position: relative;
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
animation: pulse 2s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preloader .logo-text {
|
.logo-text {
|
||||||
font-size: 4rem;
|
font-size: 3rem;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
letter-spacing: 8px;
|
|
||||||
color: var(--primary-light);
|
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 {
|
@keyframes pulse {
|
||||||
0% {
|
0% {
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
opacity: 1;
|
|
||||||
}
|
}
|
||||||
50% {
|
50% {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
opacity: 0.8;
|
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
opacity: 1;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes ripple {
|
||||||
|
0% {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
width: 200%;
|
||||||
|
height: 200%;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Navigation */
|
/* Navigation */
|
||||||
.navbar {
|
.navbar {
|
||||||
padding: 20px 0;
|
background: rgba(26, 31, 44, 0.95);
|
||||||
transition: all 0.4s ease;
|
backdrop-filter: blur(10px);
|
||||||
background-color: transparent;
|
padding: 1rem 0;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar.scrolled {
|
.navbar.scrolled {
|
||||||
background-color: var(--primary-dark);
|
padding: 0.5rem 0;
|
||||||
padding: 15px 0;
|
background: rgba(26, 31, 44, 0.98);
|
||||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
font-weight: 800;
|
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
}
|
font-weight: 800;
|
||||||
|
|
||||||
.brand-text {
|
|
||||||
color: var(--primary-light);
|
color: var(--primary-light);
|
||||||
letter-spacing: 3px;
|
letter-spacing: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-toggler {
|
.nav-link {
|
||||||
border: none;
|
color: var(--primary-light) !important;
|
||||||
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);
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 10px 15px;
|
padding: 0.5rem 1rem !important;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fix for active navigation link */
|
.nav-link::after {
|
||||||
.navbar-nav .nav-link.active {
|
|
||||||
color: var(--primary-light);
|
|
||||||
background-color: rgba(10, 14, 23, 0.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-nav .nav-link::after {
|
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background-color: var(--primary-light);
|
background: var(--accent-color);
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-nav .nav-link:hover::after,
|
.nav-link:hover::after,
|
||||||
.navbar-nav .nav-link.active::after {
|
.nav-link.active::after {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hero Section */
|
/* Hero Section */
|
||||||
.hero-section {
|
.hero-section {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background-color: var(--primary-dark);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-section::before {
|
.hero-section::before {
|
||||||
@@ -218,14 +227,12 @@ section {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg');
|
background: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg') center/cover;
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
opacity: 0.2;
|
opacity: 0.2;
|
||||||
animation: scale 20s infinite alternate;
|
animation: zoom 20s infinite alternate;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes scale {
|
@keyframes zoom {
|
||||||
0% {
|
0% {
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
@@ -237,50 +244,35 @@ section {
|
|||||||
.hero-content {
|
.hero-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
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 {
|
.hero-title {
|
||||||
font-size: 5rem;
|
font-size: 4rem;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
letter-spacing: 10px;
|
color: var(--primary-light);
|
||||||
margin-bottom: 0;
|
margin-bottom: 1rem;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(30px);
|
transform: translateY(30px);
|
||||||
animation: fadeInUp 1s forwards 0.5s;
|
animation: fadeInUp 1s ease forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-subtitle {
|
.hero-subtitle {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
letter-spacing: 5px;
|
color: var(--primary-light);
|
||||||
margin-bottom: 30px;
|
opacity: 0.8;
|
||||||
font-weight: 400;
|
margin-bottom: 2rem;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(30px);
|
transform: translateY(30px);
|
||||||
animation: fadeInUp 1s forwards 0.7s;
|
animation: fadeInUp 1s ease 0.2s forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-text {
|
.hero-text {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
margin-bottom: 40px;
|
color: var(--primary-light);
|
||||||
max-width: 600px;
|
margin-bottom: 2rem;
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(30px);
|
transform: translateY(30px);
|
||||||
animation: fadeInUp 1s forwards 0.9s;
|
animation: fadeInUp 1s ease 0.4s forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fadeInUp {
|
@keyframes fadeInUp {
|
||||||
@@ -290,59 +282,66 @@ section {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Scroll Down Animation */
|
||||||
.scroll-down {
|
.scroll-down {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 30px;
|
bottom: 30px;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
z-index: 2;
|
animation: bounce 2s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-down a {
|
.scroll-down a {
|
||||||
display: inline-block;
|
display: block;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
border: 2px solid var(--primary-light);
|
||||||
|
border-radius: 15px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-down span {
|
.scroll-down a span {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 8px;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
width: 24px;
|
width: 6px;
|
||||||
height: 24px;
|
height: 6px;
|
||||||
margin-left: -12px;
|
margin-left: -3px;
|
||||||
border-left: 2px solid var(--primary-light);
|
background-color: var(--primary-light);
|
||||||
border-bottom: 2px solid var(--primary-light);
|
border-radius: 50%;
|
||||||
transform: rotate(-45deg);
|
|
||||||
animation: scrollDown 2s infinite;
|
animation: scrollDown 2s infinite;
|
||||||
opacity: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-down span:nth-of-type(1) {
|
.scroll-down a span:nth-child(2) {
|
||||||
animation-delay: 0s;
|
top: 20px;
|
||||||
|
animation-delay: 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-down span:nth-of-type(2) {
|
.scroll-down a span:nth-child(3) {
|
||||||
top: 16px;
|
|
||||||
animation-delay: 0.15s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.scroll-down span:nth-of-type(3) {
|
|
||||||
top: 32px;
|
top: 32px;
|
||||||
animation-delay: 0.3s;
|
animation-delay: 0.4s;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes scrollDown {
|
@keyframes scrollDown {
|
||||||
0% {
|
0% {
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
opacity: 0;
|
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 */
|
||||||
.services-section {
|
.services-section {
|
||||||
|
padding: 100px 0;
|
||||||
background-color: var(--primary-light);
|
background-color: var(--primary-light);
|
||||||
padding: 120px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.services-container {
|
|
||||||
margin-top: 50px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-box {
|
.service-box {
|
||||||
background-color: #f8f9fa;
|
background: var(--primary-light);
|
||||||
padding: 40px 30px;
|
padding: 30px;
|
||||||
border-radius: 5px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -437,80 +431,80 @@ section {
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 0;
|
|
||||||
background-color: var(--primary-dark);
|
|
||||||
transition: all 0.5s ease;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.service-box:hover::before {
|
|
||||||
height: 100%;
|
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 {
|
.service-box:hover {
|
||||||
transform: translateY(-10px);
|
transform: translateY(-10px);
|
||||||
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-box:hover h3,
|
.service-box:hover::before {
|
||||||
.service-box:hover p,
|
opacity: 0.05;
|
||||||
.service-box:hover .service-link {
|
|
||||||
color: var(--primary-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.service-box:hover .service-icon {
|
|
||||||
background-color: var(--primary-light);
|
|
||||||
color: var(--primary-dark);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-icon {
|
.service-icon {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
background-color: rgba(10, 14, 23, 0.05);
|
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
|
||||||
color: var(--primary-dark);
|
border-radius: 50%;
|
||||||
font-size: 1.8rem;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border-radius: 50%;
|
margin-bottom: 20px;
|
||||||
margin-bottom: 25px;
|
position: relative;
|
||||||
transition: all 0.3s ease;
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-icon i {
|
||||||
|
font-size: 30px;
|
||||||
|
color: var(--primary-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-box h3 {
|
.service-box h3 {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
transition: all 0.3s ease;
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-box p {
|
.service-box p {
|
||||||
|
color: var(--text-dark);
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
transition: all 0.3s ease;
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-link {
|
.service-link {
|
||||||
|
color: var(--accent-color);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-link i {
|
.service-link i {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
transition: all 0.3s ease;
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-link:hover {
|
||||||
|
color: var(--accent-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-link:hover i {
|
.service-link:hover i {
|
||||||
transform: translateX(5px);
|
transform: translateX(5px);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* About Section */
|
/* Parallax Section */
|
||||||
.about-section {
|
|
||||||
position: relative;
|
|
||||||
padding: 120px 0;
|
|
||||||
color: var(--primary-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.parallax-section {
|
.parallax-section {
|
||||||
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -520,20 +514,16 @@ section {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-image: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg');
|
background: url('cytonn-photography-n95VMLxqM2I-unsplash.jpg') center/cover fixed;
|
||||||
background-size: cover;
|
opacity: 0.1;
|
||||||
background-position: center;
|
transform: translateZ(0);
|
||||||
background-attachment: fixed;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.parallax-bg::before {
|
/* About Section */
|
||||||
content: '';
|
.about-section {
|
||||||
position: absolute;
|
position: relative;
|
||||||
top: 0;
|
padding: 120px 0;
|
||||||
left: 0;
|
color: var(--primary-light);
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: rgba(10, 14, 23, 0.85);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-content {
|
.about-content {
|
||||||
@@ -619,52 +609,64 @@ section {
|
|||||||
|
|
||||||
/* Contact Section */
|
/* Contact Section */
|
||||||
.contact-section {
|
.contact-section {
|
||||||
padding: 120px 0;
|
background-color: var(--primary-light);
|
||||||
background-color: #f8f9fa;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-info-box {
|
.contact-info-box {
|
||||||
background-color: var(--primary-dark);
|
background: var(--primary-light);
|
||||||
color: var(--primary-light);
|
border-radius: 15px;
|
||||||
padding: 50px 40px;
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||||
height: 100%;
|
overflow: hidden;
|
||||||
border-radius: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-info-header {
|
.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 {
|
.contact-info-content {
|
||||||
position: relative;
|
padding: 30px;
|
||||||
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-item {
|
.contact-info-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contact-info-item:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.contact-info-item .icon {
|
.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;
|
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 {
|
.contact-info-item .text h4 {
|
||||||
font-size: 1.2rem;
|
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
color: var(--text-dark);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-info-item .text p {
|
||||||
|
color: var(--text-dark);
|
||||||
|
opacity: 0.8;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-social {
|
.contact-social {
|
||||||
@@ -907,7 +909,7 @@ textarea.form-control {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.hero-title {
|
.hero-title {
|
||||||
font-size: 3.5rem;
|
font-size: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-subtitle {
|
.hero-subtitle {
|
||||||
@@ -934,13 +936,11 @@ textarea.form-control {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.hero-title {
|
.hero-title {
|
||||||
font-size: 3rem;
|
font-size: 2.5rem;
|
||||||
letter-spacing: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-subtitle {
|
.hero-subtitle {
|
||||||
font-size: 1rem;
|
font-size: 1.2rem;
|
||||||
letter-spacing: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title h2 {
|
.section-title h2 {
|
||||||
@@ -970,7 +970,11 @@ textarea.form-control {
|
|||||||
|
|
||||||
@media (max-width: 575.98px) {
|
@media (max-width: 575.98px) {
|
||||||
.hero-title {
|
.hero-title {
|
||||||
font-size: 2.5rem;
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-subtitle {
|
||||||
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preloader .logo-text {
|
.preloader .logo-text {
|
||||||
|
858
style4.css
858
style4.css
File diff suppressed because it is too large
Load Diff
783
style5.css
783
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