4601 lines
96 KiB
CSS
4601 lines
96 KiB
CSS
:root {
|
|
--primary-color: #2c3e50;
|
|
--secondary-color: #3498db;
|
|
--accent-color: #e74c3c;
|
|
--light-bg: #ecf0f1;
|
|
--dark-bg: #181a1b;
|
|
--section-bg: #f7f9fa;
|
|
--text-color: #222;
|
|
--card-bg: #fff;
|
|
--footer-bg: var(--primary-color);
|
|
}
|
|
[data-theme="dark"] {
|
|
--primary-color: #181a1b;
|
|
--secondary-color: #3498db;
|
|
--accent-color: #e74c3c;
|
|
--light-bg: #23272b;
|
|
--dark-bg: #111213;
|
|
--section-bg: #23272b;
|
|
--text-color: #bdc3c7;
|
|
--card-bg: #181a1b;
|
|
--footer-bg: #111213;
|
|
}
|
|
body {
|
|
background: var(--light-bg);
|
|
color: var(--text-color);
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
padding-top: 63px; /* Add padding to account for fixed navbar */
|
|
}
|
|
body > *:not(.navbar) {
|
|
opacity: 0;
|
|
transition: opacity 0.7s ease;
|
|
}
|
|
body.page-loaded > *:not(.navbar) {
|
|
opacity: 1;
|
|
}
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1030;
|
|
background-color: var(--footer-bg) !important;
|
|
opacity: 1 !important; /* Keep navbar always visible */
|
|
}
|
|
.navbar, .footer {
|
|
background-color: var(--footer-bg) !important;
|
|
}
|
|
.card, .service-card {
|
|
background: var(--card-bg);
|
|
color: var(--text-color);
|
|
}
|
|
.navbar-brand {
|
|
font-weight: bold;
|
|
font-size: 1.5rem;
|
|
}
|
|
.hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
color: white;
|
|
padding: 100px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.service-card {
|
|
transition: transform 0.3s ease;
|
|
border: none;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
.language-selector {
|
|
position: relative;
|
|
}
|
|
.language-dropdown {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
background: white;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
z-index: 1000;
|
|
min-width: 150px;
|
|
}
|
|
[data-theme="dark"] .language-dropdown {
|
|
background: var(--card-bg);
|
|
color: var(--text-color);
|
|
border: 1px solid #333;
|
|
}
|
|
.language-dropdown a {
|
|
display: block;
|
|
padding: 10px 15px;
|
|
text-decoration: none;
|
|
color: var(--primary-color);
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
[data-theme="dark"] .language-dropdown a {
|
|
color: var(--text-color);
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
.language-dropdown a:hover {
|
|
background-color: var(--light-bg);
|
|
}
|
|
.footer {
|
|
color: white;
|
|
padding: 40px 0 20px;
|
|
}
|
|
.btn-primary {
|
|
background-color: var(--secondary-color);
|
|
border-color: var(--secondary-color);
|
|
}
|
|
.btn-primary:hover {
|
|
background-color: #2980b9;
|
|
border-color: #2980b9;
|
|
}
|
|
.btn-toggle-dark {
|
|
background: none;
|
|
border: none;
|
|
color: #fff;
|
|
font-size: 1.3rem;
|
|
margin-left: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
[data-theme="dark"] .btn-toggle-dark {
|
|
color: #f5f6fa;
|
|
}
|
|
/* Bootstrap color utility overrides for theme support */
|
|
.bg-light {
|
|
background-color: var(--section-bg) !important;
|
|
}
|
|
.bg-primary {
|
|
background-color: var(--secondary-color) !important;
|
|
color: #fff !important;
|
|
}
|
|
.bg-secondary {
|
|
background-color: var(--primary-color) !important;
|
|
color: #fff !important;
|
|
}
|
|
.text-primary {
|
|
color: var(--secondary-color) !important;
|
|
}
|
|
.text-secondary {
|
|
color: var(--primary-color) !important;
|
|
}
|
|
.text-muted {
|
|
color: #888 !important;
|
|
}
|
|
.fade-in-up {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
|
|
}
|
|
.fade-in-up.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* IT-like Hero Background Animation */
|
|
.hero-animation-container {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 50%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
opacity: 0;
|
|
animation: fadeInHero 2s ease-out forwards;
|
|
}
|
|
|
|
@keyframes fadeInHero {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.floating-element {
|
|
position: absolute;
|
|
color: rgba(255, 255, 255, 0.25);
|
|
font-size: 1.5rem;
|
|
animation: backgroundFloat 6s ease-in-out infinite;
|
|
opacity: 0;
|
|
animation-delay: 2s, 2s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
.floating-element:nth-child(1) {
|
|
top: 20%;
|
|
left: 10%;
|
|
right: auto;
|
|
animation-delay: 2s, 2s;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.floating-element:nth-child(2) {
|
|
top: 35%;
|
|
left: 80%;
|
|
right: auto;
|
|
animation-delay: 2.5s, 2.5s;
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.floating-element:nth-child(3) {
|
|
top: 50%;
|
|
left: 15%;
|
|
right: auto;
|
|
animation-delay: 3s, 3s;
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.floating-element:nth-child(4) {
|
|
top: 65%;
|
|
left: 85%;
|
|
right: auto;
|
|
animation-delay: 3.5s, 3.5s;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.floating-element:nth-child(5) {
|
|
top: 80%;
|
|
left: 25%;
|
|
right: auto;
|
|
animation-delay: 4s, 4s;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.floating-element:nth-child(6) {
|
|
top: 15%;
|
|
left: 75%;
|
|
right: auto;
|
|
animation-delay: 4.5s, 4.5s;
|
|
font-size: 1.7rem;
|
|
}
|
|
|
|
.floating-element:nth-child(7) {
|
|
top: 70%;
|
|
left: 5%;
|
|
right: auto;
|
|
animation-delay: 5s, 5s;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.floating-element:nth-child(8) {
|
|
top: 25%;
|
|
left: 90%;
|
|
right: auto;
|
|
animation-delay: 5.5s, 5.5s;
|
|
font-size: 1.9rem;
|
|
}
|
|
|
|
@keyframes backgroundFloat {
|
|
0% {
|
|
transform: translateY(0px) rotate(0deg);
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 0.25;
|
|
}
|
|
25% {
|
|
transform: translateY(-20px) rotate(5deg);
|
|
opacity: 0.25;
|
|
}
|
|
50% {
|
|
transform: translateY(-10px) rotate(-3deg);
|
|
opacity: 0.25;
|
|
}
|
|
75% {
|
|
transform: translateY(-15px) rotate(2deg);
|
|
opacity: 0.25;
|
|
}
|
|
100% {
|
|
transform: translateY(0px) rotate(0deg);
|
|
opacity: 0.25;
|
|
}
|
|
}
|
|
|
|
.code-particle {
|
|
position: absolute;
|
|
color: rgba(52, 152, 219, 0.6);
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
animation: codeFlow 8s linear infinite;
|
|
opacity: 0;
|
|
animation-delay: 2.5s, 2.5s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
.code-particle:nth-child(9) {
|
|
top: 10%;
|
|
left: 20%;
|
|
right: auto;
|
|
}
|
|
|
|
.code-particle:nth-child(10) {
|
|
top: 30%;
|
|
left: 70%;
|
|
right: auto;
|
|
}
|
|
|
|
.code-particle:nth-child(11) {
|
|
top: 60%;
|
|
left: 15%;
|
|
right: auto;
|
|
}
|
|
|
|
.code-particle:nth-child(12) {
|
|
top: 85%;
|
|
left: 80%;
|
|
right: auto;
|
|
}
|
|
|
|
@keyframes codeFlow {
|
|
0% {
|
|
transform: translateY(100px) translateX(0);
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 0.9;
|
|
}
|
|
90% {
|
|
opacity: 0.9;
|
|
}
|
|
100% {
|
|
transform: translateY(-100px) translateX(20px);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.circuit-line {
|
|
position: absolute;
|
|
background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.4), transparent);
|
|
height: 1px;
|
|
animation: circuitPulse 4s ease-in-out infinite;
|
|
opacity: 0;
|
|
animation-delay: 3s, 3s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
.circuit-line:nth-child(13) {
|
|
top: 25%;
|
|
right: 0;
|
|
width: 60%;
|
|
animation-delay: 3s, 3s;
|
|
}
|
|
|
|
.circuit-line:nth-child(14) {
|
|
top: 55%;
|
|
right: 0;
|
|
width: 40%;
|
|
animation-delay: 3.5s, 3.5s;
|
|
}
|
|
|
|
.circuit-line:nth-child(15) {
|
|
top: 75%;
|
|
right: 0;
|
|
width: 70%;
|
|
animation-delay: 4s, 4s;
|
|
}
|
|
|
|
@keyframes circuitPulse {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scaleX(0);
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
transform: scaleX(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform: scaleX(0);
|
|
}
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
/* Responsive adjustments for animation */
|
|
@media (max-width: 768px) {
|
|
.hero-animation-container {
|
|
width: 100%;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.floating-element {
|
|
display: none !important;
|
|
}
|
|
|
|
.code-particle {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Ensure text content has proper spacing from floating elements */
|
|
.hero-text-content {
|
|
position: relative;
|
|
z-index: 3;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
/* Reduce animation intensity on mobile for better performance */
|
|
.floating-element {
|
|
animation-duration: 8s;
|
|
}
|
|
|
|
.code-particle {
|
|
animation-duration: 10s;
|
|
}
|
|
}
|
|
|
|
/* Process Section Styling */
|
|
.process-step {
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
|
|
.process-step:hover {
|
|
/* Removed translateY(-10px) */
|
|
}
|
|
|
|
.process-icon {
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.process-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: left 0.5s ease;
|
|
}
|
|
|
|
.process-step:hover .process-icon {
|
|
transform: scale(1.1);
|
|
box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4) !important;
|
|
}
|
|
|
|
.process-step:hover .process-icon::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.process-content {
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.process-step:hover .process-content {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Process connecting line */
|
|
.process-connecting-line {
|
|
position: absolute;
|
|
top: 40px;
|
|
left: 12.5%;
|
|
right: 12.5%;
|
|
height: 2px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.process-connecting-line::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color) 50%, rgba(52, 152, 219, 0.3) 75%, transparent);
|
|
}
|
|
|
|
[data-theme="dark"] .process-connecting-line::before {
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
}
|
|
|
|
/* Process step numbers for mobile */
|
|
@media (max-width: 767px) {
|
|
.process-icon::after {
|
|
content: attr(data-step);
|
|
position: absolute;
|
|
top: -8px;
|
|
right: -8px;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
border-radius: 50%;
|
|
width: 24px;
|
|
height: 24px;
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
|
|
}
|
|
}
|
|
|
|
/* Enhanced Service Cards Styling */
|
|
.service-card-enhanced {
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-card-enhanced::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color) 50%, rgba(52, 152, 219, 0.3) 75%, transparent);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.service-card-enhanced:hover {
|
|
/* Removed translateY(-10px) */
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.service-card-enhanced:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.service-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.service-icon {
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.service-icon-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transition: all 0.3s ease;
|
|
z-index: 0;
|
|
}
|
|
|
|
.service-card-enhanced:hover .service-icon-wrapper::after {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
.service-card-enhanced:hover .service-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.service-badge {
|
|
display: inline-block;
|
|
}
|
|
|
|
.service-badge .badge {
|
|
font-size: 0.8rem;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 20px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.service-feature-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.service-feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 0;
|
|
transition: all 0.2s ease;
|
|
border-radius: 8px;
|
|
padding-left: 0.5rem;
|
|
margin-left: -0.5rem;
|
|
}
|
|
|
|
.service-feature-item:hover {
|
|
background: rgba(52, 152, 219, 0.05);
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.service-feature-item i {
|
|
font-size: 1.1rem;
|
|
min-width: 20px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.service-feature-item:hover i {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.service-footer {
|
|
padding-top: 1rem;
|
|
border-top: 1px solid rgba(0,0,0,0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .service-footer {
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
}
|
|
|
|
.service-footer .btn {
|
|
transition: all 0.3s ease;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.service-footer .btn:hover {
|
|
/* Removed translateY(-2px) */
|
|
box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
/* Service card responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.service-card-enhanced {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.service-feature-item {
|
|
padding: 0.75rem 0;
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 3rem !important;
|
|
}
|
|
}
|
|
|
|
/* CTA Section Background Animation */
|
|
.cta-section {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-bg-animation {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cta-particle {
|
|
position: absolute;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 50%;
|
|
animation: ctaFloat 8s ease-in-out infinite;
|
|
}
|
|
|
|
.cta-particle-1 {
|
|
width: 8px;
|
|
height: 8px;
|
|
top: 20%;
|
|
left: 10%;
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.cta-particle-2 {
|
|
width: 12px;
|
|
height: 12px;
|
|
top: 60%;
|
|
left: 80%;
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
.cta-particle-3 {
|
|
width: 6px;
|
|
height: 6px;
|
|
top: 80%;
|
|
left: 20%;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
.cta-particle-4 {
|
|
width: 10px;
|
|
height: 10px;
|
|
top: 30%;
|
|
left: 70%;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
.cta-particle-5 {
|
|
width: 14px;
|
|
height: 14px;
|
|
top: 70%;
|
|
left: 60%;
|
|
animation-delay: 3s;
|
|
}
|
|
|
|
@keyframes ctaFloat {
|
|
0%, 100% {
|
|
transform: translateY(0px) translateX(0px);
|
|
opacity: 0.3;
|
|
}
|
|
25% {
|
|
transform: translateY(-20px) translateX(10px);
|
|
opacity: 0.6;
|
|
}
|
|
50% {
|
|
transform: translateY(-10px) translateX(-5px);
|
|
opacity: 0.4;
|
|
}
|
|
75% {
|
|
transform: translateY(-15px) translateX(15px);
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
.cta-btn {
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-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: left 0.5s ease;
|
|
}
|
|
|
|
.cta-btn:hover {
|
|
/* Removed translateY(-2px) */
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.cta-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
/* CTA responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.cta-particle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
[data-theme="dark"] .service-card-enhanced::before {
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
}
|
|
|
|
/* Enhanced Home Page Styling */
|
|
|
|
/* Hero Section Enhancements */
|
|
.hero-text-content {
|
|
animation: fadeInUp 1s ease-out;
|
|
}
|
|
|
|
.hero-badge .badge {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
border-radius: 25px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3.5rem;
|
|
line-height: 1.2;
|
|
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.hero-description {
|
|
font-size: 1.25rem;
|
|
line-height: 1.6;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.hero-stats {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 15px;
|
|
padding: 1.5rem;
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.stat-item h3 {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.hero-buttons .btn {
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.hero-buttons .btn:hover {
|
|
/* Removed translateY(-2px) */
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.hero-visual {
|
|
position: relative;
|
|
animation: fadeInRight 1s ease-out 0.3s both;
|
|
}
|
|
|
|
.hero-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.hero-main-icon {
|
|
font-size: 8rem;
|
|
opacity: 0.9;
|
|
position: relative;
|
|
z-index: 2;
|
|
animation: heroFloat 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes heroFloat {
|
|
0%, 100% {
|
|
transform: translateY(0px);
|
|
opacity: 0.9;
|
|
}
|
|
25% {
|
|
transform: translateY(-10px);
|
|
opacity: 0.9;
|
|
}
|
|
50% {
|
|
transform: translateY(-5px);
|
|
opacity: 0.9;
|
|
}
|
|
75% {
|
|
transform: translateY(-8px);
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
|
|
.hero-icon-glow {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 200px;
|
|
height: 200px;
|
|
background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
animation: pulse 4s ease-in-out infinite;
|
|
}
|
|
|
|
/* Features Section */
|
|
.features-section {
|
|
position: relative;
|
|
background: linear-gradient(135deg, var(--section-bg) 0%, #f8f9fa 100%);
|
|
}
|
|
|
|
[data-theme="dark"] .features-section {
|
|
background: var(--section-bg);
|
|
}
|
|
|
|
.section-header {
|
|
position: relative;
|
|
}
|
|
|
|
.section-header::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 60px;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.feature-card {
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
/* Removed translateY(-10px) */
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.feature-card .card-body {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
align-items: center !important;
|
|
justify-content: flex-start !important;
|
|
text-align: center !important;
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
.feature-icon-wrapper {
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 3rem;
|
|
transition: all 0.3s ease;
|
|
display: inline-block;
|
|
}
|
|
|
|
.feature-card:hover .feature-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.feature-icon-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.feature-card:hover .feature-icon-wrapper::after {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
.features-section .feature-icon {
|
|
color: #fff !important;
|
|
}
|
|
|
|
/* Services Preview Section */
|
|
.services-preview-section {
|
|
background: var(--light-bg);
|
|
}
|
|
|
|
/* Expertise Section */
|
|
.expertise-section {
|
|
background: var(--light-bg);
|
|
}
|
|
|
|
.expertise-card {
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.expertise-card:hover {
|
|
/* Removed translateY(-10px) */
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.expertise-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color) 50%, rgba(52, 152, 219, 0.3) 75%, transparent);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.expertise-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
[data-theme="dark"] .expertise-card::before {
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
}
|
|
|
|
.expertise-header {
|
|
text-align: center;
|
|
}
|
|
|
|
.expertise-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.expertise-icon {
|
|
font-size: 3rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.expertise-card:hover .expertise-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.expertise-icon-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.expertise-card:hover .expertise-icon-wrapper::after {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
.expertise-features {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.expertise-feature {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.75rem 0;
|
|
transition: all 0.2s ease;
|
|
border-radius: 8px;
|
|
padding-left: 0.5rem;
|
|
margin-left: -0.5rem;
|
|
}
|
|
|
|
.expertise-feature:hover {
|
|
background: rgba(52, 152, 219, 0.05);
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.expertise-feature i {
|
|
font-size: 1.1rem;
|
|
min-width: 20px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.expertise-feature:hover i {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
/* Responsive adjustments for expertise section */
|
|
@media (max-width: 768px) {
|
|
.expertise-icon {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.expertise-feature {
|
|
padding: 0.5rem 0;
|
|
}
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInRight {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateX(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% {
|
|
transform: translate(-50%, -50%) scale(1);
|
|
opacity: 0.5;
|
|
}
|
|
50% {
|
|
transform: translate(-50%, -50%) scale(1.1);
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
/* Responsive adjustments for home page */
|
|
@media (max-width: 768px) {
|
|
.hero-title {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero-stats {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.stat-item h3 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.hero-main-icon {
|
|
font-size: 6rem;
|
|
}
|
|
|
|
.hero-icon-glow {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.feature-icon-wrapper {
|
|
text-align: center;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.service-preview-icon {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
/* Improve mobile hero layout */
|
|
.hero-section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.hero-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-text-content {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.hero-buttons {
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 1rem !important;
|
|
}
|
|
|
|
.hero-buttons .btn {
|
|
width: 100%;
|
|
max-width: 250px;
|
|
}
|
|
|
|
/* Adjust hero visual positioning on mobile */
|
|
.hero-visual {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.hero-icon-wrapper {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
/* About Page Enhanced Styling */
|
|
|
|
/* About Hero Section */
|
|
.about-hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.about-hero-content h1 {
|
|
font-size: 3.5rem;
|
|
line-height: 1.2;
|
|
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.about-stats {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 15px;
|
|
padding: 1.5rem;
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.about-stats .stat-item h3 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.about-stats .stat-item small {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.about-hero-visual {
|
|
position: relative;
|
|
animation: fadeInRight 1s ease-out 0.3s both;
|
|
}
|
|
|
|
.about-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.about-main-icon {
|
|
font-size: 8rem;
|
|
opacity: 0.9;
|
|
position: relative;
|
|
z-index: 2;
|
|
animation: heroFloat 6s ease-in-out infinite;
|
|
}
|
|
|
|
.about-icon-glow {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 200px;
|
|
height: 200px;
|
|
background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
animation: pulse 4s ease-in-out infinite;
|
|
}
|
|
|
|
/* Story Section */
|
|
.story-section {
|
|
background: var(--light-bg);
|
|
}
|
|
|
|
.section-badge {
|
|
display: inline-block;
|
|
}
|
|
|
|
.section-badge .badge {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
border-radius: 25px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.story-features {
|
|
background: rgba(52, 152, 219, 0.05);
|
|
border-radius: 15px;
|
|
padding: 2rem;
|
|
border: 1px solid rgba(52, 152, 219, 0.1);
|
|
}
|
|
|
|
.story-feature {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.story-feature i {
|
|
font-size: 1.2rem;
|
|
margin-right: 0.75rem;
|
|
}
|
|
|
|
/* Mission Card */
|
|
.mission-card {
|
|
background: linear-gradient(135deg, var(--card-bg) 0%, rgba(52, 152, 219, 0.05) 100%);
|
|
border-radius: 20px;
|
|
padding: 3rem;
|
|
text-align: center;
|
|
border: 1px solid rgba(52, 152, 219, 0.1);
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mission-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
}
|
|
|
|
.mission-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.mission-icon {
|
|
font-size: 4rem;
|
|
color: var(--secondary-color);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.mission-stats {
|
|
border-top: 1px solid rgba(0,0,0,0.1);
|
|
padding-top: 2rem;
|
|
}
|
|
|
|
.mission-stat h4 {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
/* Values Section */
|
|
.values-section {
|
|
background: var(--section-bg);
|
|
}
|
|
|
|
.value-card {
|
|
background: var(--card-bg);
|
|
border-radius: 20px;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.value-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.value-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.value-card:hover {
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.value-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.value-icon {
|
|
font-size: 3rem;
|
|
color: var(--secondary-color);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.value-card:hover .value-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.value-icon-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.value-card:hover .value-icon-wrapper::after {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
/* Team Section */
|
|
.team-section {
|
|
background: var(--light-bg);
|
|
}
|
|
|
|
.team-card {
|
|
background: var(--card-bg);
|
|
border-radius: 20px;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.team-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.team-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.team-card:hover {
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.avatar-wrapper {
|
|
width: 120px;
|
|
height: 120px;
|
|
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.avatar-wrapper::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.6s ease;
|
|
}
|
|
|
|
.team-card:hover .avatar-wrapper::before {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.avatar-icon {
|
|
font-size: 3rem;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.team-social {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.social-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
color: var(--secondary-color);
|
|
border-radius: 50%;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-link:hover {
|
|
background: var(--secondary-color);
|
|
color: white;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* About Me Section */
|
|
.about-me-section {
|
|
background: var(--light-bg);
|
|
}
|
|
|
|
.about-me-card {
|
|
background: var(--card-bg);
|
|
border-radius: 20px;
|
|
padding: 3rem;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.about-me-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.about-me-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.about-me-card:hover {
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.about-me-avatar {
|
|
position: relative;
|
|
}
|
|
|
|
.about-me-avatar .avatar-wrapper {
|
|
width: 150px;
|
|
height: 150px;
|
|
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.about-me-avatar .avatar-wrapper::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.6s ease;
|
|
}
|
|
|
|
.about-me-card:hover .about-me-avatar .avatar-wrapper::before {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.about-me-avatar .avatar-icon {
|
|
font-size: 4rem;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.about-me-skills {
|
|
background: rgba(52, 152, 219, 0.05);
|
|
border-radius: 15px;
|
|
padding: 1.5rem;
|
|
border: 1px solid rgba(52, 152, 219, 0.1);
|
|
}
|
|
|
|
.skill-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.skill-item i {
|
|
font-size: 1.1rem;
|
|
margin-right: 0.75rem;
|
|
}
|
|
|
|
.about-me-contact {
|
|
border-top: 1px solid rgba(0,0,0,0.1);
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.about-me-contact .social-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 45px;
|
|
height: 45px;
|
|
background: rgba(52, 152, 219, 0.1);
|
|
color: var(--secondary-color);
|
|
border-radius: 50%;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.about-me-contact .social-link:hover {
|
|
background: var(--secondary-color);
|
|
color: white;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Why Choose Section */
|
|
.why-choose-section {
|
|
background: var(--section-bg);
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 2rem;
|
|
background: var(--card-bg);
|
|
border-radius: 15px;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.feature-item:hover {
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.feature-icon-wrapper {
|
|
flex-shrink: 0;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
|
|
border-radius: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 1.5rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.feature-icon-wrapper::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.6s ease;
|
|
}
|
|
|
|
.feature-item:hover .feature-icon-wrapper::before {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 1.5rem;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.feature-content {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
/* Counter Animation */
|
|
.counter {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Responsive adjustments for about page */
|
|
@media (max-width: 768px) {
|
|
.about-hero-content h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.about-stats {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.about-stats .stat-item h3 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.about-main-icon {
|
|
font-size: 6rem;
|
|
}
|
|
|
|
.about-icon-glow {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.mission-card {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.value-card,
|
|
.team-card,
|
|
.about-me-card {
|
|
padding: 2rem 1.5rem;
|
|
}
|
|
|
|
.feature-item {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.feature-icon-wrapper {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.about-me-avatar .avatar-wrapper {
|
|
width: 120px;
|
|
height: 120px;
|
|
}
|
|
|
|
.about-me-avatar .avatar-icon {
|
|
font-size: 3rem;
|
|
}
|
|
}
|
|
|
|
/* Contact Page Styles */
|
|
.contact-hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
color: white;
|
|
padding: 100px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.services-hero-section {
|
|
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
|
|
color: white;
|
|
padding: 100px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.contact-hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.services-hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.contact-hero-visual {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.services-hero-visual {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.contact-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.services-icon-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.contact-main-icon {
|
|
font-size: 8rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
animation: heroFloat 3s ease-in-out infinite;
|
|
}
|
|
|
|
.services-main-icon {
|
|
font-size: 8rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
animation: heroFloat 3s ease-in-out infinite;
|
|
}
|
|
|
|
.contact-icon-glow {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 200px;
|
|
height: 200px;
|
|
background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
.services-icon-glow {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 200px;
|
|
height: 200px;
|
|
background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
.contact-stats .stat-item {
|
|
padding: 1rem;
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.contact-form-card {
|
|
border: none;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.contact-form-header {
|
|
border-bottom: 2px solid var(--light-bg);
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
.contact-form-icon-wrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, var(--secondary-color), #2980b9);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.contact-form-icon {
|
|
font-size: 2rem;
|
|
color: white;
|
|
}
|
|
|
|
.contact-form .form-floating {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.contact-form .form-control,
|
|
.contact-form .form-select {
|
|
border: 2px solid #e9ecef;
|
|
border-radius: 10px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-form .form-control:focus,
|
|
.contact-form .form-select:focus {
|
|
border-color: var(--secondary-color);
|
|
box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
|
|
}
|
|
|
|
.contact-form .form-floating label {
|
|
color: #6c757d;
|
|
}
|
|
|
|
.contact-form .form-floating .form-control:focus ~ label,
|
|
.contact-form .form-floating .form-control:not(:placeholder-shown) ~ label,
|
|
.contact-form .form-floating .form-select:focus ~ label,
|
|
.contact-form .form-floating .form-select:not([value=""]) ~ label {
|
|
color: #181a1b;
|
|
}
|
|
|
|
.contact-submit-btn {
|
|
background: linear-gradient(135deg, var(--secondary-color), #2980b9);
|
|
border: none;
|
|
border-radius: 10px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-submit-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
|
|
}
|
|
|
|
.contact-info-card {
|
|
border: none;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.contact-info-header {
|
|
border-bottom: 2px solid var(--light-bg);
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
.contact-info-icon-wrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, var(--secondary-color), #2980b9);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.contact-info-icon {
|
|
font-size: 2rem;
|
|
color: white;
|
|
}
|
|
|
|
.contact-info-icon-small {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--light-bg);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.contact-info-icon-small i {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.business-hours {
|
|
background: var(--light-bg);
|
|
padding: 1rem;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.social-links .social-link {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--light-bg);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--secondary-color);
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-links .social-link:hover {
|
|
background: var(--secondary-color);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.contact-alert {
|
|
border: none;
|
|
border-radius: 10px;
|
|
background: linear-gradient(135deg, #d1ecf1, #bee5eb);
|
|
}
|
|
|
|
/* Testimonials Section */
|
|
.testimonial-card {
|
|
border: none;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
border-radius: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.testimonial-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.testimonial-rating {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.testimonial-author {
|
|
border-top: 1px solid var(--light-bg);
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
/* Map Section */
|
|
.map-container {
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.map-placeholder {
|
|
background: linear-gradient(135deg, var(--light-bg), #e9ecef);
|
|
height: 300px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
|
|
.map-content {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 15px;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.map-icon {
|
|
font-size: 3rem;
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
/* FAQ Section */
|
|
.faq-card {
|
|
border: none;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
border-radius: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.faq-card:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.faq-icon-wrapper {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--light-bg);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.faq-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* Responsive adjustments for contact page */
|
|
@media (max-width: 768px) {
|
|
.contact-hero-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.services-hero-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.contact-main-icon {
|
|
font-size: 5rem;
|
|
}
|
|
|
|
.services-main-icon {
|
|
font-size: 5rem;
|
|
}
|
|
|
|
.contact-icon-glow {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.services-icon-glow {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.contact-form-card,
|
|
.contact-info-card {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.contact-form-icon-wrapper,
|
|
.contact-info-icon-wrapper {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.contact-form-icon,
|
|
.contact-info-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.map-placeholder {
|
|
height: 250px;
|
|
}
|
|
|
|
.map-content {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.map-icon {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
/* Dark theme adjustments for contact page */
|
|
[data-theme="dark"] .contact-form .form-control,
|
|
[data-theme="dark"] .contact-form .form-select {
|
|
background-color: var(--card-bg);
|
|
border-color: #444;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
[data-theme="dark"] .contact-form .form-control:focus,
|
|
[data-theme="dark"] .contact-form .form-select:focus {
|
|
background-color: var(--card-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .business-hours {
|
|
background-color: var(--section-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .social-links .social-link {
|
|
background-color: var(--section-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .contact-alert {
|
|
background: linear-gradient(135deg, #1a3c42, #2c5a63);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
[data-theme="dark"] .map-placeholder {
|
|
background: linear-gradient(135deg, var(--section-bg), var(--card-bg));
|
|
}
|
|
|
|
[data-theme="dark"] .map-content {
|
|
background-color: var(--card-bg);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
[data-theme="dark"] .faq-icon-wrapper {
|
|
background-color: var(--section-bg);
|
|
}
|
|
|
|
/* Responsive adjustments for mobile devices */
|
|
.contact-form .form-floating > label::after {
|
|
background-color: var(--card-bg);
|
|
}
|
|
[data-theme="dark"] .contact-form .form-floating > label::after {
|
|
background-color: var(--card-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .contact-form .form-floating label {
|
|
color: #f5f6fa;
|
|
}
|
|
[data-theme="dark"] .contact-form .form-floating .form-control:focus ~ label,
|
|
[data-theme="dark"] .contact-form .form-floating .form-control:not(:placeholder-shown) ~ label,
|
|
[data-theme="dark"] .contact-form .form-floating .form-select:focus ~ label,
|
|
[data-theme="dark"] .contact-form .form-floating .form-select:not([value=""]) ~ label {
|
|
color: #f5f6fa;
|
|
}
|
|
|
|
.about-stats .stat-item .plus {
|
|
color: inherit;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
margin-left: 2px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer {
|
|
text-align: center !important;
|
|
}
|
|
.footer .container,
|
|
.footer .row,
|
|
.footer .col,
|
|
.footer .col-12 {
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
text-align: center !important;
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.feature-item {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.feature-icon-wrapper {
|
|
margin-right: 0 !important;
|
|
margin-bottom: 1rem !important;
|
|
}
|
|
.feature-content {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
.feature-icon-wrapper {
|
|
margin-right: 2.5rem !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.btn-toggle-dark {
|
|
display: inline-flex !important;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
margin-left: 1rem;
|
|
background: none;
|
|
border: none;
|
|
color: #fff;
|
|
box-shadow: none;
|
|
}
|
|
.language-selector {
|
|
margin-top: 1rem !important;
|
|
margin-bottom: 1rem !important;
|
|
}
|
|
}
|
|
|
|
/* Design Showcase Styles */
|
|
.design-showcase {
|
|
background: linear-gradient(135deg, var(--section-bg) 0%, var(--light-bg) 100%);
|
|
}
|
|
|
|
.design-card {
|
|
background: white;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
border: 3px solid transparent;
|
|
}
|
|
|
|
.design-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.design-card.active {
|
|
border-color: var(--bs-primary);
|
|
box-shadow: 0 20px 40px rgba(var(--bs-primary-rgb), 0.2);
|
|
}
|
|
|
|
.design-preview {
|
|
height: 200px;
|
|
background: #f8f9fa;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.design-header {
|
|
height: 30px;
|
|
background: #e9ecef;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.design-nav {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.nav-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: #dee2e6;
|
|
}
|
|
|
|
.design-content {
|
|
padding: 20px;
|
|
}
|
|
|
|
.design-hero {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.design-title {
|
|
height: 20px;
|
|
background: #dee2e6;
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
width: 80%;
|
|
}
|
|
|
|
.design-subtitle {
|
|
height: 16px;
|
|
background: #e9ecef;
|
|
border-radius: 4px;
|
|
width: 60%;
|
|
}
|
|
|
|
.design-features {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.feature-line {
|
|
height: 12px;
|
|
background: #f8f9fa;
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
}
|
|
|
|
.design-info {
|
|
padding: 20px;
|
|
}
|
|
|
|
.design-name {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
color: #212529;
|
|
}
|
|
|
|
.design-description {
|
|
color: #6c757d;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 15px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.design-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.tag {
|
|
background: #e9ecef;
|
|
color: #495057;
|
|
padding: 4px 8px;
|
|
border-radius: 12px;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Theme-specific colors for design preview elements */
|
|
.design-card[data-theme="modern-minimal"] .nav-dot,
|
|
.design-card[data-theme="modern-minimal"] .design-title,
|
|
.design-card[data-theme="modern-minimal"] .design-subtitle {
|
|
background-color: #2c3e50;
|
|
}
|
|
|
|
.design-card[data-theme="bold-vibrant"] .nav-dot,
|
|
.design-card[data-theme="bold-vibrant"] .design-title,
|
|
.design-card[data-theme="bold-vibrant"] .design-subtitle {
|
|
background-color: #ff6b6b;
|
|
}
|
|
|
|
.design-card[data-theme="elegant-professional"] .nav-dot,
|
|
.design-card[data-theme="elegant-professional"] .design-title,
|
|
.design-card[data-theme="elegant-professional"] .design-subtitle {
|
|
background-color: #2c3e50;
|
|
}
|
|
|
|
.design-card[data-theme="tech-startup"] .nav-dot,
|
|
.design-card[data-theme="tech-startup"] .design-title,
|
|
.design-card[data-theme="tech-startup"] .design-subtitle {
|
|
background-color: #3498db;
|
|
}
|
|
|
|
.design-card[data-theme="creative-agency"] .nav-dot,
|
|
.design-card[data-theme="creative-agency"] .design-title,
|
|
.design-card[data-theme="creative-agency"] .design-subtitle {
|
|
background-color: #9b59b6;
|
|
}
|
|
|
|
.design-card[data-theme="ecommerce"] .nav-dot,
|
|
.design-card[data-theme="ecommerce"] .design-title,
|
|
.design-card[data-theme="ecommerce"] .design-subtitle {
|
|
background-color: #e67e22;
|
|
}
|
|
|
|
/* Theme Preview Container */
|
|
.theme-preview-container {
|
|
background: white;
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
border: 2px dashed #dee2e6;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.theme-preview-container.active {
|
|
border-color: var(--bs-primary);
|
|
border-style: solid;
|
|
}
|
|
|
|
.preview-placeholder {
|
|
color: #6c757d;
|
|
}
|
|
|
|
/* Theme-specific styles */
|
|
.theme-modern-minimal {
|
|
--primary-color: #6c757d;
|
|
--secondary-color: #f8f9fa;
|
|
--accent-color: #e9ecef;
|
|
--text-color: #212529;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
.theme-bold-vibrant {
|
|
--primary-color: #ff6b6b;
|
|
--secondary-color: #4ecdc4;
|
|
--accent-color: #45b7d1;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
.theme-elegant-professional {
|
|
--primary-color: #2c3e50;
|
|
--secondary-color: #34495e;
|
|
--accent-color: #95a5a6;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
.theme-tech-startup {
|
|
--primary-color: #3498db;
|
|
--secondary-color: #2ecc71;
|
|
--accent-color: #f39c12;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
.theme-creative-agency {
|
|
--primary-color: #9b59b6;
|
|
--secondary-color: #e74c3c;
|
|
--accent-color: #f1c40f;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
.theme-ecommerce {
|
|
--primary-color: #e67e22;
|
|
--secondary-color: #27ae60;
|
|
--accent-color: #8e44ad;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #ffffff;
|
|
}
|
|
|
|
/* Apply theme styles when active */
|
|
/* DISABLED: Body theme styles - only mini website changes now */
|
|
body.theme-modern-minimal {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 108, 117, 125; */
|
|
}
|
|
|
|
body.theme-bold-vibrant {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 255, 107, 107; */
|
|
}
|
|
|
|
body.theme-elegant-professional {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 44, 62, 80; */
|
|
}
|
|
|
|
body.theme-tech-startup {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 52, 152, 219; */
|
|
}
|
|
|
|
body.theme-creative-agency {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 155, 89, 182; */
|
|
}
|
|
|
|
body.theme-ecommerce {
|
|
/* --bs-primary: var(--primary-color);
|
|
--bs-primary-rgb: 230, 126, 34; */
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.design-card {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.design-preview {
|
|
height: 150px;
|
|
}
|
|
|
|
.design-info {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
/* Mini Website Styles */
|
|
.mini-website {
|
|
max-width: 95%;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Mini Header */
|
|
.mini-header {
|
|
background: var(--bs-primary, #007bff);
|
|
color: white;
|
|
padding: 1rem 2rem;
|
|
}
|
|
|
|
.mini-nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.mini-brand {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.mini-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.mini-nav-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: opacity 0.3s ease;
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.mini-nav-link:hover {
|
|
opacity: 0.7;
|
|
color: white;
|
|
cursor: default;
|
|
}
|
|
|
|
/* Mini Hero */
|
|
.mini-hero {
|
|
background: linear-gradient(135deg, var(--bs-primary, #007bff) 0%, rgba(var(--bs-primary-rgb, 0, 123, 255), 0.8) 100%);
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.mini-hero-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.mini-hero-subtitle {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.mini-hero-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/* Mini Buttons */
|
|
.mini-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
cursor: default;
|
|
transition: all 0.3s ease;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.mini-btn-primary {
|
|
background: white;
|
|
color: var(--bs-primary, #007bff);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mini-btn-primary:hover {
|
|
background: #f8f9fa;
|
|
color: var(--bs-primary, #007bff);
|
|
opacity: 0.9;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.mini-btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mini-btn-secondary:hover {
|
|
background: white;
|
|
color: var(--bs-primary, #007bff);
|
|
opacity: 0.9;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Mini Features */
|
|
.mini-features {
|
|
padding: 4rem 2rem;
|
|
background: #f8f9fa;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.mini-feature {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.mini-feature:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.mini-feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--bs-primary, #007bff);
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 1.5rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.mini-feature-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.mini-feature-text {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Mini CTA */
|
|
.mini-cta {
|
|
background: var(--bs-primary, #007bff);
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.mini-cta-title {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mini-cta-text {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Mini Footer */
|
|
.mini-footer {
|
|
background: #333;
|
|
color: white;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.mini-footer-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.mini-footer-brand {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.mini-footer-links {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.mini-footer-link {
|
|
color: #ccc;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
pointer-events: none;
|
|
cursor: default;
|
|
}
|
|
|
|
.mini-footer-link:hover {
|
|
color: #ccc;
|
|
}
|
|
|
|
/* Theme-specific mini website styles */
|
|
.theme-modern-minimal .mini-website {
|
|
/* --mini-primary: #6c757d;
|
|
--mini-secondary: #f8f9fa;
|
|
--mini-accent: #e9ecef; */
|
|
}
|
|
|
|
.theme-bold-vibrant .mini-website {
|
|
/* --mini-primary: #ff6b6b;
|
|
--mini-secondary: #4ecdc4;
|
|
--mini-accent: #45b7d1; */
|
|
}
|
|
|
|
.theme-elegant-professional .mini-website {
|
|
/* --mini-primary: #2c3e50;
|
|
--mini-secondary: #34495e;
|
|
--mini-accent: #95a5a6; */
|
|
}
|
|
|
|
.theme-tech-startup .mini-website {
|
|
/* --mini-primary: #3498db;
|
|
--mini-secondary: #2ecc71;
|
|
--mini-accent: #f39c12; */
|
|
}
|
|
|
|
.theme-creative-agency .mini-website {
|
|
/* --mini-primary: #9b59b6;
|
|
--mini-secondary: #e74c3c;
|
|
--mini-accent: #f1c40f; */
|
|
}
|
|
|
|
.theme-ecommerce .mini-website {
|
|
/* --mini-primary: #e67e22;
|
|
--mini-secondary: #27ae60;
|
|
--mini-accent: #8e44ad; */
|
|
}
|
|
|
|
/* Responsive adjustments for mini website */
|
|
@media (max-width: 768px) {
|
|
.mini-website {
|
|
max-width: 98%;
|
|
margin: 0 0.5rem;
|
|
}
|
|
|
|
.mini-hero-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.mini-hero-subtitle {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.mini-features {
|
|
grid-template-columns: 1fr;
|
|
padding: 2rem 1rem;
|
|
}
|
|
|
|
.mini-nav {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.mini-menu {
|
|
gap: 1rem;
|
|
}
|
|
|
|
.mini-footer-content {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
/* Hide mini website initially */
|
|
.mini-website {
|
|
display: none;
|
|
}
|
|
|
|
.theme-preview-container.active .mini-website {
|
|
display: block;
|
|
}
|
|
|
|
/* Apply theme styles to mini website only */
|
|
.mini-website.theme-modern-minimal {
|
|
--bs-primary: #2c3e50;
|
|
--bs-primary-rgb: 44, 62, 80;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-header {
|
|
background: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-hero {
|
|
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature-icon {
|
|
background: #ecf0f1;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta {
|
|
background: #ecf0f1;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-primary {
|
|
background: #2c3e50;
|
|
color: white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-primary:hover {
|
|
background: #34495e;
|
|
color: white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-secondary {
|
|
background: transparent;
|
|
color: #2c3e50;
|
|
border: 2px solid #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-secondary:hover {
|
|
background: #2c3e50;
|
|
color: white;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant {
|
|
--bs-primary: #ff6b6b;
|
|
--bs-primary-rgb: 255, 107, 107;
|
|
}
|
|
|
|
.mini-website.theme-elegant-professional {
|
|
--bs-primary: #2c3e50;
|
|
--bs-primary-rgb: 44, 62, 80;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup {
|
|
--bs-primary: #3498db;
|
|
--bs-primary-rgb: 52, 152, 219;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency {
|
|
--bs-primary: #6366f1;
|
|
--bs-primary-rgb: 99, 102, 241;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce {
|
|
--bs-primary: #f59e0b;
|
|
--bs-primary-rgb: 245, 158, 11;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
}
|
|
|
|
/* Design card active states with theme-specific borders */
|
|
.design-card.active[data-theme="modern-minimal"] {
|
|
border-color: #2c3e50;
|
|
box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.3);
|
|
}
|
|
|
|
.design-card.active[data-theme="bold-vibrant"] {
|
|
border-color: #ff6b6b;
|
|
box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.design-card.active[data-theme="elegant-professional"] {
|
|
border-color: #2c3e50;
|
|
box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.3);
|
|
}
|
|
|
|
.design-card.active[data-theme="tech-startup"] {
|
|
border-color: #3498db;
|
|
box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.design-card.active[data-theme="creative-agency"] {
|
|
border-color: #6366f1;
|
|
box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.design-card.active[data-theme="ecommerce"] {
|
|
border-color: #f59e0b;
|
|
box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
/* Live preview container with theme-specific borders */
|
|
.theme-preview-container.active[data-theme="modern-minimal"] {
|
|
border-color: #2c3e50;
|
|
box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.3);
|
|
}
|
|
|
|
.theme-preview-container.active[data-theme="bold-vibrant"] {
|
|
border-color: #ff6b6b;
|
|
box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.theme-preview-container.active[data-theme="elegant-professional"] {
|
|
border-color: #2c3e50;
|
|
box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.3);
|
|
}
|
|
|
|
.theme-preview-container.active[data-theme="tech-startup"] {
|
|
border-color: #3498db;
|
|
box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.theme-preview-container.active[data-theme="creative-agency"] {
|
|
border-color: #6366f1;
|
|
box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.theme-preview-container.active[data-theme="ecommerce"] {
|
|
border-color: #f59e0b;
|
|
box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
/* Modern Minimal - Distinctive Style */
|
|
.mini-website.theme-modern-minimal {
|
|
--bs-primary: #2c3e50;
|
|
--bs-primary-rgb: 44, 62, 80;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-header {
|
|
background: #f8fafc;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
padding: 1.5rem 2rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-nav-link {
|
|
color: #475569;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-nav-link:hover {
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-brand {
|
|
font-weight: 700;
|
|
font-size: 1.125rem;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-hero {
|
|
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
|
|
color: #1f2937;
|
|
padding: 6rem 2rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
color: #111827;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-hero-subtitle {
|
|
font-size: 1.25rem;
|
|
font-weight: 400;
|
|
color: #64748b;
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-hero-buttons {
|
|
justify-content: flex-start;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn {
|
|
padding: 0.875rem 2rem;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-primary {
|
|
background: #2c3e50;
|
|
color: white;
|
|
border: 2px solid #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-primary:hover {
|
|
background: #1e293b;
|
|
border-color: #1e293b;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-secondary {
|
|
background: transparent;
|
|
color: #2c3e50;
|
|
border: 2px solid #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-btn-secondary:hover {
|
|
background: #2c3e50;
|
|
color: white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-features {
|
|
background: white;
|
|
padding: 6rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 3rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature {
|
|
background: #f8fafc;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 0;
|
|
padding: 3rem 2rem;
|
|
text-align: left;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature:hover {
|
|
transform: none;
|
|
border-color: #2c3e50;
|
|
background: #f1f5f9;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
background: #2c3e50;
|
|
color: white;
|
|
border-radius: 0;
|
|
margin: 0 0 1.5rem 0;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature-title {
|
|
font-size: 1.125rem;
|
|
font-weight: 700;
|
|
color: #111827;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-feature-text {
|
|
color: #64748b;
|
|
font-size: 0.875rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta {
|
|
background: #2c3e50;
|
|
color: white;
|
|
padding: 6rem 2rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #1e293b;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta-text {
|
|
font-size: 1.125rem;
|
|
color: #cbd5e1;
|
|
margin-bottom: 2rem;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta .mini-btn-primary {
|
|
background: white;
|
|
color: #2c3e50;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta .mini-btn-primary:hover {
|
|
background: #f8fafc;
|
|
color: #2c3e50;
|
|
border-color: #f8fafc;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta .mini-btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-cta .mini-btn-secondary:hover {
|
|
background: white;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-footer {
|
|
background: #1e293b;
|
|
color: #f8fafc;
|
|
padding: 3rem 2rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-footer-brand {
|
|
font-weight: 700;
|
|
color: white;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-footer-link {
|
|
color: #94a3b8;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.mini-website.theme-modern-minimal .mini-footer-link:hover {
|
|
color: white;
|
|
}
|
|
|
|
/* Bold and Vibrant - Distinctive Style */
|
|
.mini-website.theme-bold-vibrant {
|
|
--bs-primary: #ff6b6b;
|
|
--bs-primary-rgb: 255, 107, 107;
|
|
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-header {
|
|
background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
|
|
border-bottom: none;
|
|
padding: 1.5rem 2rem;
|
|
box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-nav-link {
|
|
color: white;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-nav-link:hover {
|
|
color: #ffeaa7;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 3px;
|
|
background: #ffeaa7;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-nav-link:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-brand {
|
|
font-weight: 900;
|
|
font-size: 1.5rem;
|
|
color: white;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-hero {
|
|
background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa726 100%);
|
|
color: white;
|
|
padding: 8rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-hero-title {
|
|
font-size: 4rem;
|
|
font-weight: 900;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
color: white;
|
|
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-hero-subtitle {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: #ffeaa7;
|
|
margin-bottom: 3rem;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-hero-buttons {
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn {
|
|
padding: 1rem 2.5rem;
|
|
font-weight: 800;
|
|
font-size: 1rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
border-radius: 50px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-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: left 0.5s ease;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn-primary {
|
|
background: #ffeaa7;
|
|
color: #2d3436;
|
|
border: 3px solid #ffeaa7;
|
|
box-shadow: 0 8px 25px rgba(255, 234, 167, 0.4);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn-primary:hover {
|
|
background: #fdcb6e;
|
|
border-color: #fdcb6e;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 12px 35px rgba(255, 234, 167, 0.6);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 3px solid white;
|
|
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-btn-secondary:hover {
|
|
background: white;
|
|
color: #ff6b6b;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-features {
|
|
background: #f8f9fa;
|
|
padding: 6rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature {
|
|
background: white;
|
|
border: none;
|
|
border-radius: 20px;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 5px;
|
|
background: linear-gradient(90deg, #ff6b6b, #ffa726, #00cec9);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #ff6b6b, #ffa726);
|
|
color: white;
|
|
border-radius: 50%;
|
|
margin: 0 auto 2rem;
|
|
font-size: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 800;
|
|
color: #2d3436;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-feature-text {
|
|
color: #636e72;
|
|
font-size: 1rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta {
|
|
background: linear-gradient(135deg, #00cec9 0%, #55a3ff 100%);
|
|
color: white;
|
|
padding: 6rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
|
|
animation: pulse 4s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); opacity: 0.5; }
|
|
50% { transform: scale(1.1); opacity: 0.8; }
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta-title {
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta-text {
|
|
font-size: 1.25rem;
|
|
color: #ffeaa7;
|
|
margin-bottom: 2rem;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta .mini-btn-primary {
|
|
background: #ffeaa7;
|
|
color: #2d3436;
|
|
border: 3px solid #ffeaa7;
|
|
box-shadow: 0 8px 25px rgba(255, 234, 167, 0.4);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-cta .mini-btn-primary:hover {
|
|
background: #fdcb6e;
|
|
border-color: #fdcb6e;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 12px 35px rgba(255, 234, 167, 0.6);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-footer {
|
|
background: #2d3436;
|
|
color: white;
|
|
padding: 3rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-footer::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #ff6b6b, #ffa726, #00cec9);
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-footer-brand {
|
|
font-weight: 900;
|
|
color: #ffeaa7;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-footer-link {
|
|
color: #b2bec3;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-bold-vibrant .mini-footer-link:hover {
|
|
color: #ffeaa7;
|
|
}
|
|
|
|
/* Tech Startup - Distinctive Style */
|
|
.mini-website.theme-tech-startup {
|
|
--bs-primary: #3498db;
|
|
--bs-primary-rgb: 52, 152, 219;
|
|
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-header {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid rgba(52, 152, 219, 0.1);
|
|
padding: 1.25rem 2rem;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-nav-link {
|
|
color: #2c3e50;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
position: relative;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-nav-link:hover {
|
|
color: #3498db;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-nav-link::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 2px;
|
|
background: #3498db;
|
|
transition: all 0.3s ease;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-nav-link:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-brand {
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
color: #2c3e50;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-brand::before {
|
|
content: '';
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-hero {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 8rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
|
|
radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
|
|
animation: techGlow 8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes techGlow {
|
|
0%, 100% { opacity: 0.5; }
|
|
50% { opacity: 0.8; }
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-hero-subtitle {
|
|
font-size: 1.25rem;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-hero-buttons {
|
|
justify-content: center;
|
|
gap: 1.5rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn {
|
|
padding: 0.875rem 2rem;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-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: left 0.5s ease;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn-primary {
|
|
background: #3498db;
|
|
color: white;
|
|
border: 2px solid #3498db;
|
|
box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn-primary:hover {
|
|
background: #2980b9;
|
|
border-color: #2980b9;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-btn-secondary:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-features {
|
|
background: #f8fafc;
|
|
padding: 6rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature {
|
|
background: white;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
padding: 2.5rem 2rem;
|
|
text-align: left;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, #3498db, #9b59b6);
|
|
border-radius: 12px 12px 0 0;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
border-color: #3498db;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, #3498db, #9b59b6);
|
|
color: white;
|
|
border-radius: 12px;
|
|
margin: 0 0 1.5rem 0;
|
|
font-size: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #2c3e50;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-feature-text {
|
|
color: #64748b;
|
|
font-size: 0.875rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta {
|
|
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
|
|
color: white;
|
|
padding: 6rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 30% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 70% 30%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta-text {
|
|
font-size: 1.125rem;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin-bottom: 2rem;
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta .mini-btn-primary {
|
|
background: #3498db;
|
|
color: white;
|
|
border: 2px solid #3498db;
|
|
box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-cta .mini-btn-primary:hover {
|
|
background: #2980b9;
|
|
border-color: #2980b9;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer {
|
|
background: #1a202c;
|
|
color: #e2e8f0;
|
|
padding: 3rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, #3498db, #9b59b6);
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer-brand {
|
|
font-weight: 700;
|
|
color: #3498db;
|
|
font-size: 1.125rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer-brand::before {
|
|
content: '';
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer-link {
|
|
color: #a0aec0;
|
|
font-size: 0.875rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-tech-startup .mini-footer-link:hover {
|
|
color: #3498db;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency {
|
|
--bs-primary: #6366f1;
|
|
--bs-primary-rgb: 99, 102, 241;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-header {
|
|
background: rgba(255, 255, 255, 0.98);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 2px solid #f1f5f9;
|
|
padding: 1.5rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-header::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
|
|
background-size: 200% 100%;
|
|
animation: subtleShift 8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes subtleShift {
|
|
0%, 100% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-nav-link {
|
|
color: #64748b;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -8px;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 2px;
|
|
background: #6366f1;
|
|
transition: all 0.3s ease;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-nav-link:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-nav-link:hover {
|
|
color: #6366f1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-brand {
|
|
font-weight: 800;
|
|
font-size: 1.25rem;
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-hero {
|
|
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
|
|
color: white;
|
|
padding: 7rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
|
|
animation: gentleFloat 15s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes gentleFloat {
|
|
0%, 100% { opacity: 0.3; transform: translateY(0px); }
|
|
50% { opacity: 0.6; transform: translateY(-10px); }
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 1;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-hero-subtitle {
|
|
font-size: 1.25rem;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-hero-buttons {
|
|
justify-content: center;
|
|
gap: 1.5rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn {
|
|
padding: 0.875rem 2rem;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
border-radius: 12px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-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: left 0.5s ease;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn-primary {
|
|
background: white;
|
|
color: #6366f1;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn-primary:hover {
|
|
background: transparent;
|
|
color: white;
|
|
border-color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-btn-secondary:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-features {
|
|
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
|
|
padding: 7rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-features::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
|
|
background-size: 200% 100%;
|
|
animation: subtleShift 10s ease-in-out infinite;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature {
|
|
background: white;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 16px;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
transition: all 0.4s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #6366f1, #8b5cf6);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
|
|
border-color: #6366f1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature-icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
color: white;
|
|
border-radius: 16px;
|
|
margin: 0 auto 2rem auto;
|
|
font-size: 1.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature:hover .mini-feature-icon {
|
|
transform: scale(1.1) rotate(5deg);
|
|
box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature-title {
|
|
font-size: 1.375rem;
|
|
font-weight: 700;
|
|
color: #1e293b;
|
|
margin-bottom: 1rem;
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-feature-text {
|
|
color: #64748b;
|
|
font-size: 0.95rem;
|
|
line-height: 1.6;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta {
|
|
background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
|
|
color: white;
|
|
padding: 7rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
|
|
animation: gentlePulse 12s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes gentlePulse {
|
|
0%, 100% { opacity: 0.2; transform: scale(1); }
|
|
50% { opacity: 0.4; transform: scale(1.02); }
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta-title {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
color: white;
|
|
margin-bottom: 1.5rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta-text {
|
|
font-size: 1.25rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta .mini-btn-primary {
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
color: white;
|
|
border: none;
|
|
padding: 1rem 2.5rem;
|
|
font-size: 1rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-cta .mini-btn-primary:hover {
|
|
background: linear-gradient(135deg, #8b5cf6, #6366f1);
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-footer {
|
|
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
|
|
color: #e2e8f0;
|
|
padding: 4rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-footer::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
|
|
background-size: 200% 100%;
|
|
animation: subtleShift 12s ease-in-out infinite;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-footer-brand {
|
|
font-weight: 800;
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-footer-link {
|
|
color: #94a3b8;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-creative-agency .mini-footer-link:hover {
|
|
color: #6366f1;
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce {
|
|
--bs-primary: #f59e0b;
|
|
--bs-primary-rgb: 245, 158, 11;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-header {
|
|
background: white;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
padding: 1rem 2rem;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-nav-link {
|
|
color: #374151;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
transition: color 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-nav-link::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -4px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: #f59e0b;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-nav-link:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-nav-link:hover {
|
|
color: #f59e0b;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-brand {
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
color: #111827;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-brand::before {
|
|
content: '';
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-hero {
|
|
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
|
|
color: #1f2937;
|
|
padding: 5rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-hero-title {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 1rem;
|
|
color: #111827;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-hero-subtitle {
|
|
font-size: 1.125rem;
|
|
font-weight: 500;
|
|
color: #4b5563;
|
|
margin-bottom: 2rem;
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-hero-buttons {
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
border-radius: 6px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-btn-primary {
|
|
background: #f59e0b;
|
|
color: white;
|
|
border: 2px solid #f59e0b;
|
|
box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-btn-primary:hover {
|
|
background: #d97706;
|
|
border-color: #d97706;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-btn-secondary {
|
|
background: white;
|
|
color: #374151;
|
|
border: 2px solid #d1d5db;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-btn-secondary:hover {
|
|
background: #f9fafb;
|
|
border-color: #9ca3af;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-features {
|
|
background: white;
|
|
padding: 4rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature {
|
|
background: #f9fafb;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
padding: 2rem 1.5rem;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: #f59e0b;
|
|
border-radius: 8px 8px 0 0;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
|
|
border-color: #f59e0b;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: #f59e0b;
|
|
color: white;
|
|
border-radius: 8px;
|
|
margin: 0 auto 1rem auto;
|
|
font-size: 1.25rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature-title {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
color: #111827;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-feature-text {
|
|
color: #6b7280;
|
|
font-size: 0.875rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta {
|
|
background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta-title {
|
|
font-size: 2.25rem;
|
|
font-weight: 700;
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta-text {
|
|
font-size: 1rem;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin-bottom: 2rem;
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta .mini-btn-primary {
|
|
background: #f59e0b;
|
|
color: white;
|
|
border: 2px solid #f59e0b;
|
|
padding: 0.875rem 2rem;
|
|
font-size: 0.875rem;
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-cta .mini-btn-primary:hover {
|
|
background: #d97706;
|
|
border-color: #d97706;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-footer {
|
|
background: #111827;
|
|
color: #d1d5db;
|
|
padding: 3rem 2rem;
|
|
border-top: 3px solid #f59e0b;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-footer-brand {
|
|
font-weight: 700;
|
|
color: #f59e0b;
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-footer-brand::before {
|
|
content: '';
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-footer-link {
|
|
color: #9ca3af;
|
|
font-size: 0.875rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.mini-website.theme-ecommerce .mini-footer-link:hover {
|
|
color: #f59e0b;
|
|
}
|
|
|
|
.design-card.active[data-theme="ecommerce"] {
|
|
border-color: #f59e0b;
|
|
box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
/* Footer Contact Links Styling */
|
|
.footer a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: var(--secondary-color);
|
|
transform: translateY(-2px);
|
|
text-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
|
|
}
|
|
|
|
.footer a::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--secondary-color), #3498db);
|
|
transition: width 0.3s ease;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.footer a:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Contact link icons styling */
|
|
.footer .fas {
|
|
transition: all 0.3s ease;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.footer a:hover .fas {
|
|
transform: scale(1.1);
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
/* Specific styling for different contact types */
|
|
.footer a[href^="mailto:"] {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer a[href^="mailto:"]:hover {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
.footer a[href^="tel:"] {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer a[href^="tel:"]:hover {
|
|
color: #27ae60;
|
|
}
|
|
|
|
.footer a[href*="maps.google.com"] {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer a[href*="maps.google.com"]:hover {
|
|
color: #f39c12;
|
|
}
|
|
|
|
/* Contact link container styling */
|
|
.footer .col-md-4:last-child p {
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.footer .col-md-4:last-child p a {
|
|
padding: 2px 0;
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.footer .col-md-4:last-child p a:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Dark theme adjustments */
|
|
[data-theme="dark"] .footer a {
|
|
color: #bdc3c7;
|
|
}
|
|
|
|
[data-theme="dark"] .footer a:hover {
|
|
color: var(--secondary-color);
|
|
background: rgba(52, 152, 219, 0.1);
|
|
}
|
|
|
|
/* Mobile responsiveness */
|
|
@media (max-width: 768px) {
|
|
.footer a:hover {
|
|
transform: none;
|
|
}
|
|
|
|
.footer .col-md-4:last-child p a:hover {
|
|
padding: 2px 0;
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
/* Contact Page Links Styling */
|
|
.contact-info-card a {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 4px 0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.contact-info-card a:hover {
|
|
color: var(--secondary-color);
|
|
transform: translateY(-1px);
|
|
background: rgba(52, 152, 219, 0.1);
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.contact-info-card a::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--secondary-color), #3498db);
|
|
transition: width 0.3s ease;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.contact-info-card a:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Contact page specific link colors */
|
|
.contact-info-card a[href^="mailto:"]:hover {
|
|
color: #e74c3c;
|
|
background: rgba(231, 76, 60, 0.1);
|
|
}
|
|
|
|
.contact-info-card a[href^="tel:"]:hover {
|
|
color: #27ae60;
|
|
background: rgba(39, 174, 96, 0.1);
|
|
}
|
|
|
|
.contact-info-card a[href*="maps.google.com"]:hover {
|
|
color: #f39c12;
|
|
background: rgba(243, 156, 18, 0.1);
|
|
}
|
|
|
|
/* Contact page icons styling */
|
|
.contact-info-card .fas {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-info-card a:hover .fas {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Dark theme adjustments for contact page */
|
|
[data-theme="dark"] .contact-info-card a {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
[data-theme="dark"] .contact-info-card a:hover {
|
|
color: var(--secondary-color);
|
|
background: rgba(52, 152, 219, 0.15);
|
|
}
|