/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #2f55d4;
    --secondary-color: #ff5733;
    --dark-color: #161c2d;
    --text-color: #8492a6;
    --white-color: #ffffff;
    --accent-color: #00B4DB;
    --tech-gradient-1: #0B1B35;
    --tech-gradient-2: #1E3D59;
    --tech-gradient-3: #00B4DB;
    --light-bg: #f8f9fa;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    margin-bottom: 0;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(11, 27, 53, 0.98), rgba(30, 61, 89, 0.98)) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 180, 219, 0.2);
}

.navbar-brand .hero-logo {
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand .hero-logo {
    max-width: 100px !important;
}

/* Navigation Links */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: none;
}

.navbar .nav-link:hover {
    color: var(--tech-gradient-3) !important;
    text-shadow: 0 0 10px rgba(0, 180, 219, 0.5);
}

/* Contact Button in Navigation */
.navbar .contact-link {
    background: var(--tech-gradient-3);
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.4);
    text-shadow: none !important;
}

.navbar .contact-link:hover {
    background: #fff;
    color: var(--tech-gradient-3) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.navbar.scrolled .contact-link {
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tech-gradient-3);
}

.language-selector .current-lang {
    font-weight: 600;
    font-size: 0.9rem;
}

.language-menu {
    background: linear-gradient(135deg, rgba(11, 27, 53, 0.98), rgba(30, 61, 89, 0.98)) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 219, 0.3);
    border-radius: 15px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 180px;
}

.language-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.language-menu .dropdown-item:hover {
    background: rgba(0, 180, 219, 0.2);
    color: var(--tech-gradient-3);
    padding-left: 1.5rem;
}

.language-menu .flag-icon {
    font-size: 1.2rem;
}

/* Responsive Language Menu */
@media (max-width: 991px) {
    .language-selector {
        border: none;
        padding: 0.5rem 0 !important;
    }
    
    .language-menu {
        background: rgba(11, 27, 53, 0.95) !important;
        border: 1px solid rgba(0, 180, 219, 0.2);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    color: var(--tech-gradient-3);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    opacity: 1;
    visibility: visible;
    display: block;
}

.hero-title {
    font-size: 8.5rem;
    line-height: 1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 1;
    visibility: visible;
    display: block;
}

.outline-text {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    font-size: 9rem;
}

.outline-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 0;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.gradient-text {
    display: block;
    background: linear-gradient(45deg, var(--tech-gradient-3), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.highlight-text {
    display: block;
    color: #fff;
    font-size: 9rem;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
    margin: 0 auto 3rem auto;
    max-width: 800px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-cta {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 2rem;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Glow Button */
.glow-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: var(--tech-gradient-3);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.button-effect {
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.glow-button:hover .button-effect {
    transform: translateX(100%) rotate(45deg);
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--tech-gradient-3);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tech-gradient-3), transparent);
    opacity: 0.3;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: floatShape 20s infinite linear;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: floatShape 15s infinite linear reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: floatShape 10s infinite linear;
}

@keyframes floatShape {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(50px, 50px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

.digital-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--tech-gradient-3), transparent);
    animation: digitalLine 3s infinite;
}

.digital-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--tech-gradient-3) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

@keyframes digitalLine {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-title { font-size: 7rem; }
    .outline-text { font-size: 7.5rem; letter-spacing: 1.5px; }
    .gradient-text { font-size: 7.5rem; letter-spacing: 1.5px; }
    .highlight-text { font-size: 7.5rem; letter-spacing: 1.5px; }
    .hero-description { font-size: 2rem; }
}

@media (max-width: 991px) {
    .hero-title { font-size: 5rem; }
    .outline-text { font-size: 5.5rem; letter-spacing: 1px; }
    .gradient-text { font-size: 5.5rem; letter-spacing: 1px; }
    .highlight-text { font-size: 5.5rem; letter-spacing: 1px; }
    .hero-description { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 3.5rem; }
    .outline-text { font-size: 4rem; letter-spacing: 0.5px; }
    .gradient-text { font-size: 4rem; letter-spacing: 0.5px; }
    .highlight-text { font-size: 4rem; letter-spacing: 0.5px; }
    .hero-description { font-size: 1.5rem; }
}

.hero-visuals {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.6s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.tech-square {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--tech-gradient-3);
    bottom: 50px;
    left: -75px;
    animation: float 6s ease-in-out infinite;
}

.tech-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--tech-gradient-3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    top: 50%;
    right: -100px;
}

.tech-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--tech-gradient-3), transparent);
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 2s ease-in-out infinite;
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--tech-gradient-3);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    margin: -6px;
    animation: arrows 1.5s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scaleY(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scaleY(1.2); opacity: 1; }
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

@keyframes arrows {
    0% { opacity: 0; transform: rotate(45deg) translate(-20px, -20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(20px, 20px); }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .gradient-text {
        font-size: 100px;
    }
    
    .text-block {
        font-size: 60px;
    }
    
    .hero-stats {
    position: relative;
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
    
    .gradient-text {
        font-size: 80px;
    }
    
    .text-block {
        font-size: 50px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-shape-1,
.about-shape-2,
.about-shape-3 {
    position: absolute;
    pointer-events: none;
}

.about-shape-1 {
    width: 300px;
    height: 300px;
    border: 40px solid rgba(47, 85, 212, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    animation: rotateShape 20s linear infinite;
}

.about-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(47, 85, 212, 0.05) 0%, rgba(47, 85, 212, 0.02) 100%);
    right: -100px;
    top: 20%;
    border-radius: 20px;
    transform: rotate(45deg);
    animation: floatShape 5s ease-in-out infinite;
}

.about-shape-3 {
    width: 150px;
    height: 150px;
    border: 25px solid rgba(0, 180, 219, 0.05);
    border-radius: 50%;
    bottom: -75px;
    right: 10%;
    animation: pulseShape 3s ease-in-out infinite;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.about-image .main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.experience-box {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2;
    min-width: 280px;
}

.experience-box::before {
    content: '+';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--tech-gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 180, 219, 0.2);
}

.experience-box .years {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.experience-box .text {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    position: relative;
}

@media (max-width: 991px) {
    .experience-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -60px;
        margin-right: 30px;
        background: #fff;
    }
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@keyframes pulseShape {
    0%, 100% {
        transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
}

.sec-title {
    margin-bottom: 30px;
}

.sec-title .sub-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-color);
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(47,85,212,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
}

.feature-item .text {
    font-size: 16px;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-content .title {
        font-size: 48px;
    }

    .shape {
        display: none;
    }

    .hero-bottom {
        margin-top: 30px;
    }

    .info-box {
        margin-bottom: 20px;
    }

    .experience-box {
        position: relative;
    right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .slide-counter {
        display: none;
    }

    .digital-circle,
    .digital-square {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content .title {
        font-size: 36px;
    }

    .hero-content .sub-title {
        font-size: 16px;
    }

    .theme-btn {
        padding: 12px 30px;
    }

    .float-item {
        display: none;
    }
}

/* Process Steps Section */
.work-process {
    position: relative;
    background: linear-gradient(135deg, var(--tech-gradient-1) 0%, rgba(11, 27, 53, 0.95) 100%);
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.work-process .section-title h2,
.work-process .display-4 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.work-process .title-line {
    background: var(--tech-gradient-3);
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tech-gradient-3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-gradient-3), #00b4db);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--tech-gradient-3);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--tech-gradient-3);
    color: #fff;
    transform: rotate(360deg);
}

.step-content {
    position: relative;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3rem;
    overflow: hidden;
}

.connector-line {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 180, 219, 0.3);
}

.glow-effect {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        var(--tech-gradient-3),
        transparent
    );
    animation: glowFlow 2s linear infinite;
}

@keyframes glowFlow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(200%);
    }
}

.step-item:last-child .step-connector {
    display: none;
}

@media (max-width: 991px) {
    .process-steps {
        gap: 4rem;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-connector {
        height: 4rem;
        bottom: -4rem;
    }
}

@media (max-width: 768px) {
    .work-process {
        padding: 80px 0;
    }

    .tech-gradient-text {
        font-size: 1.5rem;
    }
}

/* Slider One */
.slider-one {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-one .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-one_image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slider-one_image-layer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.slider-one_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 10%;
    color: #fff;
}

.slider-one_title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slider-one_heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.slider-one_heading span {
    color: var(--tech-gradient-3);
}

.slider-one_button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.swiper-slide-active .slider-one_title,
.swiper-slide-active .slider-one_heading,
.swiper-slide-active .slider-one_button {
    opacity: 1;
    transform: translateY(0);
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--tech-gradient-3);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.theme-btn span {
    margin-right: 10px;
}

.theme-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.theme-btn:hover {
    background: #fff;
    color: var(--tech-gradient-3);
}

.theme-btn:hover i {
    transform: translateX(5px);
}

.slider-one_pagination {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
}

.slider-one_pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    margin: 12px 0;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.slider-one_pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.5);
}

@media (max-width: 991px) {
    .slider-one_content {
        margin-left: 5%;
        max-width: 90%;
    }

    .slider-one_heading {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .slider-one_heading {
        font-size: 36px;
    }

    .slider-one_title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .theme-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 27, 53, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tech-gradient-3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-text::after {
    transform: scaleX(1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tech-gradient-3);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.contact-link {
    background: var(--tech-gradient-3);
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.contact-link:hover {
    background: #fff;
    color: var(--tech-gradient-3) !important;
}

/* Burger Menu */
.burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.burger-icon span:first-child {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-icon span:last-child {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .burger-icon span:first-child {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .burger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .burger-icon span:last-child {
    transform: rotate(-45deg);
    bottom: 40%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11, 27, 53, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .contact-link {
        margin: 1rem 0;
        text-align: center;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--tech-gradient-1) 0%, var(--tech-gradient-2) 100%);
    overflow: hidden;
}

.services-section .section-title {
    margin-bottom: 80px;
}

.services-section .subtitle {
    color: var(--tech-gradient-3);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.services-section .title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.services-section .title span {
    color: var(--tech-gradient-3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--tech-gradient-3);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tech-gradient-3), rgba(0, 180, 219, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: #fff;
}

.service-card:hover .service-icon i {
    transform: rotateY(180deg);
    color: var(--tech-gradient-3);
}

.service-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--tech-gradient-3);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link span {
    margin-right: 10px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #fff;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-shapes .shape {
    position: absolute;
    pointer-events: none;
}

.services-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 180, 219, 0.1), transparent);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: rotateShape 20s linear infinite;
}

.services-shapes .shape-2 {
    width: 200px;
    height: 200px;
    border: 30px solid rgba(0, 180, 219, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.services-shapes .shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(0, 180, 219, 0.2), transparent);
    border-radius: 20px;
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
    animation: pulseShape 5s ease-in-out infinite;
}

.tech-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--tech-gradient-3), transparent);
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: techLine 3s ease-in-out infinite;
}

@keyframes techLine {
    0%, 100% {
        transform: translateY(-50%) scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) scaleY(1.5);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .services-section .title {
    font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

.values-section {
    position: relative;
    background: linear-gradient(135deg, var(--tech-gradient-1) 0%, rgba(11, 27, 53, 0.95) 100%);
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.values-section .section-title .subtitle {
    color: var(--tech-gradient-3) !important;
    text-shadow: 0 0 15px rgba(0, 180, 219, 0.5);
}

.values-section .section-title .title,
.values-section .section-title h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.values-section .section-title .title span {
    background: linear-gradient(135deg, var(--tech-gradient-3), #00b4db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 180, 219, 0.5));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.value-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    margin-bottom: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--tech-gradient-3);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.value-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tech-gradient-3), rgba(0, 180, 219, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.4s ease;
}

.tech-circle {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid var(--tech-gradient-3);
    border-radius: 25px;
    animation: rotateShape 20s linear infinite;
}

.value-content {
    position: relative;
    z-index: 2;
}

.value-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--tech-gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    color: rgba(0, 180, 219, 0.05);
    transform: scale(1.2);
}

.tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--tech-gradient-3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover .tech-line {
    transform: scaleX(1);
}

.values-shapes .shape {
    position: absolute;
    pointer-events: none;
}

.values-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 180, 219, 0.1), transparent);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: rotateShape 20s linear infinite;
}

.values-shapes .shape-2 {
    width: 200px;
    height: 200px;
    border: 30px solid rgba(0, 180, 219, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.digital-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--tech-gradient-3), transparent);
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    animation: digitalLine 3s ease-in-out infinite;
}

.digital-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 180, 219, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .value-card {
        padding: 2rem;
    }

    .value-content h3 {
        font-size: 1.5rem;
    }

    .value-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

.realisations-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 150px 0;
    overflow: hidden;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.realisation-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.realisation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 180, 219, 0.15);
}

.realisation-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.realisation-card:hover .realisation-image img {
    transform: scale(1.1) rotate(-2deg);
}

.realisation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 180, 219, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.realisation-card:hover .realisation-overlay {
    opacity: 1;
}

.realisation-content {
    padding: 40px;
    background: #ffffff;
    position: relative;
}

.realisation-category {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 180, 219, 0.1);
    color: var(--tech-gradient-3);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.realisation-card:hover .realisation-category {
    transform: translateY(-5px);
    background: var(--tech-gradient-3);
    color: #ffffff;
}

.realisation-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--tech-gradient-1);
    margin-bottom: 20px;
    line-height: 1.4;
    transition: all 0.4s ease;
}

.realisation-card:hover .realisation-title {
    color: var(--tech-gradient-3);
}

.realisation-description {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.realisation-link {
    display: inline-flex;
    align-items: center;
    color: var(--tech-gradient-3);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.realisation-link i {
    margin-left: 12px;
    transition: transform 0.4s ease;
}

.realisation-link:hover {
    color: var(--tech-gradient-1);
    letter-spacing: 1px;
}

.realisation-link:hover i {
    transform: translateX(8px);
}

.realisations-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.realisations-shapes .shape {
    position: absolute;
}

.realisations-shapes .shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 180, 219, 0.1), rgba(0, 180, 219, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 20s linear infinite;
}

.realisations-shapes .shape-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(11, 27, 53, 0.1), rgba(11, 27, 53, 0.05));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morphShape 15s linear infinite reverse;
}

.section-title-realisation {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title-realisation h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--tech-gradient-1);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title-realisation h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--tech-gradient-3);
    border-radius: 2px;
}

.section-title-realisation p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .realisation-image {
        height: 250px;
    }

    .realisation-content {
        padding: 30px;
    }

    .section-title-realisation h2 {
        font-size: 2.5rem;
    }
}

/* Partenaires Section */
.partners-section {
    position: relative;
    background: linear-gradient(135deg, var(--tech-gradient-1) 0%, rgba(11, 27, 53, 0.95) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tech-gradient-3);
}

.partner-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.1);
}

/* Témoignages Section */
.testimonials-section {
    position: relative;
    background: #ffffff;
    padding: 150px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 180, 219, 0.1);
}

.testimonial-content {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.testimonial-quote {
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 80px;
    color: var(--tech-gradient-3);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4B5563;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--tech-gradient-1);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--tech-gradient-3);
    font-size: 0.9rem;
}

/* Notre Engagement Section */
.engagement-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 150px 0;
    overflow: hidden;
}

.engagement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.engagement-content {
    position: relative;
}

.engagement-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tech-gradient-1);
    margin-bottom: 30px;
    position: relative;
}

.engagement-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--tech-gradient-3);
    border-radius: 2px;
}

.engagement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 40px;
}

.engagement-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.engagement-section .stat-item {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 180, 219, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.engagement-section .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.engagement-section .stat-item:hover::before {
    left: 100%;
}

.engagement-section .stat-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 180, 219, 0.2);
    border-color: var(--tech-gradient-3);
}

.engagement-section .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--tech-gradient-3), #2F55D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.engagement-section .stat-label {
    font-size: 1.1rem;
    color: #4B5563;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tech-gradient-3);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--tech-gradient-1);
    font-weight: 600;
}

.engagement-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.engagement-image img {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.engagement-image:hover img {
    transform: scale(1);
}

.engagement-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.engagement-shape-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 180, 219, 0.1), rgba(0, 180, 219, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 20s linear infinite;
}

.engagement-shape-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    border: 30px solid rgba(0, 180, 219, 0.1);
    border-radius: 50%;
    animation: floatShape 15s ease-in-out infinite;
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .engagement-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .engagement-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .engagement-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 10px;
    }
    
    .engagement-title {
        font-size: 2.5rem;
    }
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--tech-gradient-1) 0%, rgba(11, 27, 53, 0.95) 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, var(--tech-gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, var(--tech-gradient-3), transparent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-shapes .digital-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-gradient-3), transparent);
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 80px 0;
    }
}

.hero-logo {
    display: block;
    max-width: 150px !important;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar-brand .hero-logo {
    max-width: 120px !important;
}

.footer-logo .hero-logo {
    max-width: 150px !important;
    margin: 0 auto 1rem;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--tech-gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
    color: var(--tech-gradient-3);
    transform: translateY(-5px);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
}

.loader img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.loader::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

.loader::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, var(--tech-gradient-3) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes loading {
    0% { transform: skew(-20deg) translateX(-100%); }
    100% { transform: skew(-20deg) translateX(200%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
} 