:root {
    --primary-color: #3a86ff;
    --secondary-color: #8338ec;
    --accent-color: #0056b3;
    --dark-color: #353535;
    --light-color: #f8f9fa;
    --text-color: #555;
    --border-color: #eaeaea;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, rgba(58, 134, 255, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-dark: 0 15px 40px rgba(0,0,0,0.15);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Lazy loading*/
    --lazy-duration: 0.6s;
    --lazy-delay: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, rgb(22 12 42) 0%, rgb(14 5 34) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-header i {
    color: var(--light-color);
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 5px;
    color: white;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-language {
    color: var(--light-color);
    border: none;
}
.btn-language:hover {
    color: var(--light-color);
}

.language-switcher {
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 150px;
    box-shadow: var(--shadow-medium);
    border-radius: 5px;
    display: none;
    z-index: 1000;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-color);
}

.language-dropdown a:hover {
    background: var(--light-color);
}


/* Section Styles */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-image {
    overflow: hidden;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.mission-card {
    border-left: 4px solid var(--primary-color);
    background: white;
}

/* Process Section */
.process-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--gradient-primary);
    color: white;
}

.process-icon i {
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.8rem;
}

/* Job Categories */
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}
.category-content h4 {
    color: var(--light-color);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

/* Services Section */
.service-card {
    background: white;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.rating {
    color: #ffc107;
}

.client-info img {
    border: 3px solid var(--primary-color);
}

/* Statistics */
.statistics {
    position: relative;
    overflow: hidden;
}

.statistics::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.1;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.counter {
    font-size: 3.5rem;
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    padding: 20px;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #e2e1e1;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}
.footer-logo {
    width: 9rem;
}
.footer a {
    color: #e2e1e1;
}

.footer a:hover {
    color: white;
}

.footer .social-icons a {
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer .social-icons a:hover {
    background: var(--primary-color);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Lazy Loading */
/* Base lazy-load setup */
.lazy-load {
    opacity: 0;
    transition: all 0.6s ease; /* default, can be overridden */
}

.lazy-loaded {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Different animation types */
.lazy-fade-up {
    transform: translateY(30px);
}

.lazy-fade-down {
    transform: translateY(-30px);
}

.lazy-fade-left {
    transform: translateX(-30px);
}

.lazy-fade-right {
    transform: translateX(30px);
}

.lazy-zoom-in {
    transform: scale(0.8);
}

.lazy-zoom-out {
    transform: scale(1.2);
}

/* Custom delays and durations via CSS variables */
.lazy-custom {
    transition-duration: var(--lazy-duration, 0.6s);
    transition-delay: var(--lazy-delay, 0s);
}








/* Hero Slider Container */
.hero-slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--dark-color);
}

/* Sticky Navigation Bar */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 15px 0;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;

}


.navbar-custom.transparent {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    margin-top: 40px;
}

.navbar-custom.dark {
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    margin-top: 50px;
}

.navbar-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Default logo (visible when not scrolled) */
.logo-default {
    height: 50px;
    transition: all 0.3s ease;
    opacity: 1;
}

.navbar.scrolled .logo-default {
    height: 40px;
    opacity: 0;
    position: absolute;
}

/* Scrolled logo (visible when scrolled) */
.logo-scrolled {
    height: 40px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
}

.navbar.scrolled .logo-scrolled {
    opacity: 1;
    position: relative;
}
.navbar-brand span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-scrolled .navbar-nav .nav-link {
    /*color: #353535;*/
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
}




.nav-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
}

.btn-nav {
    padding: 10px 25px;
    font-weight: 600;
}

.scrolled .btn-language {
    color: var(--light-color);
    border: none;
}


/* Slide Styles */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Background Image with Zoom Animation */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-out;
    z-index: -1;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

/* Content Container */
.slide-content {
    max-width: 1200px;
    width: 90%;
    color: white;
    z-index: 2;
    padding: 2rem;
    text-align: center;
    margin-top: 80px;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.hero-slide.active .category-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Title Animation */
.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    color: var(--secondary-color);
}

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Description Animation */
.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.hero-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Button Animation */
.slide-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s, transform 0.3s ease;
}

.hero-slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Navigation Controls */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Navigation Dots */
.slider-dots {
    display: flex;
    gap: 12px;
    margin: 0 1rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

.slider-dot:hover {
    background-color: white;
}

/* Navigation Arrows */
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.1s linear;
}

/* Slide Counter */
.slide-counter {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0 1rem;
}

/* Fancy Animation Background */
.animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.2) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

     /* Page header specific styling */
 .page-header {
     margin-top: 100px;
     padding: 60px 0 30px;
     text-align: center;
     background: linear-gradient(135deg, rgba(58,134,255,0.1) 0%, rgba(131,56,236,0.1) 100%);
     border-bottom: 1px solid var(--border-light);
 }

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.page-header .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
    color: var(--primary-color);
}



.about-text p {
    color: var(--dark-color);
}

.team-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

.about-section{
    min-height: 500px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.about-text ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.about-text ul li:last-child {
    border-bottom: none;
}

.about-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}
.form-control, .form-select {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 10px;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/*Sister website*/

.sister-sites a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.sister-sites a:hover {
    color: var(--primary-color);
}
.sister-sites img {
    /*filter: brightness(0) invert(1); !* makes logos white if they are dark; adjust as needed *!*/
    /*opacity: 0.8;*/
    transition: opacity 0.3s;
}
.sister-sites a:hover img {
    opacity: 1;
}



