This commit is contained in:
Iliyan Angelov
2025-11-24 03:52:08 +02:00
parent dfcaebaf8c
commit 366f28677a
18241 changed files with 865352 additions and 567 deletions

View File

@@ -0,0 +1,198 @@
/* ====
--------- Banner Fixes and Enhancements ---------
==== */
// Trust Indicators for Banner
.about-banner .trust-indicators {
display: flex;
gap: 2rem;
flex-wrap: wrap;
margin-top: 2rem;
.trust-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.8);
font-size: 0.875rem;
i {
color: #10b981;
font-size: 1rem;
}
}
}
// Floating Metrics for Banner
.about-banner .floating-metrics {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
.metric-card {
position: absolute;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;
padding: 1rem;
display: flex;
align-items: center;
gap: 0.75rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
animation: metricFloat 6s ease-in-out infinite;
.metric-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
i {
font-size: 1rem;
color: var(--white);
}
}
.metric-content {
.metric-value {
font-size: 1.125rem;
font-weight: 700;
color: #1e293b;
font-family: var(--font-family-display);
line-height: 1;
}
.metric-label {
font-size: 0.75rem;
color: #64748b;
text-transform: none;
letter-spacing: 0.05em;
margin-top: 0.25rem;
}
}
&.metric-1 {
top: 10%;
right: -20px;
animation-delay: 0s;
}
&.metric-2 {
top: 50%;
left: -20px;
animation-delay: 2s;
}
&.metric-3 {
bottom: 20%;
right: -20px;
animation-delay: 4s;
}
}
}
// Animation for floating metrics
@keyframes metricFloat {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
// Responsive adjustments for banner
@media (max-width: 768px) {
.about-banner {
.trust-indicators {
justify-content: center;
gap: 1rem;
.trust-item {
font-size: 0.8rem;
}
}
.floating-metrics {
.metric-card {
padding: 0.75rem;
.metric-icon {
width: 32px;
height: 32px;
i {
font-size: 0.875rem;
}
}
.metric-content {
.metric-value {
font-size: 1rem;
}
.metric-label {
font-size: 0.7rem;
}
}
&.metric-1 {
top: 5%;
right: -10px;
}
&.metric-2 {
top: 60%;
left: -10px;
}
&.metric-3 {
bottom: 10%;
right: -10px;
}
}
}
}
}
@media (max-width: 480px) {
.about-banner {
.trust-indicators {
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.floating-metrics {
.metric-card {
padding: 0.5rem;
.metric-icon {
width: 28px;
height: 28px;
i {
font-size: 0.75rem;
}
}
.metric-content {
.metric-value {
font-size: 0.9rem;
}
.metric-label {
font-size: 0.65rem;
}
}
}
}
}
}

View File

@@ -0,0 +1,653 @@
/* ====
--------- (3.01) buttons styles start ---------
==== */
@use "../abstracts/mixins" as *;
// Base button styles using modern design system
.btn {
@include button-base;
@include focus-visible;
// Legacy styles for backward compatibility
padding: var(--space-4) var(--space-10);
font-weight: var(--font-weight-semibold);
border: 1px solid var(--secondary-300);
border-radius: var(--radius-lg);
color: var(--secondary-600);
position: relative;
overflow: hidden;
text-transform: none;
z-index: 1;
letter-spacing: 0.5px;
&::before {
content: "";
position: absolute;
inset: 0px;
width: 0px;
transition: var(--transition-default);
background-color: var(--primary-600);
z-index: -1;
}
&:hover:not(:disabled) {
border-color: var(--primary-600);
color: var(--white);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
&::before {
width: 100%;
}
}
&:active:not(:disabled) {
transform: translateY(0);
box-shadow: var(--shadow-sm);
}
&:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(var(--primary-600), 0.1);
}
// Button variants
&.btn-primary {
background-color: var(--primary-600);
border-color: var(--primary-600);
color: var(--white);
&::before {
background-color: var(--primary-700);
}
&:hover:not(:disabled) {
background-color: var(--primary-700);
border-color: var(--primary-700);
}
}
&.btn-secondary {
background-color: var(--secondary-100);
border-color: var(--secondary-200);
color: var(--secondary-700);
&::before {
background-color: var(--secondary-200);
}
&:hover:not(:disabled) {
background-color: var(--secondary-200);
border-color: var(--secondary-300);
color: var(--secondary-800);
}
}
&.btn-outline {
background-color: transparent;
border-color: var(--primary-600);
color: var(--primary-600);
&::before {
background-color: var(--primary-600);
}
&:hover:not(:disabled) {
background-color: var(--primary-600);
color: var(--white);
}
}
&.btn-ghost {
background-color: transparent;
border-color: transparent;
color: var(--secondary-600);
&::before {
background-color: var(--secondary-100);
}
&:hover:not(:disabled) {
background-color: var(--secondary-100);
color: var(--secondary-800);
}
}
// Button sizes
&.btn-sm {
padding: var(--space-2) var(--space-4);
font-size: var(--text-xs);
border-radius: var(--radius-md);
}
&.btn-lg {
padding: var(--space-4) var(--space-8);
font-size: var(--text-lg);
border-radius: var(--radius-xl);
}
&.btn-xl {
padding: var(--space-5) var(--space-10);
font-size: var(--text-xl);
border-radius: var(--radius-2xl);
}
// Button states
&.btn-loading {
position: relative;
color: transparent;
&::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 16px;
height: 16px;
margin: -8px 0 0 -8px;
border: 2px solid currentColor;
border-top-color: transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}
}
&.btn-disabled,
&:disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
}
// Modern animated button with improved accessibility
.btn-anim {
@include flex-center;
@include focus-visible;
width: 170px;
height: 170px;
border: 1px solid var(--white);
border-radius: 50%;
color: var(--white);
font-weight: var(--font-weight-semibold);
position: relative;
overflow: hidden;
gap: var(--space-4);
z-index: 1;
padding: 0;
transition: var(--transition-default);
span {
position: absolute;
z-index: -1;
width: 0;
height: 0;
border-radius: 50%;
background: var(--primary-600);
transform: translate(-50%, -50%);
pointer-events: none;
transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
padding-top 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
&:hover:not(:disabled) {
color: var(--white);
border-color: var(--primary-600);
transform: scale(1.05);
span {
width: calc(100% * 2.25);
padding-top: calc(100% * 2.25);
}
}
&:active:not(:disabled) {
transform: scale(0.98);
}
// Responsive sizing
@include mobile-only {
width: 140px;
height: 140px;
font-size: var(--text-sm);
}
}
// Alternative button style with modern improvements
.alter-btn {
@include flex-center;
@include focus-visible;
padding: var(--space-16) var(--space-10);
width: 200px;
height: 200px;
border-radius: 50%;
display: inline-flex;
flex-wrap: wrap;
row-gap: var(--space-2);
border: 1px solid var(--white);
color: var(--white);
justify-content: flex-start;
font-weight: var(--font-weight-semibold);
font-size: var(--text-lg);
transition: var(--transition-default);
&:hover:not(:disabled) {
color: var(--secondary-800);
border-color: var(--primary-600);
background-color: var(--white);
transform: scale(1.05);
}
&:active:not(:disabled) {
transform: scale(0.98);
}
// Responsive sizing
@include mobile-only {
width: 160px;
height: 160px;
padding: var(--space-12) var(--space-8);
font-size: var(--text-base);
}
}
// Light variant of animated button
.btn-anim-light {
@include focus-visible;
border: 1px solid var(--secondary-800);
color: var(--secondary-800);
background-color: var(--white);
span {
background-color: var(--primary-600);
}
&:hover:not(:disabled) {
border-color: var(--primary-600);
color: var(--white);
background-color: var(--primary-600);
}
}
// Modern line button with improved animations
.btn-line {
@include focus-visible;
font-weight: var(--font-weight-semibold);
letter-spacing: 0.5px;
color: var(--secondary-600);
position: relative;
background: none;
border: none;
padding: var(--space-2) 0;
cursor: pointer;
transition: var(--transition-colors);
&::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 2px;
background-color: var(--secondary-300);
transition: var(--transition-default);
}
&::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-600);
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
&:hover:not(:disabled) {
color: var(--primary-600);
&::before {
width: 0;
left: 100%;
}
&::after {
width: 100%;
}
}
&:active:not(:disabled) {
color: var(--primary-700);
}
}
// Modern button variants
.btn-gradient {
@include button-base;
@include focus-visible;
background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
border: none;
color: var(--white);
position: relative;
overflow: hidden;
&::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;
}
&:hover:not(:disabled) {
background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
&::before {
left: 100%;
}
}
}
.btn-glass {
@include button-base;
@include focus-visible;
@include glassmorphism(0.1, 10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--white);
backdrop-filter: blur(10px);
&:hover:not(:disabled) {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
}
.btn-floating {
@include button-base;
@include focus-visible;
@include shadow-elevation(3);
border-radius: var(--radius-full);
width: 56px;
height: 56px;
padding: 0;
&:hover:not(:disabled) {
@include shadow-elevation(4);
transform: translateY(-4px) scale(1.05);
}
&:active:not(:disabled) {
transform: translateY(-2px) scale(1.02);
}
}
.btn-icon {
@include button-base;
@include focus-visible;
width: 40px;
height: 40px;
padding: 0;
border-radius: var(--radius-lg);
i {
font-size: var(--text-lg);
}
&:hover:not(:disabled) {
transform: scale(1.1);
}
}
// Legacy angle button with modern improvements
.btn-angle {
position: relative;
font-weight: 400;
padding: 6px 24px;
font-size: 16px;
text-align: center;
justify-content: center;
gap: 0px;
&::before {
content: "";
position: absolute;
width: 8px;
height: 8px;
top: 0px;
left: 0px;
border-left: 1px solid white;
border-top: 1px solid white;
transition: var(--transition);
}
&::after {
content: "";
position: absolute;
width: 8px;
height: 8px;
top: 0px;
right: 0px;
border-right: 1px solid white;
border-top: 1px solid white;
transition: var(--transition);
}
span {
display: inline-block;
}
span::after {
content: "";
position: absolute;
width: 8px;
height: 8px;
bottom: 0px;
right: 0px;
border-right: 1px solid white;
border-bottom: 1px solid white;
transition: var(--transition);
}
span::before {
content: "";
position: absolute;
width: 8px;
height: 8px;
bottom: 0px;
left: 0px;
border-left: 1px solid white;
border-bottom: 1px solid white;
transition: var(--transition);
}
&:hover {
&::after,
&::before,
span::after,
span::before {
width: calc(50% + 0px);
height: calc(50% + 0px);
border-color: var(--enterprise-blue);
}
}
}
// scroll to top with progress
.progress-wrap {
position: fixed;
right: 30px;
bottom: 30px;
height: 50px;
width: 50px;
cursor: pointer;
display: block;
border-radius: 50px;
background-color: #1f1f1f;
box-shadow: inset 0 0 0 8px #1f1f1f;
z-index: 10000;
opacity: 0;
visibility: hidden;
transform: translateY(15px);
transition: all 200ms linear;
z-index: 999;
overflow: hidden;
span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 34px;
height: 34px;
background-color: var(--white);
border-radius: 50%;
overflow: hidden;
&::after {
content: "\f176";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
text-align: center;
line-height: 34px;
font-size: 16px;
border-radius: 50%;
color: var(--black);
left: 50%;
top: 50%;
transform: translate(-50%, 200%);
height: 34px;
width: 34px;
cursor: pointer;
display: block;
z-index: 1;
transition: all 200ms linear;
}
&::before {
content: "\f176";
font-family: "Font Awesome 6 Free";
font-weight: 900;
text-align: center;
line-height: 34px;
position: absolute;
font-size: 16px;
border-radius: 50%;
color: var(--black);
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
height: 34px;
width: 34px;
cursor: pointer;
display: block;
z-index: 2;
transition: all 200ms linear;
}
}
&:hover {
span {
&::before {
transform: translate(-50%, -200%);
}
&::after {
transform: translate(-50%, -50%);
}
}
}
path {
fill: none;
}
.progress-circle {
path {
stroke: var(--enterprise-blue);
stroke-width: 4;
box-sizing: content-box;
}
}
}
.active-progress {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
// Animations
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
// Button group utilities
.btn-group {
display: inline-flex;
border-radius: var(--radius-lg);
overflow: hidden;
.btn {
border-radius: 0;
border-right-width: 0;
&:first-child {
border-top-left-radius: var(--radius-lg);
border-bottom-left-radius: var(--radius-lg);
}
&:last-child {
border-top-right-radius: var(--radius-lg);
border-bottom-right-radius: var(--radius-lg);
border-right-width: 1px;
}
&:only-child {
border-radius: var(--radius-lg);
border-right-width: 1px;
}
}
}
// Responsive button adjustments
@include mobile-only {
.btn {
padding: var(--space-3) var(--space-6);
font-size: var(--text-sm);
}
.btn-anim {
width: 120px;
height: 120px;
font-size: var(--text-sm);
}
.alter-btn {
width: 140px;
height: 140px;
padding: var(--space-8) var(--space-6);
}
}
/* ====
--------- (3.01) buttons styles end ---------
==== */

View File

@@ -0,0 +1,698 @@
/* ==============
========= Cookie Consent Styles =========
============== */
// Cookie Consent Banner
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: var(--z-50);
background: var(--white);
border-top: 1px solid var(--secondary-200);
box-shadow: var(--shadow-lg);
padding: var(--space-6);
@media (max-width: 768px) {
padding: var(--space-4);
}
&__container {
max-width: var(--container-xl);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-6);
@media (max-width: 768px) {
flex-direction: column;
gap: var(--space-4);
text-align: center;
}
}
&__content {
display: flex;
align-items: center;
gap: var(--space-4);
flex: 1;
@media (max-width: 768px) {
flex-direction: column;
text-align: center;
}
}
&__icon {
flex-shrink: 0;
width: 48px;
height: 48px;
background: var(--primary-100);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-600);
font-size: var(--text-xl);
@media (max-width: 768px) {
width: 40px;
height: 40px;
font-size: var(--text-lg);
}
}
&__text {
flex: 1;
h3 {
font-size: var(--text-lg);
font-weight: var(--font-weight-semibold);
color: #ffffff !important;
margin: 0 0 var(--space-2) 0;
line-height: var(--leading-tight);
}
p {
font-size: var(--text-sm);
color: #ffffff !important;
margin: 0 0 var(--space-3) 0;
line-height: var(--leading-relaxed);
max-width: 600px;
}
}
// Force white color with higher specificity
&.cookie-consent-banner .cookie-consent-banner__text h3 {
color: #ffffff !important;
}
&.cookie-consent-banner .cookie-consent-banner__text p {
color: #ffffff !important;
}
&__links {
display: flex;
gap: var(--space-4);
flex-wrap: wrap;
a {
font-size: var(--text-xs);
color: var(--primary-600);
text-decoration: none;
font-weight: var(--font-weight-medium);
border-bottom: 1px solid transparent;
transition: var(--transition-colors);
&:hover {
color: var(--primary-700);
border-bottom-color: var(--primary-600);
}
}
}
&__actions {
display: flex;
gap: var(--space-3);
flex-shrink: 0;
@media (max-width: 768px) {
width: 100%;
justify-content: center;
}
}
&__btn {
display: inline-flex;
align-items: center;
gap: var(--space-2);
padding: var(--space-3) var(--space-5);
border-radius: var(--radius-lg);
font-size: var(--text-sm);
font-weight: var(--font-weight-medium);
text-decoration: none;
border: none;
cursor: pointer;
transition: var(--transition-all);
white-space: nowrap;
@media (max-width: 768px) {
flex: 1;
justify-content: center;
}
&--primary {
background: var(--primary-600);
color: var(--white);
&:hover {
background: var(--primary-700);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
&:active {
transform: translateY(0);
}
}
&--secondary {
background: var(--secondary-100);
color: var(--secondary-700);
border: 1px solid var(--secondary-200);
&:hover {
background: var(--secondary-200);
border-color: var(--secondary-300);
transform: translateY(-1px);
}
&:active {
transform: translateY(0);
}
}
i {
font-size: var(--text-xs);
}
}
}
// Cookie Settings Modal
.cookie-settings-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
z-index: var(--z-50);
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-4);
}
.cookie-settings-modal {
background: var(--white);
border-radius: var(--radius-2xl);
box-shadow: var(--shadow-2xl);
max-width: 600px;
width: 100%;
max-height: 90vh;
overflow: hidden;
display: flex;
flex-direction: column;
&__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: var(--space-6);
border-bottom: 1px solid var(--secondary-200);
background: var(--secondary-50);
}
&__header-content {
display: flex;
align-items: center;
gap: var(--space-3);
h2 {
font-size: var(--text-xl);
font-weight: var(--font-weight-semibold);
color: var(--secondary-800);
margin: 0;
}
}
&__version {
font-size: var(--text-xs);
color: var(--secondary-500);
background: var(--secondary-200);
padding: var(--space-1) var(--space-2);
border-radius: var(--radius-sm);
font-weight: var(--font-weight-medium);
margin: 0;
}
&__close {
width: 32px;
height: 32px;
border: none;
background: var(--secondary-100);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--secondary-600);
transition: var(--transition-all);
&:hover {
background: var(--secondary-200);
color: var(--secondary-800);
}
i {
font-size: var(--text-sm);
}
}
&__content {
padding: var(--space-6);
overflow-y: auto;
flex: 1;
}
&__description {
margin-bottom: var(--space-6);
p {
font-size: var(--text-sm);
color: var(--secondary-600);
line-height: var(--leading-relaxed);
margin: 0;
}
}
&__types {
margin-bottom: var(--space-6);
}
&__type {
padding: var(--space-4);
border: 1px solid var(--secondary-200);
border-radius: var(--radius-lg);
margin-bottom: var(--space-4);
transition: var(--transition-all);
&:last-child {
margin-bottom: 0;
}
&--required {
background: var(--secondary-50);
border-color: var(--primary-200);
}
&:hover {
border-color: var(--secondary-300);
box-shadow: var(--shadow-sm);
}
}
&__type-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: var(--space-4);
}
&__type-info {
display: flex;
gap: var(--space-3);
flex: 1;
i {
color: var(--primary-600);
font-size: var(--text-lg);
margin-top: 2px;
flex-shrink: 0;
}
h4 {
font-size: var(--text-base);
font-weight: var(--font-weight-semibold);
color: var(--secondary-800);
margin: 0 0 var(--space-1) 0;
}
p {
font-size: var(--text-sm);
color: var(--secondary-600);
line-height: var(--leading-relaxed);
margin: 0;
}
}
&__type-toggle {
flex-shrink: 0;
}
&__privacy {
background: var(--secondary-50);
padding: var(--space-4);
border-radius: var(--radius-lg);
border: 1px solid var(--secondary-200);
h4 {
font-size: var(--text-base);
font-weight: var(--font-weight-semibold);
color: var(--secondary-800);
margin: 0 0 var(--space-3) 0;
}
ul {
margin: 0;
padding-left: var(--space-5);
li {
font-size: var(--text-sm);
color: var(--secondary-600);
line-height: var(--leading-relaxed);
margin-bottom: var(--space-2);
&:last-child {
margin-bottom: 0;
}
}
}
}
&__footer {
display: flex;
gap: var(--space-3);
padding: var(--space-6);
border-top: 1px solid var(--secondary-200);
background: var(--secondary-50);
justify-content: flex-end;
}
&__btn {
padding: var(--space-3) var(--space-5);
border-radius: var(--radius-lg);
font-size: var(--text-sm);
font-weight: var(--font-weight-medium);
border: none;
cursor: pointer;
transition: var(--transition-all);
min-width: 120px;
&--primary {
background: var(--primary-600);
color: var(--white);
&:hover {
background: var(--primary-700);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
}
&--secondary {
background: var(--white);
color: var(--secondary-700);
border: 1px solid var(--secondary-300);
&:hover {
background: var(--secondary-50);
border-color: var(--secondary-400);
}
}
&--outline {
background: transparent;
color: var(--primary-600);
border: 1px solid var(--primary-300);
&:hover {
background: var(--primary-50);
border-color: var(--primary-400);
}
}
&--danger {
background: var(--error);
color: var(--white);
&:hover {
background: #dc2626;
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
}
}
}
// Enterprise features styling
.cookie-settings-modal__enterprise {
background: var(--primary-50);
padding: var(--space-4);
border-radius: var(--radius-lg);
border: 1px solid var(--primary-200);
margin-top: var(--space-4);
h4 {
font-size: var(--text-base);
font-weight: var(--font-weight-semibold);
color: var(--primary-800);
margin: 0 0 var(--space-3) 0;
}
}
.cookie-settings-modal__enterprise-actions {
display: flex;
gap: var(--space-3);
flex-wrap: wrap;
@media (max-width: 640px) {
flex-direction: column;
}
}
// Cookie Toggle Switch
.cookie-toggle {
position: relative;
display: inline-block;
width: 48px;
height: 24px;
input {
opacity: 0;
width: 0;
height: 0;
&:checked + .cookie-toggle__slider {
background: var(--primary-600);
&:before {
transform: translateX(24px);
}
}
&:disabled + .cookie-toggle__slider {
background: var(--secondary-300);
cursor: not-allowed;
&:before {
background: var(--secondary-400);
}
}
}
&__slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--secondary-300);
transition: var(--transition-all);
border-radius: var(--radius-full);
&:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 3px;
bottom: 3px;
background: var(--white);
transition: var(--transition-all);
border-radius: var(--radius-full);
box-shadow: var(--shadow-sm);
}
}
}
// Cookie Preferences Display (for footer/privacy page)
.cookie-preferences-display {
background: var(--secondary-50);
padding: var(--space-6);
border-radius: var(--radius-lg);
border: 1px solid var(--secondary-200);
h3 {
font-size: var(--text-lg);
font-weight: var(--font-weight-semibold);
color: var(--secondary-800);
margin: 0 0 var(--space-4) 0;
}
&__status {
margin-bottom: var(--space-4);
p {
font-size: var(--text-sm);
color: var(--secondary-600);
margin: 0 0 var(--space-2) 0;
line-height: var(--leading-relaxed);
strong {
color: var(--secondary-800);
font-weight: var(--font-weight-medium);
}
}
}
&__actions {
display: flex;
gap: var(--space-3);
flex-wrap: wrap;
}
&__btn {
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
font-size: var(--text-sm);
font-weight: var(--font-weight-medium);
border: 1px solid var(--secondary-300);
background: var(--white);
color: var(--secondary-700);
cursor: pointer;
transition: var(--transition-all);
&:hover {
background: var(--secondary-50);
border-color: var(--secondary-400);
}
&--reset {
color: var(--error);
border-color: var(--error);
&:hover {
background: var(--error);
color: var(--white);
}
}
}
}
// Responsive adjustments
@media (max-width: 640px) {
.cookie-settings-modal {
margin: var(--space-4);
max-height: calc(100vh - var(--space-8));
&__header,
&__content,
&__footer {
padding: var(--space-4);
}
&__type-header {
flex-direction: column;
gap: var(--space-3);
}
&__type-toggle {
align-self: flex-start;
}
}
.cookie-preferences-display {
padding: var(--space-4);
&__actions {
flex-direction: column;
}
&__btn {
width: 100%;
justify-content: center;
}
}
}
// Dark mode support (if needed in the future)
@media (prefers-color-scheme: dark) {
.cookie-consent-banner {
background: var(--secondary-800);
border-top-color: var(--secondary-700);
&__text h3 {
color: #ffffff !important;
}
&__text p {
color: #ffffff !important;
}
}
.cookie-settings-modal {
background: var(--secondary-800);
&__header {
background: var(--secondary-900);
border-bottom-color: var(--secondary-700);
h2 {
color: var(--secondary-100);
}
}
&__close {
background: var(--secondary-700);
color: var(--secondary-300);
&:hover {
background: var(--secondary-600);
color: var(--secondary-100);
}
}
&__type {
background: var(--secondary-700);
border-color: var(--secondary-600);
&--required {
background: var(--secondary-700);
border-color: var(--primary-400);
}
}
&__type-info {
h4 {
color: var(--secondary-100);
}
p {
color: var(--secondary-300);
}
}
&__privacy {
background: var(--secondary-700);
border-color: var(--secondary-600);
h4 {
color: var(--secondary-100);
}
li {
color: var(--secondary-300);
}
}
&__footer {
background: var(--secondary-900);
border-top-color: var(--secondary-700);
}
}
}

View File

@@ -0,0 +1,166 @@
/* ====
--------- Eye-friendly UI improvements ---------
==== */
// Improved readability and visual hierarchy
.eye-friendly {
// Better line spacing for readability
p, .cur-lg {
line-height: 1.6 !important;
letter-spacing: 0.01em;
}
// Reduced visual weight for headings
h1, h2, h3, h4, h5, h6 {
letter-spacing: -0.02em;
font-weight: 600;
}
// Softer colors for better eye comfort
.text-muted {
color: #6b7280 !important;
}
// Improved button styling
.btn-line {
font-weight: 500;
letter-spacing: 0.05em;
text-transform: none;
font-size: 12px !important;
padding: 8px 16px;
border-radius: 4px;
transition: all 0.3s ease;
&:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
}
// Better spacing for cards
.capability-card {
padding: 24px;
border-radius: 8px;
background: #ffffff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
border: 1px solid #f1f5f9;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
border-color: #e2e8f0;
}
.capability-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: #f8fafc;
border-radius: 8px;
margin-bottom: 16px;
}
}
// Improved section spacing
section {
padding-top: 60px !important;
padding-bottom: 60px !important;
}
// Fix navbar overlap issue
.fix-top {
padding-top: 140px !important;
}
// Better container max-width for readability
.container {
max-width: 1200px;
}
// Improved banner styling
.about-banner {
padding-top: 140px !important;
.about-banner__content {
h1, h2 {
font-weight: 600;
letter-spacing: -0.02em;
// Ensure heading is always visible
opacity: 1 !important;
visibility: visible !important;
color: #222222 !important;
display: block !important;
position: relative !important;
z-index: 10 !important;
margin-top: 0 !important;
}
p {
color: #4b5563;
line-height: 1.6;
}
}
}
// Enhanced service section
.tp-service {
.tp-service__content {
h2 {
font-weight: 600;
letter-spacing: -0.02em;
}
p {
color: #4b5563;
line-height: 1.6;
}
}
}
// Better gallery section
.tp-gallery {
.tp-gallery__content {
h2 {
font-weight: 600;
letter-spacing: -0.02em;
}
p {
color: #e5e7eb;
line-height: 1.6;
}
}
}
}
// Responsive improvements
@media (max-width: 768px) {
.eye-friendly {
h1, .text-xxl {
font-size: 32px !important;
line-height: 40px !important;
}
h2 {
font-size: 24px !important;
line-height: 32px !important;
}
h3 {
font-size: 20px !important;
line-height: 28px !important;
}
p, .cur-lg {
font-size: 14px !important;
line-height: 22px !important;
}
.capability-card {
padding: 16px;
}
}
}

View File

@@ -0,0 +1,751 @@
/* ====
--------- (3.02) forms styles start ---------
==== */
@use "../abstracts/mixins" as *;
// subscribe form
.subscribe-form {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
max-width: 360px;
input {
flex-grow: 1;
padding: 22px 20px;
background-color: var(--enterprise-blue);
border-radius: 40px;
color: var(--white);
width: calc(100% - 70px);
}
button {
@include box(70px);
background-color: var(--enterprise-blue);
color: var(--primary-color);
font-size: 24px;
}
}
// blog search form
.search-form {
width: 100%;
position: relative;
input {
width: 100%;
border-bottom: 1px solid #22222250;
padding: 16px 40px;
color: var(--secondary-color);
&::placeholder {
color: var(--tertiary-color);
}
}
button {
position: absolute;
top: 50%;
left: 0px;
transform: translateY(-50%);
color: var(--tertiary-color);
}
}
// ENTERPRISE CONTACT FORM STYLES
.enterprise-form {
background: linear-gradient(135deg, var(--white) 0%, var(--secondary-50) 100%);
border-radius: var(--radius-2xl);
padding: var(--space-8);
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.15),
0 0 0 1px rgba(255, 255, 255, 0.05),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg,
var(--enterprise-blue) 0%,
var(--enterprise-gold) 50%,
var(--enterprise-blue) 100%);
border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.form-section {
background: rgba(255, 255, 255, 0.7);
border-radius: var(--radius-xl);
padding: var(--space-8);
margin-bottom: var(--space-8);
border: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
transition: var(--transition-all);
position: relative;
&:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}
.form-section-title {
display: flex;
align-items: center;
gap: var(--space-3);
font-size: var(--text-lg);
font-weight: var(--font-weight-semibold);
color: var(--secondary-800);
margin-bottom: var(--space-6);
padding-bottom: var(--space-3);
border-bottom: 2px solid var(--secondary-200);
position: relative;
i {
color: var(--enterprise-blue);
font-size: var(--text-xl);
width: 24px;
text-align: center;
}
&::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 60px;
height: 2px;
background: linear-gradient(90deg, var(--enterprise-blue), var(--enterprise-gold));
}
}
}
}
// Enhanced input styling
.input-single {
position: relative;
margin-bottom: var(--space-6);
label {
display: block;
font-size: var(--text-sm);
font-weight: var(--font-weight-medium);
color: var(--secondary-700);
margin-bottom: var(--space-2);
transition: var(--transition-colors);
&.required::after {
content: ' *';
color: var(--error);
font-weight: var(--font-weight-bold);
}
}
input,
textarea,
select {
width: 100%;
padding: var(--space-4) var(--space-4);
font-size: var(--text-base);
color: var(--secondary-800);
background: var(--white);
border: 2px solid var(--secondary-200);
border-radius: var(--radius-lg);
transition: var(--transition-all);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
position: relative;
&::placeholder {
color: var(--secondary-400);
font-style: italic;
}
&:focus {
outline: none;
border-color: var(--enterprise-blue);
box-shadow:
0 0 0 3px rgba(59, 130, 246, 0.1),
0 4px 6px -1px rgba(0, 0, 0, 0.1);
transform: translateY(-1px);
}
&:hover:not(:focus) {
border-color: var(--secondary-300);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
&.error {
border-color: var(--error);
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
&.success {
border-color: var(--success);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
}
textarea {
min-height: 120px;
resize: vertical;
font-family: inherit;
line-height: var(--leading-relaxed);
}
select {
cursor: pointer;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
background-position: right var(--space-3) center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: var(--space-10);
appearance: none;
}
// Input validation states
&.has-error {
input, textarea, select {
border-color: var(--error);
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
}
&.has-success {
input, textarea, select {
border-color: var(--success);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
}
// Floating label effect
&.floating-label {
label {
position: absolute;
top: var(--space-4);
left: var(--space-4);
color: var(--secondary-500);
transition: var(--transition-all);
pointer-events: none;
background: var(--white);
padding: 0 var(--space-2);
}
input:focus + label,
input:not(:placeholder-shown) + label {
top: -8px;
left: var(--space-3);
font-size: var(--text-xs);
color: var(--enterprise-blue);
font-weight: var(--font-weight-medium);
}
}
}
// Enhanced checkbox styling
.checkbox-group {
display: flex;
flex-direction: column;
gap: var(--space-4);
.checkbox-single {
display: flex;
align-items: flex-start;
gap: var(--space-3);
padding: var(--space-4);
background: rgba(255, 255, 255, 0.5);
border-radius: var(--radius-lg);
border: 1px solid var(--secondary-200);
transition: var(--transition-all);
&:hover {
background: rgba(255, 255, 255, 0.8);
border-color: var(--secondary-300);
}
input[type="checkbox"] {
width: 20px;
height: 20px;
margin: 0;
cursor: pointer;
appearance: none;
border: 2px solid var(--secondary-300);
border-radius: var(--radius-base);
background: var(--white);
position: relative;
transition: var(--transition-all);
flex-shrink: 0;
margin-top: 2px;
&:checked {
background: var(--enterprise-blue);
border-color: var(--enterprise-blue);
}
&:checked::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--white);
font-size: var(--text-sm);
font-weight: var(--font-weight-bold);
}
&:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
}
label {
cursor: pointer;
font-size: var(--text-sm);
line-height: var(--leading-relaxed);
color: var(--secondary-700);
margin: 0;
a {
color: var(--enterprise-blue);
text-decoration: none;
font-weight: var(--font-weight-medium);
&:hover {
text-decoration: underline;
}
}
}
}
}
// Enhanced form status styling
.form-status {
padding: var(--space-4);
border-radius: var(--radius-lg);
margin: var(--space-6) 0;
display: flex;
align-items: center;
gap: var(--space-3);
font-weight: var(--font-weight-medium);
&.success {
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.2);
color: var(--success);
i {
color: var(--success);
}
}
&.error {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.2);
color: var(--error);
i {
color: var(--error);
}
}
.status-content {
display: flex;
align-items: center;
gap: var(--space-3);
flex-direction: column;
align-items: flex-start;
width: 100%;
.error-details {
margin-top: var(--space-2);
padding-left: var(--space-8);
small {
font-size: var(--text-sm);
color: var(--secondary-600);
line-height: var(--leading-relaxed);
a {
color: var(--enterprise-blue);
text-decoration: none;
font-weight: var(--font-weight-medium);
&:hover {
text-decoration: underline;
}
}
}
}
}
}
// Enhanced form actions
.form-actions {
text-align: center;
padding-top: var(--space-6);
border-top: 1px solid var(--secondary-200);
.enterprise-btn {
background: linear-gradient(135deg, var(--enterprise-blue) 0%, var(--enterprise-dark-blue) 100%);
border: none;
color: var(--white);
padding: var(--space-4) var(--space-8);
font-size: var(--text-lg);
font-weight: var(--font-weight-semibold);
border-radius: var(--radius-xl);
cursor: pointer;
transition: var(--transition-all);
box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: var(--space-3);
min-width: 280px;
justify-content: center;
&::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: var(--transition-all);
}
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
&::before {
left: 100%;
}
}
&:active {
transform: translateY(0);
}
&:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
&:hover {
transform: none;
box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}
}
i {
transition: var(--transition-transform);
}
&:hover i {
transform: translateX(4px);
}
.fa-spinner {
animation: spin 1s linear infinite;
}
}
.form-disclaimer {
margin-top: var(--space-4);
font-size: var(--text-sm);
color: var(--secondary-500);
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
i {
color: var(--success);
}
}
}
// Contact info cards enhancement
.contact-info-card {
background: linear-gradient(135deg, var(--white) 0%, var(--secondary-50) 100%);
border-radius: var(--radius-xl);
padding: var(--space-8);
text-align: center;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: var(--transition-all);
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--enterprise-blue), var(--enterprise-gold));
}
&:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}
.contact-info-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--enterprise-blue), var(--enterprise-light-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-6);
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
i {
font-size: var(--text-2xl);
color: var(--white);
}
}
h4 {
font-size: var(--text-xl);
font-weight: var(--font-weight-bold);
color: var(--secondary-800);
margin-bottom: var(--space-2);
}
p {
color: var(--secondary-600);
margin-bottom: var(--space-4);
}
a {
display: block;
color: var(--enterprise-blue);
text-decoration: none;
font-weight: var(--font-weight-medium);
margin-bottom: var(--space-1);
transition: var(--transition-colors);
&:hover {
color: var(--enterprise-dark-blue);
text-decoration: underline;
}
}
.contact-hours {
display: block;
font-size: var(--text-sm);
color: var(--success);
font-weight: var(--font-weight-medium);
margin-top: var(--space-3);
padding: var(--space-2) var(--space-4);
background: rgba(16, 185, 129, 0.1);
border-radius: var(--radius-lg);
border: 1px solid rgba(16, 185, 129, 0.2);
}
address {
font-style: normal;
line-height: var(--leading-relaxed);
color: var(--secondary-700);
}
}
// Animations
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
// Form animation classes
.enterprise-form .form-section {
animation: fadeInUp 0.6s ease-out;
}
.enterprise-form .form-section:nth-child(2) {
animation-delay: 0.1s;
}
.enterprise-form .form-section:nth-child(3) {
animation-delay: 0.2s;
}
.enterprise-form .form-section:nth-child(4) {
animation-delay: 0.3s;
}
// Contact section header enhancements
.contact-section-header {
text-align: center;
margin-bottom: var(--space-12);
.header-badge {
display: inline-flex;
align-items: center;
gap: var(--space-2);
background: linear-gradient(135deg, var(--enterprise-blue), var(--enterprise-light-blue));
color: var(--white) !important;
padding: var(--space-3) var(--space-6);
border-radius: var(--radius-full);
font-size: var(--text-sm);
font-weight: var(--font-weight-semibold);
margin-bottom: var(--space-6);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
animation: pulse 2s infinite;
i {
font-size: var(--text-base);
color: var(--white) !important;
}
span {
color: var(--white) !important;
}
}
.contact-subtitle {
font-size: var(--text-lg);
color: var(--secondary-600);
line-height: var(--leading-relaxed);
margin-bottom: var(--space-8);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.trust-indicators {
display: flex;
justify-content: center;
gap: var(--space-8);
flex-wrap: wrap;
margin-top: var(--space-8);
.trust-item {
display: flex;
align-items: center;
gap: var(--space-2);
background: rgba(255, 255, 255, 0.8);
padding: var(--space-3) var(--space-4);
border-radius: var(--radius-lg);
border: 1px solid var(--secondary-200);
font-size: var(--text-sm);
font-weight: var(--font-weight-medium);
color: var(--secondary-700);
transition: var(--transition-all);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
&:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background: var(--white);
}
i {
color: var(--success);
font-size: var(--text-base);
}
}
}
}
// Enhanced sidebar styling
.contact-sidebar-card {
.sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-6);
.enterprise-badge {
display: flex;
align-items: center;
gap: var(--space-2);
background: linear-gradient(135deg, var(--enterprise-gold), var(--enterprise-light-gold));
color: var(--white);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-full);
font-size: var(--text-xs);
font-weight: var(--font-weight-bold);
box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
i {
font-size: var(--text-sm);
}
}
}
.sidebar-features {
.feature-item {
.feature-content {
.feature-tags {
display: flex;
gap: var(--space-2);
margin-top: var(--space-3);
flex-wrap: wrap;
.tag {
background: rgba(59, 130, 246, 0.1);
color: var(--enterprise-blue);
padding: var(--space-1) var(--space-3);
border-radius: var(--radius-full);
font-size: var(--text-xs);
font-weight: var(--font-weight-medium);
border: 1px solid rgba(59, 130, 246, 0.2);
}
}
}
}
}
}
// Pulse animation for header badge
@keyframes pulse {
0%, 100% {
transform: scale(1);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
50% {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
}
// Legacy contact form styles for backward compatibility
.contact-form {
.input-single {
margin-bottom: 30px;
&:nth-last-of-type(1) {
margin-bottom: 0px;
}
}
}
/* ====
--------- (3.02) forms styles end ---------
==== */

View File

@@ -0,0 +1,967 @@
/* ====
--------- Hero Banner - Complete Rewrite ---------
==== */
.hero-banner {
position: relative;
min-height: 70vh;
background: linear-gradient(135deg,
#0f172a 0%,
#1e293b 25%,
#334155 50%,
#1e293b 75%,
#0f172a 100%);
overflow: hidden;
display: flex;
align-items: center;
color: var(--white) !important;
font-family: var(--font-family-sans);
padding: 4rem 0;
// Force all text to be white
* {
color: var(--white) !important;
}
// Video-like Background Elements
.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
overflow: hidden;
// Animated Code Lines
.code-animation {
position: absolute;
top: 20%;
left: 5%;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.875rem;
opacity: 0.3;
animation: codeTyping 8s ease-in-out infinite;
.code-line {
margin-bottom: 0.5rem;
white-space: nowrap;
.code-keyword {
color: #3b82f6;
font-weight: 600;
}
.code-string {
color: #10b981;
}
.code-function {
color: #f59e0b;
}
&.line-1 { animation-delay: 0s; }
&.line-2 { animation-delay: 1s; }
&.line-3 { animation-delay: 2s; }
&.line-4 { animation-delay: 3s; }
}
}
// Floating Tech Icons
.floating-tech {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.tech-icon {
position: absolute;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 1.125rem;
backdrop-filter: blur(10px);
animation: techFloat 6s ease-in-out infinite;
&.icon-1 {
top: 15%;
left: 15%;
animation-delay: 0s;
}
&.icon-2 {
top: 25%;
right: 20%;
animation-delay: 1s;
}
&.icon-3 {
top: 60%;
left: 10%;
animation-delay: 2s;
}
&.icon-4 {
top: 70%;
right: 15%;
animation-delay: 3s;
}
&.icon-5 {
top: 40%;
left: 80%;
animation-delay: 4s;
}
&.icon-6 {
top: 80%;
right: 30%;
animation-delay: 5s;
}
}
}
// Dashboard Elements
.dashboard-elements {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.dashboard-card {
position: absolute;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 1rem;
backdrop-filter: blur(15px);
min-width: 160px;
animation: dashboardFloat 8s ease-in-out infinite;
.card-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.75rem;
font-size: 0.75rem;
color: var(--white);
text-transform: none;
letter-spacing: 0.05em;
i {
color: #3b82f6;
}
}
.card-content {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--white);
.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
&.resolved {
background: #10b981;
box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
}
.metric-value {
font-weight: 700;
font-size: 1.125rem;
color: var(--white);
}
}
&.card-1 {
top: 10%;
right: 5%;
animation-delay: 0s;
}
&.card-2 {
top: 50%;
left: 5%;
animation-delay: 2s;
}
&.card-3 {
bottom: 20%;
right: 10%;
animation-delay: 4s;
}
}
}
// Network Connection Lines
.network-lines {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.connection-line {
position: absolute;
height: 1px;
background: linear-gradient(90deg,
transparent 0%,
rgba(59, 130, 246, 0.3) 50%,
transparent 100%);
animation: dataFlow 4s ease-in-out infinite;
&.line-1 {
top: 30%;
left: 10%;
width: 200px;
animation-delay: 0s;
}
&.line-2 {
top: 60%;
right: 15%;
width: 150px;
animation-delay: 1s;
}
&.line-3 {
top: 45%;
left: 20%;
width: 180px;
animation-delay: 2s;
}
&.line-4 {
bottom: 30%;
right: 20%;
width: 120px;
animation-delay: 3s;
}
}
}
// Data Flow Particles
.data-particles {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.particle {
position: absolute;
width: 4px;
height: 4px;
background: #3b82f6;
border-radius: 50%;
box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
animation: particleMove 6s ease-in-out infinite;
&.particle-1 {
top: 20%;
left: 20%;
animation-delay: 0s;
}
&.particle-2 {
top: 40%;
right: 25%;
animation-delay: 1s;
}
&.particle-3 {
top: 60%;
left: 30%;
animation-delay: 2s;
}
&.particle-4 {
top: 80%;
right: 20%;
animation-delay: 3s;
}
&.particle-5 {
top: 35%;
left: 70%;
animation-delay: 4s;
}
&.particle-6 {
top: 70%;
right: 40%;
animation-delay: 5s;
}
}
}
// Video Overlay
.video-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg,
rgba(15, 23, 42, 0.8) 0%,
rgba(30, 41, 59, 0.7) 25%,
rgba(51, 65, 85, 0.6) 50%,
rgba(30, 41, 59, 0.7) 75%,
rgba(15, 23, 42, 0.8) 100%);
z-index: 1;
}
}
// Main Container
.container {
position: relative;
z-index: 2;
}
// Hero Content
.hero-content {
padding: 1.5rem 0;
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.375rem;
background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
border: 1px solid rgba(16, 185, 129, 0.4);
color: var(--white) !important;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 600;
margin-bottom: 1rem;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
text-transform: none;
letter-spacing: 0.05em;
&:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.badge-icon {
width: 18px;
height: 18px;
background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
i {
font-size: 0.5rem;
color: var(--white);
}
}
}
.hero-title {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 800;
line-height: 1.2;
margin-bottom: 1rem;
color: var(--white) !important;
font-family: var(--font-family-display);
letter-spacing: -0.02em;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-description {
font-size: 1rem;
line-height: 1.6;
color: var(--white) !important;
margin-bottom: 2rem;
max-width: 650px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
opacity: 0.95;
}
// Hero Metrics
.hero-metrics {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
justify-content: center;
.metric-item {
display: flex;
align-items: center;
gap: 0.75rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 1rem;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
min-width: 160px;
&:hover,
&.active {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(59, 130, 246, 0.3);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.metric-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
i {
font-size: 1.125rem;
color: var(--white);
}
}
.metric-content {
.metric-value {
font-size: 1.25rem;
font-weight: 700;
color: var(--white) !important;
margin-bottom: 0.25rem;
font-family: var(--font-family-display);
line-height: 1;
}
.metric-label {
font-size: 0.75rem;
color: var(--white) !important;
text-transform: none;
letter-spacing: 0.05em;
}
}
}
}
// Hero Actions
.hero-actions {
display: flex;
gap: 0.75rem;
margin-bottom: 2rem;
flex-wrap: wrap;
justify-content: center;
.btn-primary,
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 1.5rem;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.875rem;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent 0%,
rgba(255, 255, 255, 0.2) 50%,
transparent 100%);
transition: left 0.6s ease;
}
&:hover::before {
left: 100%;
}
i {
transition: transform 0.3s ease;
}
&:hover i {
transform: translateX(4px);
}
}
.btn-primary {
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
color: var(--white) !important;
border: none;
&:hover {
background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
transform: translateY(-3px);
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
color: var(--white) !important;
}
}
.btn-secondary {
background: transparent;
color: var(--white) !important;
border: 2px solid rgba(255, 255, 255, 0.3);
&:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-3px);
color: var(--white) !important;
}
}
}
// Trust Badges
.trust-badges {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
.trust-badge {
display: flex;
align-items: center;
gap: 0.375rem;
color: var(--white) !important;
font-size: 0.7rem;
padding: 0.375rem 0.75rem;
background: rgba(255, 255, 255, 0.08);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
font-weight: 500;
text-transform: none;
letter-spacing: 0.03em;
&:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
i {
color: var(--white);
font-size: 0.75rem;
}
}
}
}
// Social Links
.social-links {
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 0.5rem;
z-index: 3;
.social-link {
width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
text-decoration: none;
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: var(--white);
}
i {
font-size: 0.875rem;
}
}
}
}
// Video-like Background Animations
@keyframes codeTyping {
0%, 100% {
opacity: 0.3;
transform: translateX(0);
}
50% {
opacity: 0.6;
transform: translateX(10px);
}
}
@keyframes techFloat {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(5deg);
}
}
@keyframes dashboardFloat {
0%, 100% {
transform: translateY(0px) scale(1);
}
50% {
transform: translateY(-10px) scale(1.02);
}
}
@keyframes dataFlow {
0% {
opacity: 0;
transform: scaleX(0);
}
50% {
opacity: 1;
transform: scaleX(1);
}
100% {
opacity: 0;
transform: scaleX(0);
}
}
@keyframes particleMove {
0%, 100% {
transform: translate(0, 0);
opacity: 0.6;
}
25% {
transform: translate(20px, -10px);
opacity: 1;
}
50% {
transform: translate(-10px, 15px);
opacity: 0.8;
}
75% {
transform: translate(15px, 5px);
opacity: 1;
}
}
// Responsive Design
@media (max-width: 768px) {
.hero-banner {
min-height: 65vh;
padding: 2.5rem 0;
display: flex;
align-items: center;
.container {
width: 100%;
padding: 0 1.5rem;
}
.hero-background {
.code-animation {
font-size: 0.7rem;
opacity: 0.2;
top: 15%;
left: 3%;
}
.tech-icon {
width: 32px;
height: 32px;
font-size: 0.9rem;
}
.dashboard-card {
padding: 0.75rem;
min-width: 140px;
font-size: 0.8rem;
}
.connection-line {
height: 0.5px;
}
.particle {
width: 3px;
height: 3px;
}
}
.hero-content {
text-align: center;
padding: 1rem 0;
width: 100%;
.hero-title {
font-size: 1.75rem;
margin-bottom: 0.75rem;
}
.hero-description {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.hero-metrics {
justify-content: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
width: 100%;
.metric-item {
min-width: 140px;
padding: 0.75rem;
display: flex;
justify-content: center;
align-items: center;
.metric-icon {
width: 36px;
height: 36px;
i {
font-size: 1rem;
}
}
.metric-content {
text-align: left;
.metric-value {
font-size: 1.125rem;
}
}
}
}
.hero-actions {
justify-content: center;
margin-bottom: 1.5rem;
width: 100%;
.btn-primary,
.btn-secondary {
padding: 0.75rem 1.25rem;
font-size: 0.8rem;
text-align: center;
}
}
.trust-badges {
justify-content: center;
gap: 0.75rem;
width: 100%;
}
}
.social-links {
position: static;
transform: none;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 1rem;
gap: 0.5rem;
.social-link {
width: 32px;
height: 32px;
i {
font-size: 0.8rem;
}
}
}
}
}
@media (max-width: 480px) {
.hero-banner {
min-height: 60vh;
padding: 1.5rem 0;
display: flex;
align-items: center;
.container {
width: 100%;
padding: 0 1rem;
}
.hero-background {
.code-animation {
font-size: 0.6rem;
opacity: 0.1;
top: 5%;
left: 2%;
}
.tech-icon {
width: 24px;
height: 24px;
font-size: 0.7rem;
}
.dashboard-card {
padding: 0.4rem;
min-width: 100px;
font-size: 0.65rem;
}
.connection-line {
display: none;
}
.particle {
width: 2px;
height: 2px;
}
}
.hero-content {
text-align: center;
padding: 0.5rem 0;
width: 100%;
.hero-badge {
margin: 0 auto 0.75rem;
font-size: 0.7rem;
padding: 0.4rem 0.8rem;
}
.hero-title {
font-size: 1.4rem;
margin-bottom: 0.75rem;
line-height: 1.3;
text-align: center;
}
.hero-description {
font-size: 0.8rem;
margin-bottom: 1.5rem;
text-align: center;
max-width: 100%;
padding: 0 0.5rem;
}
.hero-metrics {
flex-direction: column;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
width: 100%;
.metric-item {
width: 100%;
max-width: 280px;
padding: 0.75rem;
display: flex;
justify-content: center;
align-items: center;
.metric-icon {
width: 36px;
height: 36px;
i {
font-size: 1rem;
}
}
.metric-content {
text-align: left;
.metric-value {
font-size: 1.1rem;
}
.metric-label {
font-size: 0.7rem;
}
}
}
}
.hero-actions {
flex-direction: column;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
width: 100%;
.btn-primary,
.btn-secondary {
width: 100%;
max-width: 280px;
justify-content: center;
padding: 0.75rem 1.25rem;
font-size: 0.8rem;
text-align: center;
}
}
.trust-badges {
flex-direction: column;
align-items: center;
gap: 0.5rem;
width: 100%;
.trust-badge {
width: 100%;
max-width: 200px;
justify-content: center;
text-align: center;
}
}
}
.social-links {
position: static;
transform: none;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 1.5rem;
gap: 0.5rem;
.social-link {
width: 36px;
height: 36px;
i {
font-size: 0.9rem;
}
}
}
}
}

View File

@@ -0,0 +1,824 @@
/* ====
--------- Modern Banner Component Styles ---------
==== */
.modern-banner {
position: relative;
min-height: 100vh;
background: linear-gradient(135deg,
#0a0a0a 0%,
#1a1a2e 25%,
#16213e 50%,
#0f3460 75%,
#0a0a0a 100%);
overflow: hidden;
display: flex;
align-items: center;
color: var(--white);
font-family: var(--font-family-sans);
// Animated Background
.banner-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
// Floating Shapes
.floating-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg,
rgba(59, 130, 246, 0.1) 0%,
rgba(99, 102, 241, 0.1) 100%);
animation: float 6s ease-in-out infinite;
&.shape-1 {
width: 80px;
height: 80px;
top: 20%;
left: 10%;
animation-delay: 0s;
}
&.shape-2 {
width: 120px;
height: 120px;
top: 60%;
right: 15%;
animation-delay: 2s;
}
&.shape-3 {
width: 60px;
height: 60px;
bottom: 30%;
left: 20%;
animation-delay: 4s;
}
&.shape-4 {
width: 100px;
height: 100px;
top: 40%;
right: 30%;
animation-delay: 1s;
}
&.shape-5 {
width: 70px;
height: 70px;
bottom: 20%;
right: 10%;
animation-delay: 3s;
}
}
}
// Grid Overlay
.grid-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
animation: gridMove 20s linear infinite;
}
// Gradient Orbs
.gradient-orb {
position: absolute;
border-radius: 50%;
filter: blur(100px);
opacity: 0.3;
animation: orbFloat 8s ease-in-out infinite;
&.orb-1 {
width: 300px;
height: 300px;
background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
top: 10%;
left: 10%;
animation-delay: 0s;
}
&.orb-2 {
width: 200px;
height: 200px;
background: radial-gradient(circle, #6366f1 0%, transparent 70%);
top: 60%;
right: 15%;
animation-delay: 3s;
}
&.orb-3 {
width: 250px;
height: 250px;
background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
bottom: 20%;
left: 50%;
animation-delay: 6s;
}
}
}
// Main Content
.container {
position: relative;
z-index: 2;
}
.banner-content {
padding: 2rem 0;
// Status Badge
.status-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.3);
color: #10b981;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
.status-indicator {
width: 8px;
height: 8px;
background: #10b981;
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}
}
// Main Title
.banner-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg,
var(--white) 0%,
rgba(255, 255, 255, 0.8) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-family: var(--font-family-display);
letter-spacing: -0.02em;
}
// Description
.banner-description {
font-size: 1.125rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 3rem;
max-width: 500px;
}
// Interactive Stats
.interactive-stats {
margin-bottom: 3rem;
.stats-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
.stat-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg,
rgba(59, 130, 246, 0.1) 0%,
rgba(99, 102, 241, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
&:hover,
&.active {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(59, 130, 246, 0.3);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
&::before {
opacity: 1;
}
.stat-indicator {
opacity: 1;
transform: scale(1);
}
}
.stat-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
position: relative;
z-index: 1;
i {
font-size: 1.25rem;
color: var(--white);
}
}
.stat-content {
position: relative;
z-index: 1;
.stat-number {
font-size: 1.5rem;
font-weight: 700;
color: var(--white);
margin-bottom: 0.25rem;
font-family: var(--font-family-display);
}
.stat-label {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.7);
text-transform: none;
letter-spacing: 0.05em;
}
}
.stat-indicator {
position: absolute;
top: 1rem;
right: 1rem;
width: 8px;
height: 8px;
background: #3b82f6;
border-radius: 50%;
opacity: 0;
transform: scale(0);
transition: all 0.3s ease;
}
}
}
}
// CTA Buttons
.banner-actions {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
.btn-primary,
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1rem;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent 0%,
rgba(255, 255, 255, 0.2) 50%,
transparent 100%);
transition: left 0.6s ease;
}
&:hover::before {
left: 100%;
}
i {
transition: transform 0.3s ease;
}
&:hover i {
transform: translateX(4px);
}
}
.btn-primary {
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
color: var(--white);
border: none;
&:hover {
background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
transform: translateY(-2px);
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}
}
.btn-secondary {
background: transparent;
color: var(--white);
border: 2px solid rgba(255, 255, 255, 0.3);
&:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}
}
}
// Trust Indicators
.trust-indicators {
display: flex;
gap: 2rem;
flex-wrap: wrap;
.trust-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.7);
font-size: 0.875rem;
i {
color: #10b981;
font-size: 1rem;
}
}
}
}
// Banner Visual
.banner-visual {
position: relative;
height: 600px;
.image-container {
position: relative;
width: 100%;
height: 100%;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
.image-wrapper {
position: relative;
width: 100%;
height: 100%;
.main-image {
object-fit: cover;
transition: transform 0.3s ease;
}
.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg,
rgba(59, 130, 246, 0.1) 0%,
rgba(99, 102, 241, 0.1) 100%);
}
}
&:hover .main-image {
transform: scale(1.05);
}
}
// Floating Cards
.floating-cards {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
.floating-card {
position: absolute;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;
padding: 1rem;
display: flex;
align-items: center;
gap: 0.75rem;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
animation: cardFloat 6s ease-in-out infinite;
.card-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
i {
font-size: 1rem;
color: var(--white);
}
}
.card-content {
.card-title {
font-size: 0.75rem;
color: #64748b;
text-transform: none;
letter-spacing: 0.05em;
margin-bottom: 0.25rem;
}
.card-value {
font-size: 1.125rem;
font-weight: 700;
color: #1e293b;
font-family: var(--font-family-display);
}
}
&.card-1 {
top: 10%;
right: -20px;
animation-delay: 0s;
}
&.card-2 {
top: 50%;
left: -20px;
animation-delay: 2s;
}
&.card-3 {
bottom: 20%;
right: -20px;
animation-delay: 4s;
}
}
}
// Tech Stack
.tech-stack {
position: absolute;
bottom: 1rem;
left: 1rem;
display: flex;
gap: 0.5rem;
.tech-item {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
i {
font-size: 1.25rem;
color: var(--white);
}
}
}
}
// Social Links
.social-links {
position: absolute;
right: 2rem;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 1rem;
z-index: 3;
.social-link {
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
text-decoration: none;
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: var(--white);
}
i {
font-size: 1.125rem;
}
}
}
}
// Animations
@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
}
@keyframes gridMove {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}
@keyframes orbFloat {
0%, 100% {
transform: translateY(0px) scale(1);
}
50% {
transform: translateY(-30px) scale(1.1);
}
}
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(1.2);
}
}
@keyframes cardFloat {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
}
// Responsive Design
@media (max-width: 768px) {
.modern-banner {
min-height: auto;
padding: 4rem 0;
.banner-content {
text-align: center;
padding: 1rem 0;
.banner-title {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.banner-description {
font-size: 1rem;
margin-bottom: 2rem;
}
.interactive-stats {
margin-bottom: 2rem;
.stats-container {
grid-template-columns: 1fr;
gap: 0.75rem;
.stat-card {
padding: 1rem;
}
}
}
.banner-actions {
justify-content: center;
margin-bottom: 2rem;
.btn-primary,
.btn-secondary {
padding: 0.875rem 1.5rem;
font-size: 0.9rem;
}
}
.trust-indicators {
justify-content: center;
gap: 1rem;
.trust-item {
font-size: 0.8rem;
}
}
}
.banner-visual {
height: 400px;
margin-top: 2rem;
.floating-cards {
.floating-card {
padding: 0.75rem;
.card-icon {
width: 32px;
height: 32px;
i {
font-size: 0.875rem;
}
}
.card-content {
.card-title {
font-size: 0.7rem;
}
.card-value {
font-size: 1rem;
}
}
&.card-1 {
top: 5%;
right: -10px;
}
&.card-2 {
top: 60%;
left: -10px;
}
&.card-3 {
bottom: 10%;
right: -10px;
}
}
}
.tech-stack {
bottom: 0.5rem;
left: 0.5rem;
.tech-item {
width: 32px;
height: 32px;
i {
font-size: 1rem;
}
}
}
}
.social-links {
position: static;
transform: none;
flex-direction: row;
justify-content: center;
margin-top: 2rem;
.social-link {
width: 40px;
height: 40px;
i {
font-size: 1rem;
}
}
}
}
}
@media (max-width: 480px) {
.modern-banner {
padding: 3rem 0;
.banner-content {
.banner-title {
font-size: 2rem;
}
.banner-description {
font-size: 0.9rem;
}
.interactive-stats {
.stats-container {
.stat-card {
padding: 0.75rem;
.stat-icon {
width: 40px;
height: 40px;
margin-bottom: 0.75rem;
i {
font-size: 1rem;
}
}
.stat-content {
.stat-number {
font-size: 1.25rem;
}
.stat-label {
font-size: 0.8rem;
}
}
}
}
}
.banner-actions {
flex-direction: column;
align-items: center;
.btn-primary,
.btn-secondary {
width: 100%;
max-width: 280px;
justify-content: center;
}
}
.trust-indicators {
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
}
.banner-visual {
height: 300px;
}
}
}

View File

@@ -0,0 +1,182 @@
/* ====
--------- (3.03) preloader styles start ---------
==== */
.ctn-preloader {
align-items: center;
cursor: none;
display: flex;
height: 100%;
justify-content: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 99999;
}
.ctn-preloader .animation-preloader {
position: absolute;
z-index: 100;
}
.ctn-preloader .animation-preloader .spinner {
animation: spinner 1s infinite linear;
border-radius: 50%;
border: 4px solid #ffffff50;
border-top-color: var(--enterprise-blue);
height: 9em;
margin: 0 auto 3.5em auto;
width: 9em;
}
.ctn-preloader .animation-preloader .txt-loading {
text-align: center;
user-select: none;
span {
font-size: 30px;
letter-spacing: 2px;
font-weight: 400;
}
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
animation: letters-loading 4s infinite;
color: var(--enterprise-blue);
content: attr(data-text-preloader);
left: 0;
opacity: 0;
position: absolute;
top: 0;
transform: rotateY(-90deg);
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
color: #ffffff50;
position: relative;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(2):before {
animation-delay: 0.2s;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(3):before {
animation-delay: 0.4s;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(4):before {
animation-delay: 0.6s;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(5):before {
animation-delay: 0.8s;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(6):before {
animation-delay: 1s;
}
.ctn-preloader
.animation-preloader
.txt-loading
.letters-loading:nth-child(7):before {
animation-delay: 1.2s;
}
.ctn-preloader .loader-section {
background-color: #030015;
height: 100%;
position: fixed;
top: 0;
width: calc(50% + 1px);
}
.ctn-preloader .loader-section.section-left {
left: 0;
}
.ctn-preloader .loader-section.section-right {
right: 0;
}
.loaded .animation-preloader {
opacity: 0;
transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
background-color: var(--enterprise-blue) !important;
transform: translateX(-101%);
transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
transform: translateX(101%);
transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
@keyframes spinner {
to {
transform: rotateZ(360deg);
}
}
@keyframes letters-loading {
0%,
75%,
100% {
opacity: 0;
transform: rotateY(-90deg);
}
25%,
50% {
opacity: 1;
transform: rotateY(0deg);
}
}
@media screen and (max-width: 767px) {
.ctn-preloader .animation-preloader .spinner {
height: 8em;
width: 8em;
}
.ctn-preloader .animation-preloader .txt-loading {
span {
font-size: 24px;
}
}
}
@media screen and (max-width: 500px) {
.ctn-preloader .animation-preloader .spinner {
height: 7em;
width: 7em;
}
.ctn-preloader .animation-preloader .txt-loading {
span {
font-size: 20px;
}
}
}
/* ====
--------- (3.03) preloader styles end ---------
==== */