* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: var(--black);
            color: white;
            overflow-x: hidden;
        }

        /* Color Palette */
        :root {
            --logo-blue: #314f9b;
            --logo-green: #88c355;     
            --yellow: #f4d03f;
            --black: #050505;
            --blue: #2c82e5;
            --white: #ffffff;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--black);
            backdrop-filter: blur(10px);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
            transition: transform 0.3s ease;
            margin-left: -15px;
        }


        /* Navigation Menu */
        .nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 350px;
            height: 100vh;
            background: var(--black);
            backdrop-filter: blur(20px);
            transition: left 0.4s ease;
            z-index: 999;
            padding: 100px 40px 40px;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu ul {
            list-style: none;
        }

        .nav-menu ul li {
            margin: 30px 0;
        }

        .nav-menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid transparent;
        }

        .nav-menu ul li a:hover {
            color: var(--blue);
            transform: translateX(10px);
        }

           /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

       /*index*/

        /* vdo */
        .vdo {
            position: absolute;
            top: 80px;
            display: grid; 
            width: 100vw;
            height: 100vh;
        }

        .vdo video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);   
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            width: 100vw;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column; 
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--black)
               /* radial-gradient(circle at 20% 30%, rgba(255, 102, 51, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 204, 153, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 60% 80%, rgba(204, 51, 0, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(153, 51, 204, 0.2) 0%, transparent 40%);*/
        }

        .hero-content {
            display: grid; 
            bottom: 0;
            margin-top: 2vh;
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(1rem, 5vw, 2rem);
            font-weight: 300;
            letter-spacing: 0.15em;
            margin-bottom: 1em;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

    
        .cta-button {
            background: #f4d03f87;
            width: auto;
            max-width: 400px;
            color: #000;
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
            border: none;
            margin: 0 auto;
            font-size: clamp(0.6rem, 2vw, 1rem);
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(18, 15, 4, 0.894);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            background: #caac35ea;
            box-shadow: 0 5px 15px rgba(244, 208, 63, 0.4);
        }

      

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .logo h1 {
                font-size: 14px;
            }

            .nav-menu {
                width: 280px;
            }

            .hero h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .hero-info p {
                font-size: 16px;
            }

            .cta-button {
                width: 100%;
                padding: 12px 30px;
                font-size: 14px;
                margin-bottom: 20px;
            }
        }

      /*index2*/

        .main {
            margin-top: 100px;
        }

        .main-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: normal;
            margin-top: 10px;
            margin: 60px 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .carousel-container {
            position: relative;
            height: 70vh;
            overflow: hidden;
            margin-left: 200px;
            margin-right: 200px;
            border-radius: 10px;
        }

        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
            max-height: 400px;
        }

        .slide {
            min-width: 100%;
            display: flex;
            position: relative;
            justify-items: center;
        }

        .slide-content {
            background: #f4d03fd1;
            color: #2c3e50;
            padding: 60px;
            width: 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            margin-bottom: 10px;
        }

        .slide-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: -20px;
            width: 100px;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: skew(-15deg);
        }

        .slide-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-decoration: underline;
            text-decoration-color: #e74c3c;
            text-decoration-thickness: 3px;
            text-underline-offset: 10px;
        }

        .slide-description {
            font-size: 1.4rem;
            line-height: 1.6;
            font-weight: 500;
        }

        .slide-image {
            width: 55%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .slide-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, transparent 50%);
        }

        .navigation {
            position: absolute;
            bottom: 115px;
            left: 20%;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }

        .nav-arrow {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            backdrop-filter: blur(10px);
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
            transform: scale(1.1);
        }

        .dots-container {
            display: flex;
            gap: 15px;
        }

        .dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .dot.active {
            background: #f1c40f;
            border-color: #f1c40f;
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(241, 196, 15, 0.5);
        }

        .info-button {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 20px;
            font-weight: bold;
        }

        .info-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .info-button a {
            color: white;
            text-decoration: none;
        }

        /* Discover Arrow Button Styling */
        .discover-arrow {
            margin-top: 60px;
            display: flex;
            justify-content: center;
        }

        .discover-btn {
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            width: 184px;
            height: 60px;
            border-radius: 17%;
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 3s infinite;
            margin-top: -125px;
            z-index: 100000;
        }

        .discover-btn:hover {
            background: rgba(255, 255, 255, 0.189);
            color:var(--white) ;
            transform: scale(1.1);
            animation: none;
        }


        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .slide {
                flex-direction: column;
            }

            .slide-content {
                width: 100%;
                padding: 40px 30px;
            }

            .slide-image {
                width: 100%;
                min-height: 300px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-description {
                font-size: 1.2rem;
            }

            .navigation {
                left: 30px;
                bottom: 20px;
            }
        }

        /* Workshop section placeholder */
        .workshop {
            min-height: 100vh;
            background: var(--black);
            padding: 60px 20px 80px 20px;
            position: relative;
            overflow: hidden;
        }

.workshop-container {
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-hero {
    /*display: flex;*/
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    position: relative;
}

.workshop-content {
   /* flex: 1;*/
    max-width: 620px;
}

.workshop-subtitle {
    color: #464646;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.workshop-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #787878;
    line-height: 1.2;
    margin-bottom: 30px;
}

.learn-more-btn {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.learn-more-btn:hover {
    background: #45b7aa;
    transform: translateY(-2px);
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-btn a {
    text-decoration: none;
}

.social-btn button {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: white;
}

.social-btn.purple {
    background: #6c5ce7;
}

.social-btn.teal {
    background: #4ecdc4;
}

.social-btn:hover {
    transform: scale(1.1);
}

.workshop-video {
    flex: 1;
    position: relative;
}

.video-container {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.45;
    margin-top: 10px;
}

/* Floating decorative elements 
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: #6c5ce7;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    top: 70%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 3px solid #6c5ce7;
    top: 20%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, #6c5ce7, #4ecdc4);
    opacity: 0.7;
}

.shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 5%;
    animation: morph 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}*/

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1c1c1c4a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #6c5ce7);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.service-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.service-btn {
    background: transparent;
    color: #2d3436;
    border: 2px solid #3b3e3f;
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn.teal {
    color: #4ecdc4;
    border-color: #4ecdc4;
}

.service-btn:hover {
    background: #2d3436;
    color: white;
    transform: translateY(-2px);
}

.service-btn.teal:hover {
    background: #4ecdc4;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workshop-hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .workshop-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-circle,
    .floating-shape {
        display: none;
    }
}

        /*index3*/

        .heritage-section {
            width: 100%;
            margin-top: 50px;
            padding: 80px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .text-content {
            text-align: center;
            margin-bottom: 60px;
        }

        .main-heading {
            font-size: 2rem;
            font-weight: 300;
            color: var(--white);
            letter-spacing: 2px;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .description {
            font-size: 1.1rem;
            color: var(--white);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .image-container {
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .heritage-image {
            width: 100%;
            height: 100%;
            background: url('img/Ouest_010.webp');
            background-size: 100% auto; /* Width 100%, height auto */
            background-position: center top; /* Align to top */
            background-repeat: no-repeat;
        }

/* Partners */
.partner {
  padding: 2rem 0;
  text-align: center;
}

.partner h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community__partners {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.community__partners li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 140px;
  max-width: 280px;
  width: 100%;
  aspect-ratio: 2/1;
}

.community__partners li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.community__partners li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.community__partners li img {
  max-width: 180px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.community__partners li:hover img {
  transform: scale(1.05);
}

/* Center the 2 partners in the second row */
.community__partners li:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: center;
  margin-left: 340px;
}

.community__partners li:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: center;
  margin-left: 285px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community__partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .community__partners li {
    padding: 1rem;
    min-height: 100px;
  }
  
  .community__partners li img {
    max-width: 120px;
    max-height: 70px;
  }
}

@media (max-width: 480px) {
  .community__partners {
    grid-template-columns: 1fr;
  }
  
  .partner {
    padding: 1rem 0;
  }
}
        /*index4*/

       .contact {
    position: fixed; 
    top: 30px; 
    left: 0;
    z-index: 1;
    background: url('img/Ouest_021.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px;
    overflow: hidden;
}

.contact-map {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-card {
    position: relative;
    z-index: 10;
    flex: 1;
    max-width: 420px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease-out;
    border: 5px solid rgba(139, 154, 71, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .contact {
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .contact-map {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .contact-card {
        max-width: 400px;
        padding: 30px;
    }
    }

    /* Animation keyframes */
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(40px);
            }
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }

        .org-logo {
            font-family: 'Times New Roman', serif;
            font-size: 1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .org-description {
            font-size: 10px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            margin-bottom: 5px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(139, 154, 71, 0.2);
            transition: all 0.3s ease;
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item:hover {
            background: rgba(139, 154, 71, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin: 0 -15px 20px -15px;
        }

        .contact-label {
            font-size: 12px;
            color: #202020;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .contact-value {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .contact-value a {
            color: #1976d2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: #1565c0;
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #333;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }
        .social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
        .social-link.facebook:hover { background: #1877f2; }
        .social-link.youtube:hover { background: #ff0000; }
        .social-link.linkedin:hover { background: #000; }

    

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-30px) scale(1.2);
                opacity: 1;
            }
        }

     
        /*index5*/

         .career-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23222" width="1200" height="800"/><path fill="%23333" d="M0 400L50 380C100 360 200 320 300 300C400 280 500 280 600 300C700 320 800 360 900 380C1000 400 1100 400 1150 400L1200 400V800H1150C1100 800 1000 800 900 800C800 800 700 800 600 800C500 800 400 800 300 800C200 800 100 800 50 800H0V400Z"/></svg>') center/cover;
            text-align: center;
            padding: 120px 40px 40px;
        }

        .career-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .career-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .career-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 300;
            margin-bottom: 50px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .career-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #9ACD32, #4CAF50);
            color: #000;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 5px 15px rgba(154, 205, 50, 0.3);
        }

        .career-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(154, 205, 50, 0.4);
            background: linear-gradient(45deg, #4CAF50, #9ACD32);
        }

        .description {
            max-width: 500px;
            margin: 0 auto 40px;
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.8;
            text-align: center;
        }

        /* Open Career Grid */
.open_career-grid {
    margin-left: 20px;
    margin-right: 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.open_career-card {
    background: #f5f5f5ec;
    padding: 40px 30px;
    border-radius: 60px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.627);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.open_career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.888);
}

.open_career-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--logo-blue), var(--logo-green));
}

.open_career-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 20px;
}

.open_career-description {
    color: #323535;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.open_career-btn {
    background: transparent;
    color: #2d3436;
    border: 2px solid #3b3e3f;
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.open_career-btn:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
}

        /* Responsive Design */

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .career-section {
                padding: 100px 20px 20px;
            }
            

            
            .career-cta-button {
                padding: 12px 30px;
                font-size: 0.8rem;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }