/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #167475;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --transition: all 0.3s ease;
}

body {
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  
    
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background-color: rgba(246, 246, 248, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 90%;
    max-width: 1200px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.header .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #167475 0%, #167475 50%, #333 50%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}
.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #167475 0%, #28a745 100%);
    transform: scaleX(0.8);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.logo:hover .logo-text {
    text-shadow: 0 2px 5px rgba(22, 116, 117, 0.2);
}

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

/* Version responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.3rem;
    }
}
/* Effet au survol pour l'interactivité */
.logo-text:hover {
    color: #167475; /* Vert légèrement plus foncé */
    text-shadow: 0 0 5px rgba(40, 167, 69, 0.3); /* Ombre légère */
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav ul li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
    background-color: transparent;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-text {
    font-size: 0.95rem;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
    z-index: 1001;
}

/* Hero section */
.hero {
    padding: 220px 0 100px;
    background: #f7fdf9;
    color: var(--dark-color);
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(22, 116, 117, 0.1);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 25px 0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faculty-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #115e5e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(22, 116, 117, 0.3);
}

.btn i {
    margin-left: 10px;
    font-size: 0.8rem;
}

/* Scroll Indicator dans le Hero */
.scroll-indicator-hero {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(22, 116, 117, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.scroll-arrow:hover {
    background-color: #115e5e;
    animation: none;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator-hero {
        bottom: 15px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Sections communes */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* À Propos Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1a9090);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(22, 116, 117, 0.3);
    transition: var(--transition);
}

.profile-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 116, 117, 0.4);
}

.profile-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.profile-placeholder p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.profile-placeholder span {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.about-text {
    text-align: left;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-cta {
    margin-top: 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .profile-placeholder i {
        font-size: 4rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-cta {
        text-align: center;
    }
}

.profile-section {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.profile-image-container {
    position: relative;
    flex: 0 0 250px;
}

.profile-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.skills-container {
    flex: 1;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-name {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.skill-bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-bar {
    flex: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    border-radius: 5px;
    transition: width 1.5s ease-out;
}

.skill-percent {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 40px;
    text-align: right;
}

/* Activités Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background: #f7fdf9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.activity-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    position: relative;
}

.activity-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Badge Veille Technologique */
/* Badge Veille Technologique - Version améliorée */
.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    z-index: 2;
}

.veille-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pour que le titre ne soit pas caché par le badge */
.activity-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    position: relative;
    padding-right: 100px; /* Espace pour le badge */
}

.activity-header h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* Effet au survol du badge */
.activity-card:hover .activity-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Ajustement responsive */
@media (max-width: 768px) {
    .activity-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }
    
    .activity-header {
        padding-right: 80px;
    }
}


.activity-image {
    height: 180px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.activity-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    min-height: 2.4em;
    text-align: center;
    width: 100%;
}

.activity-content p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex: 1;
    text-align: center;
    width: 100%;
}

.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #1a9090 100%);
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    margin-top: 8px;
    letter-spacing: 0.4px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.activity-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: left 0.4s;
}

.activity-link:hover::before {
    left: 125%;
}

.activity-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 116, 117, 0.4);
    color: white;
}

.activity-link i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.activity-link:hover i {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--secondary-color);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #115e5e;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        padding: 80px 30px;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        color: var(--dark-color);
        background-color: transparent !important;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-divider {
        margin: 25px auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 180px 0 100px;
    }

    .profile-section {
        flex-direction: column;
    }
    
    .profile-image-container {
        margin-bottom: 30px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}


/* Ajoutez ces styles à la fin de votre fichier CSS */

/* Profile Container */
.profile-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.profile-photo {
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.profile-info p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.cv-download {
    margin-top: 30px;
}

/* Experience Timeline */
.experience-timeline {
    margin-top: 60px;
}

.experience-timeline h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.experience-timeline h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(22, 116, 117, 0.1);
    overflow: hidden;
}

.timeline-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(22, 116, 117, 0.2);
}

.timeline-content {
    margin-left: 50px;
    padding-left: 30px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }
    
    .profile-photo {
        flex: 1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .timeline-container {
        padding-left: 20px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        left: -25px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 40px;
        padding-left: 20px;
    }
}
/* Modern Timeline */
.modern-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-period {
    position: absolute;
    left: -65px;
    top: 0;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.1));
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-timeline {
        padding-left: 40px;
    }
    
    .timeline-period {
        width: 30px;
        height: 30px;
        left: -40px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content::before {
        top: 18px;
    }
}



/* Espacement des sections */
.section-spacing {
   
    padding-top: 40px;
}

@media (max-width: 768px) {
    .section-spacing {
        margin-top: 60px;
        padding-top: 30px;
    }
}


.section-alt {
    background-color: #f8fafc;
    position: relative;
    padding-bottom: 60px; /* Espace en dessous de la section */
    padding-top: 40px; /* Espace au-dessus pour équilibrer */
}
/* Glassmorphism Header Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        width: 95%;
        top: 10px;
        padding: 10px 15px;
        border-radius: 30px;
    }
}

/* =============================================
   Decorative Organic Blobs (Olga-inspired)
   ============================================= */
.hero-blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-blob-1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(ellipse at 40% 35%, rgba(22, 116, 117, 0.30) 0%, rgba(22, 116, 117, 0.10) 55%, transparent 80%);
    top: -110px;
    right: -90px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: blobFloat1 9s ease-in-out infinite;
}

.hero-blob-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(ellipse, rgba(22, 116, 117, 0.22) 0%, transparent 70%);
    bottom: 30px;
    left: -60px;
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    animation: blobFloat2 13s ease-in-out infinite;
}

.hero-blob-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(22, 116, 117, 0.18) 0%, transparent 70%);
    top: 38%;
    right: 10%;
    border-radius: 50% 50% 70% 30% / 30% 60% 40% 70%;
    animation: blobFloat1 16s ease-in-out infinite reverse;
}

.hero-blob-4 {
    width: 85px;
    height: 85px;
    background: rgba(22, 116, 117, 0.20);
    top: 25%;
    left: 10%;
    border-radius: 50%;
    animation: blobFloat2 11s ease-in-out infinite;
}

.hero-blob-5 {
    width: 55px;
    height: 55px;
    background: rgba(22, 116, 117, 0.22);
    bottom: 32%;
    right: 30%;
    border-radius: 50%;
    animation: blobFloat1 14s ease-in-out infinite 2s;
}

.hero-blob-6 {
    width: 35px;
    height: 35px;
    background: rgba(22, 116, 117, 0.24);
    top: 20%;
    right: 35%;
    border-radius: 50%;
    animation: blobFloat2 8s ease-in-out infinite 1s;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.06); }
    66% { transform: translate(-9px, 9px) scale(0.97); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-14px, 12px) scale(1.05); }
    66% { transform: translate(9px, -14px) scale(0.98); }
}

/* Make sure hero content stays above blobs */
.hero .container, .scroll-indicator-hero {
    z-index: 1;
    position: relative;
}
