:root {
--primary-color: #0686e0;
--secondary-color: #0686e0;
--dark-purple: #033759;
--dark-color: #050608;
--dark-light-color: #050608;
--text-color: #ffffff;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: var(--dark-color);
color: var(--text-color);
line-height: 1.6;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
align-items: center;
justify-content: center;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--dark-color);
}
::-webkit-scrollbar-thumb {
background: var(--primary-color);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--dark-purple);
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes pulseGlow {
0% {
box-shadow: 0 0 5px var(--primary-color);
}
50% {
box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--dark-purple);
}
100% {
box-shadow: 0 0 5px var(--primary-color);
}
}
.animate-fadeIn {
animation: fadeIn 1s ease-in;
}
.animate-pulse-glow {
animation: pulseGlow 2s infinite;
}
.btn-glow:hover {
box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--dark-purple);
transition: all 0.3s ease;
}
.image-overlay {
position: relative;
}
.image-overlay::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(to right, rgba(15, 15, 15, 0.8), transparent);
}
.hero-gradient {
background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(15, 15, 15, 0.9));
}
.glass-effect {
background: rgba(26, 26, 26, 0.5);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
.container {
padding: 0 20px;
}
}
input:focus, textarea:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.25);
outline: none;
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.05);
}
.border-glow {
border: 1px solid var(--primary-color);
box-shadow: 0 0 5px var(--primary-color);
}
.card {
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.footer-link {
transition: color 0.3s ease;
}
.footer-link:hover {
color: var(--primary-color);
}
.gallery-item {
transition: all 0.3s ease-in-out;
opacity: 1;
transform: translateY(0);
}
.gallery-item img {
transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
transform: scale(1.05);
}
.filter-btn {
position: relative;
overflow: hidden;
transition: all 0.3s ease-in-out;
}
.filter-btn::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--primary-color);
transition: all 0.3s ease-in-out;
transform: translateX(-50%);
}
.filter-btn:hover::after {
width: 100%;
}
.filter-btn.active {
background: var(--primary-color) !important;
color: white !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(232, 131, 37, 0.2);
}
.filter-btn:not(.active):hover {
background: rgba(232, 131, 37, 0.1) !important;
color: var(--primary-color) !important;
}
#filteredGallery {
transition: opacity 0.3s ease-in-out;
}
#filteredGallery.hidden {
opacity: 0;
pointer-events: none;
}
#filteredGallery .gallery-item {
animation: fadeInScale 0.5s ease-in-out forwards;
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
@media (max-width: 768px) {
.filter-btn {
font-size: 0.875rem;
padding: 0.5rem 1rem;
}
.gallery-item img {
height: 250px;
}
#gallerySlider {
gap: 16px;
}
}
@media (hover: none) {
.gallery-item .overlay {
opacity: 1;
background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}
.filter-btn:hover::after {
width: 0;
}
.filter-btn.active::after {
width: 100%;
}
}
.clone {
pointer-events: none;
}
.gallery-smooth-scroll {
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.gallery-loading {
position: relative;
}
.gallery-loading::after {
content: '';
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.5);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: var(--primary-color);
}
.gallery-error {
text-align: center;
padding: 2rem;
color: #ef4444;
background: rgba(239, 68, 68, 0.1);
border-radius: 0.5rem;
margin: 1rem 0;
}
.testimonials-slider-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
overflow: hidden;
}
#testimonialsSlider {
display: flex;
gap: 24px;
transition: transform 0.5s ease-in-out;
will-change: transform;
}
.testimonial-card {
flex-shrink: 0;
background: var(--dark-color);
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
transform: translateZ(0);
backface-visibility: hidden;
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
border-color: rgba(232, 131, 37, 0.3);
}
.testimonial-card img {
transition: transform 0.3s ease;
}
.testimonial-card:hover img {
transform: scale(1.1);
}
#prevTestimonial,
#nextTestimonial {
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--dark-color);
border: 1px solid rgba(232, 131, 37, 0.2);
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
#prevTestimonial:hover,
#nextTestimonial:hover {
background: rgba(232, 131, 37, 0.1);
border-color: rgba(232, 131, 37, 0.4);
transform: scale(1.1);
}
@media (max-width: 768px) {
.testimonials-slider-container {
padding: 0 10px;
}
#testimonialsSlider {
gap: 16px;
}
.testimonial-card {
min-width: 300px;
}
#prevTestimonial,
#nextTestimonial {
width: 40px;
height: 40px;
}
}
@media (hover: none) {
.testimonial-card:hover {
transform: none;
}
.testimonial-card:hover img {
transform: none;
}
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient 15s ease infinite;
}
.particles-container {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, transparent 20%, #0f172a 80%);
filter: url('#goo');
opacity: 0.3;
}
@keyframes countUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.counter-animation {
animation: countUp 1s ease-out forwards;
}
@keyframes spin-slow {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.animate-spin-slow {
animation: spin-slow 4s linear infinite;
}
.stats-card {
transition: all 0.3s ease;
}
.stats-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(232, 131, 37, 0.1);
}
@media (max-width: 768px) {
#home {
height: 100vh;
height: calc(var(--vh, 1vh) * 100);
}
.video-container iframe {
transform: scale(1.5) !important;
}
.hero-buttons {
width: 100%;
padding: 0 1rem;
}
.hero-buttons a {
width: 100%;
justify-content: center;
padding: 1rem 2rem;
margin: 0.5rem 0;
}
.content-wrapper {
padding-top: 4rem;
padding-bottom: 4rem;
}
.stats-bar {
width: 92%;
margin: 0 auto;
bottom: 1rem;
}
}
@supports (-webkit-touch-callout: none) {
#home {
height: -webkit-fill-available;
}
}
.unified-card {
background: linear-gradient(135deg, rgba(3, 55, 89, 0.8), rgba(21, 26, 28, 0.8), rgba(17, 27, 34, 0.9));
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 15px rgba(6, 134, 224, 0.3);
border-radius: 1rem;
backdrop-filter: blur(12px);
padding: 1.5rem;
color: #e0e7ff;
display: flex;
flex-direction: column;
gap: 1rem;
}
.unified-icon-container {
background-color: rgba(6, 134, 224, 0.2);
color: #0686e0;
padding: 0.5rem;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
flex-shrink: 0;
box-shadow: 0 0 8px rgba(6, 134, 224, 0.5);
}
.unified-card-header {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 600;
font-size: 1.125rem;
color: white;
}
.unified-badge {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: rgba(6, 134, 224, 0.2);
color: #0686e0;
border: 1px solid rgba(6, 134, 224, 0.4);
border-radius: 0.375rem;
padding: 0.25rem 0.5rem;
font-weight: 500;
font-size: 0.875rem;
width: fit-content;
}
.badge-red {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #7f1d1d;
color: #fca5a5;
border-radius: 0.375rem;
padding: 0.25rem 0.5rem;
font-weight: 500;
font-size: 0.875rem;
width: fit-content;
}
.unified-card-content {
font-size: 0.875rem;
color: #cbd5e1;
line-height: 1.4;
}
