body {
    font-family: 'Cairo', sans-serif;
}

/* If you want to apply it to specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700; /* Bold */
}

p, a, li, button {
    font-family: 'Cairo', sans-serif;
    font-weight: 400; /* Regular */
}

/* Clients Section */
.clients-carousel .client-card {
    padding: 20px;
    /* background: #a3bfb2; */
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Team Section */
.team-member {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

/* Statistics Section */
.stats-section .stat-number {
    line-height: 1;
}
.stats-section .stat-text {
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #a3bfb2;
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-content {
    padding: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
}

/* Responsive timeline */
@media (max-width: 10000px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 18px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
}

/* Footer */
.footer a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--accent-color) !important;
}


:root {
    --dark-blue: #0a192f;
    --darker-blue: #020c1b;
    --accent-color: #64ffda;
}

body {
    font-family: 'Calibre', 'Inter', 'San Francisco', 'SF Pro Text', -apple-system, system-ui, sans-serif;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--dark-blue), var(--darker-blue));
}

/* Background Elements */
#background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-element {
    position: absolute;
    opacity: 0.3;
    background-color: #a3bfb2;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Cover Section */
.cover-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cover-content {
    position: absolute;
    bottom: 20%;
    right: 0%;
    z-index: 2;
    color: #a3bfb2;
    padding: 2rem;
    background-color: rgba(10, 25, 47, 0.7);
    border-radius: 10px;
    width: 35%;
    float: left;
    text-align: left;
}

.cover-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cover-media video, .cover-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-section {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.carousel-item {
    padding: 2rem;
    text-align: center;
    min-height: 400px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    max-height: 300px;
    margin: 0 auto;
    display: block;
}

/* Gallery Section */
.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #a3bfb2;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Contact Form */
.contact-section {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a3bfb2;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #a3bfb2;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(100, 255, 218, 0.25);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-blue);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cover-content {
        width: 60%;

            position: absolute;
    bottom: 20%;
    right: 0%;
    z-index: 2;
    color: #a3bfb2;
    padding: 2rem;
    background-color: rgba(10, 25, 47, 0.7);
    border-radius: 10px;
   
    float: left;
    text-align: left;
    }
    
    .carousel-item {
        min-height: 300px;
    }
}


#form-response {
    display: none;
}

#form-response.alert {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

#form-response.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-response.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}