.section {
    padding: 80px 0;
} 

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: #6c757d;
}

.btn-get-started {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    background: #e03e14; 
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background:rgba(224, 61, 20, 0.75);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.values-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.values-item i {
    font-size: 3rem;
    color: #ff4a17;
    margin-bottom: 20px;
}

.values-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.stats-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stats-item p {
    font-size: 1.1rem;
    margin: 0;
}

.color-blue {
    color: #1e90ff;
}

.color-orange {
    color: var(--primary-color);
}

.color-green {
    color: #28a745;
}

.color-pink {
    color: #e83e8c;
}
/* dfgfd */

.section {
    padding: 100px 0;
}



.mission-vision-section {
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 74, 23, 0.1);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    border-radius: 20px;
    /* overflow: hidden; */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    border: none;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mv-card.mission-card:hover {
    box-shadow: 0 25px 50px rgba(255, 74, 23, 0.15);
}

.mv-card.vision-card:hover {
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}

.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff7c4a);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff7c4a);
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card .card-body {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.mv-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.mv-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.mission-card h3::after {
    background: var(--primary-color);
}

.vision-card h3::after {
    background: var(--accent-color);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.mv-card .btn {
    margin-top: 25px;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mission-card .btn {
    background: var(--primary-color);
    border: none;
}

.mission-card .btn:hover {
    background: #e03e14;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 74, 23, 0.3);
}

.vision-card .btn {
    background: var(--accent-color);
    border: none;
}

.vision-card .btn:hover {
    background: #5752d4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    bottom: 25%;
    right: 5%;
    animation-delay: 6s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .mv-card {
        margin-bottom: 50px;
    }
    
    .card-icon {
        margin-top: -40px;
        width: 80px;
        height: 80px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .mv-card .card-body {
        padding: 30px 20px;
    }
}
