.thelab-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.background-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 132, 227, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: floatCircle 8s infinite alternate ease-in-out;
}

@keyframes floatCircle {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.05); }
}

.background-circle-down {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 132, 227, 0.2) 0%, rgba(0, 184, 148, 0.05) 100%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 0;
    animation: floatCircle 8s infinite alternate ease-in-out;
}

@keyframes floatCircle {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.05); }
}

.background-circle-down-bottom {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 132, 227, 0.3) 0%, rgba(0, 184, 148, 0.05) 100%);
    border-radius: 50%;
    bottom: -300px;
    left: -0px;
    z-index: 0;
    animation: floatCircle 8s infinite alternate ease-in-out;
}
.background-circle-top-bottom {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 132, 227, 0.3) 0%, rgba(0, 184, 148, 0.05) 100%);
    border-radius: 50%;
    top: -300px;
    right: -0px;
    z-index: 0;
    animation: floatCircle 8s infinite alternate ease-in-out;
}

@keyframes floatCircle {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.05); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content{
    text-align: left;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00b894;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(45deg, #2d3436, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    margin-bottom: 40px;
    text-align: left;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #2d3436;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #636e72;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #0984e3, #00b894);
    color: white;
    border: none;
}

.btn-secondary {
    background: white;
    color: #2d3436;
    border: 2px solid #dfe6e9;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s infinite ease-in-out;
}

.card-1 { top: 20%; left: 1%; animation-delay: 0s; }
.card-2 { top: 50%; right: 1%; animation-delay: 2s; }
.card-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-card {
        display: none;
    }
}

.why-choose-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #0984e3, #00b894);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #0984e3, #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0984e3, #00b894);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    left: 42%;
    top: -6px;
}

.icon-wrapper i {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    top: -100%;
    left: -100%;
    transition: all 0.3s ease;
}

.why-choose-item:hover .icon-wrapper::after {
    top: 0;
    left: 0;
}

.content h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.content p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #0984e3;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #00b894;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-choose-item {
        padding: 30px 20px;
    }
}

.why-choose-section, .container, .section-header {
    box-sizing: border-box;
}

.thelab-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.thelab-section .content-wrapper.reverse {
    flex-direction: row-reverse;
}

.thelab-section .content-box {
    flex: 1;
}

.thelab-section .image-box {
    flex: 1;
    position: relative;
}

.thelab-section .image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.thelab-section .image-box:hover img {
    transform: translateY(-10px);
}

.thelab-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #2b2b2b, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thelab-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.span-title{
    color: #1e76c3;
}

/* Philosophy Section */
.philosophy-section {
    background-image: url(../images/off.jpg);
    padding: 50px 0;
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.philosophy-section .container {
    position: relative;
    z-index: 2;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.philosophy-item {
    background: #ffffffa0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.philosophy-item h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #333;
}

.philosophy-item ul {
    list-style: none;
    padding: 0;
}

.philosophy-item ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    line-height: 30px;
    position: relative;
    
}

.philosophy-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #007bff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 991px) {
    .thelab-section .content-wrapper {
        flex-direction: column;
    }
    
    .why-choose-grid,
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-choose-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .thelab-section h2 {
        font-size: 32px;
    }
}

/* Who Thrives Section - Grid Design */
.who-thrives {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.who-thrives::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.who-thrives-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.thrive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.thrive-grid-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.thrive-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thrive-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.thrive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thrive-grid-item:hover .thrive-image img {
    transform: scale(1.1);
}

.thrive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(9, 132, 227, 0.8), rgba(0, 184, 148, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thrive-grid-item:hover .thrive-overlay {
    opacity: 1;
}

.thrive-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.thrive-grid-item:hover .thrive-icon {
    transform: scale(1);
}

.thrive-icon i {
    font-size: 36px;
    color: #0984e3;
}

.thrive-content {
    padding: 30px;
}

.thrive-content h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.thrive-tagline {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 25px;
    line-height: 1.6;
}

.thrive-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0px 35px;
    background: #f8f9fa;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature i {
    font-size: 1.2rem;
    color: #0984e3;
    width: 24px;
    text-align: center;
}

.feature span {
    font-size: 1rem;
    color: #2d3436;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .thrive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .thrive-grid {
        grid-template-columns: 1fr;
    }
    
    .thrive-content {
        padding: 20px;
    }
    
    .thrive-content h3 {
        font-size: 1.5rem;
    }
}

/* The LAB Difference Section */
.lab-difference {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.lab-difference::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.lab-difference .container {
    position: relative;
    z-index: 2;
}

.difference-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.difference-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #0984e3, #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.difference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.difference-item:hover::before {
    transform: scaleX(1);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.difference-icon i {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.difference-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    top: -100%;
    left: -100%;
    transition: all 0.3s ease;
}

.difference-item:hover .difference-icon::after {
    top: 0;
    left: 0;
}

.difference-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.difference-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-item {
        padding: 30px;
    }
    
    .difference-content h3 {
        font-size: 1.5rem;
    }
}


.image-labs {
    width: 100%;
    margin-bottom: 20px;
}

.image-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.card-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}
