
/* Company Section */
.company-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    min-height: 100vh;
    position: relative;
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Content Container */
.content-container {
    padding: 0 30px;
}

.section-subtitle {
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e3e4e;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #4caf50;
    background: transparent;
    color: #4caf50;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.tab-btn.active {
    background: #4caf50;
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tab-btn:hover::before {
    left: 100%;
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Highlight */
.stats-highlight {
    margin-bottom: 25px;
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: #4caf50;
    margin-right: 15px;
    display: inline-block;
    animation: countUp 2s ease-out;
}

.stats-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    vertical-align: top;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Description */
.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Services List */
.services-list {
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.checkmark {
    width: 24px;
    height: 24px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-item span:last-child {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* CTA Button */
.cta-container {
    margin-top: 30px;
}

.cta-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-section {
        padding: 60px 0;
    }
    
    .content-container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .stats-text {
        font-size: 1.2rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .team-image {
        height: 300px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-text {
        font-size: 1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .service-item span:last-child {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: loadIn 1s ease-in-out forwards;
}

@keyframes loadIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.service-item:hover .checkmark {
    background: #45a049;
    transform: scale(1.1);
}

.tab-content.active .service-item {
    animation: slideInLeft 0.5s ease-out forwards;
}

.tab-content.active .service-item:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}






