/* About Page Specific Styles */
.about-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}

.team-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-position {
    color: #3498db;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.team-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social {
    margin-top: 20px;
}

.social-link {
    color: #3498db;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2980b9;
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding: 20px 0;
    overflow: visible;
    position: relative;
}

/* Swiper Navigation Styling */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next {
    background-image: url('../assets/images/icon/next.png');
}

.swiper-button-prev {
    background-image: url('../assets/images/icon/bek.png');
}

/* Hide default swiper arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Add hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Adjust position for better visibility */
.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next {
        right: 5px;
    }
    
    .swiper-button-prev {
        left: 5px;
    }
}

.swiper-pagination-bullet {
    background: #3498db;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: #4e73df;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: #36b9cc;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Hero Section Styling */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Section Styling */
.stat-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
    
    .team-card {
        margin: 10px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styling with Icons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn i {
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary i {
    color: rgba(255, 255, 255, 0.9);
}

/* Edit button styling */
.btn-warning {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-warning i {
    font-size: 0.9em;
}

.btn-warning:hover i {
    animation: wiggle 0.5s ease;
}

/* Delete button styling */
.btn-danger {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-danger i {
    font-size: 0.9em;
}

.btn-danger:hover i {
    animation: shake 0.5s ease;
}

/* Circle button specific styling */
.btn-circle {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-circle i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
}

.btn-circle:hover i {
    transform: rotate(180deg);
}

/* Button animations */
@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Small buttons */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-sm i {
    font-size: 0.9em;
}

/* Large buttons */
.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-lg i {
    font-size: 1.2em;
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: #3498db;
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header .close {
    color: #fff;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
} 