/* Footer Animation */
.footer-menu a:hover {
    opacity: 1 !important;
    color: #199db6 !important;
}

.footer-copyright-social-icon a:hover {
    opacity: 1 !important;
    color: #199db6 !important;
}

@media (max-width: 768px) {
    .footer-menu {
        text-align: center;
    }

    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ************** Team Section **************** */
.team-area-about-inner {
    padding: 80px 0;
    position: relative;
    background: #0a0f1e;
}

.team-area-about-inner .container {
    position: relative;
    z-index: 2;
}

/* Card Link Styling */
.team-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-card-link:hover {
    transform: translateY(-10px);
}

/* Team Card Styling */
.team-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 157, 182, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.team-inner:hover {
    border-color: #199db6;
    box-shadow: 0 15px 40px rgba(25, 157, 182, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.team-inner:nth-child(1) {
    animation-delay: 0.1s;
}

.team-inner:nth-child(2) {
    animation-delay: 0.2s;
}

.team-inner:nth-child(3) {
    animation-delay: 0.3s;
}

.team-inner:nth-child(4) {
    animation-delay: 0.4s;
}

.team-inner:nth-child(5) {
    animation-delay: 0.5s;
}

/* Image Container */
.team-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.team-thumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.8), transparent);
    pointer-events: none;
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-inner:hover .team-thumb img {
    transform: scale(1.1);
}

/* Text Content Area */
.team-name-position {
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name-position h6 {
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.22rem;
    line-height: 1.4;
}

.team-name-position h6 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-name-position h6 a:hover {
    color: #199db6;
}

.team-name-position span {
    color: #199db6;
    font-size: 0.9rem;
    display: block;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Social Media Icons on Hover */
.team-social-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(25, 157, 182, 0.9), transparent);
    transition: bottom 0.3s ease;
    z-index: 2;
}

.team-inner:hover .team-social-hover {
    bottom: 0;
}

.team-social-hover a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-hover a:hover {
    background: #fff;
    color: #199db6;
    transform: translateY(-3px);
}

/* Grid System Enhancements */
.row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ***************** Awards Section Styling ******************* */
.awards-area {
    padding: 80px 0;
    position: relative;
    background: #0a0f1e;
    overflow: hidden;
}

.awards-area-shep-1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    pointer-events: none;
}

/* Award Card Styling */
.award-card {
    height: 100%;
    perspective: 1000px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.award-card:nth-child(1) {
    animation-delay: 0.1s;
}

.award-card:nth-child(2) {
    animation-delay: 0.2s;
}

.award-card:nth-child(3) {
    animation-delay: 0.3s;
}

.award-card:nth-child(4) {
    animation-delay: 0.4s;
}

.award-card:nth-child(5) {
    animation-delay: 0.5s;
}

.award-card:nth-child(6) {
    animation-delay: 0.6s;
}

.award-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 157, 182, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.award-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #199db6, transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.award-card-inner:hover {
    transform: translateY(-10px);
    border-color: #199db6;
    box-shadow: 0 20px 40px rgba(25, 157, 182, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.award-card-inner:hover::before {
    transform: translateX(100%);
}

/* Award Icon */
.award-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(25, 157, 182, 0.5));
    transition: transform 0.3s ease;
}

.award-card-inner:hover .award-icon img {
    transform: scale(1.1) rotate(5deg);
}

/* Award Content */
.award-content {
    flex: 1;
}

.award-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.award-organization {
    color: #199db6;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.year-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #199db6;
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: none;
}

.award-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.awards-stats {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(25, 157, 182, 0.1);
    transform: scale(1.05);
}

.stat-number {
    color: #199db6;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(25, 157, 182, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* **************** Success and Achievement Showcase Area ********************* */
.success-showcase-area {
    padding: 60px 0 80px;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
}

.success-showcase-area .title {
    margin-bottom: 40px;
}

/* Main Slider */
.success-showcase-slider {
    width: 100%;
    height: 600px;
    position: relative;
}

.success-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg-image {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(10, 15, 30, 0.9) 0%,
            rgba(10, 15, 30, 0.4) 50%,
            rgba(10, 15, 30, 0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
    color: #fff;
    animation: slideContentFade 1s ease;
}

@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translateY(30px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateY(-50%);
    }
}

.award-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #199db6;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(25, 157, 182, 0.3);
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.5rem;
    color: #199db6;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.slide-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 30px;
}

.slide-stats {
    display: flex;
    gap: 40px;
}

.slide-stats .stat {
    text-align: left;
}

.slide-stats .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #199db6;
    line-height: 1.2;
}

.slide-stats .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.success-prev,
.success-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.success-prev:hover,
.success-next:hover {
    background: #199db6;
}

.success-prev::after,
.success-next::after {
    font-size: 1.2rem;
}

.success-prev {
    left: 20px;
}

.success-next {
    right: 20px;
}

/* Pagination */
.success-pagination {
    bottom: 20px !important;
}

.success-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px !important;
}

.success-pagination .swiper-pagination-bullet-active {
    background: #199db6;
    transform: scale(1.2);
}

/* Thumbnail Strip */
.success-thumbnails {
    margin-top: 30px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-item {
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thumbnail-item span {
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(25, 157, 182, 0.9);
    padding: 2px 8px;
    border-radius: 15px;
    z-index: 2;
}

.thumbnail-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all 0.3s ease;
}

.thumbnail-item:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.thumbnail-item.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(25, 157, 182, 0.3);
}

.thumbnail-item.active::before {
    background: rgba(25, 157, 182, 0.3);
}

.thumbnail-item.active img {
    border: 2px solid #199db6;
}

/* Autoplay Progress Bar */
.swiper-autoplay-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.swiper-autoplay-progress-fill {
    height: 100%;
    background: #199db6;
    width: 0%;
    transition: width 0.1s linear;
}

/* ****************** New Sections *************************** */
.culture-section,
.values-section,
.process-section,
.cta-section {
    padding: 80px 0;
    background: #0a0f1f;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(25, 157, 182, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #199db6;
    box-shadow: 0 20px 40px rgba(25, 157, 182, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #199db6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2.5rem;
}

.value-card h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1 1 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #199db6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.step h5 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step p {
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0f1f 0%, #051520 100%);
    text-align: center;
    border-top: 1px solid rgba(25, 157, 182, 0.3);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #199db6;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    border-color: #199db6;
    color: #199db6;
}

/* ***************** Weekly Meet Section ****************** */
.weekly-meet-home-3.about-area-weekly-meet {
    position: relative;
    overflow: hidden;
}

.weekly-meet-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
}

.weekly-meet-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.weekly-meet-banner video,
.weekly-meet-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weekly-meet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.4) 70%, transparent 100%);
    z-index: 2;
}

.weekly-meet-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 3;
    color: #fff;
}

.weekly-meet-content .sub-title p {
    color: #199db6;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.weekly-meet-content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.weekly-meet-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.weekly-meet-stats {
    display: flex;
    gap: 40px;
}

.weekly-meet-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #199db6;
    display: block;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-name-position h6 {
        font-size: 1.1rem;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .success-showcase-slider {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .team-area-about-inner {
        padding: 60px 0;
    }

    .team-name-position {
        padding: 20px 15px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-subtitle {
        font-size: 1.3rem;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
}

@media (max-width: 768px) {

    .team-area-about-inner,
    .awards-area,
    .culture-section,
    .values-section,
    .process-section,
    .cta-section {
        padding: 60px 0;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .team-name-position h6 {
        font-size: 1rem;
    }

    .team-name-position span {
        font-size: 0.8rem;
    }

    .award-title {
        font-size: 1.2rem;
    }

    .award-organization {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .success-showcase-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-description p {
        font-size: 1rem;
    }

    .slide-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .success-prev,
    .success-next {
        width: 35px;
        height: 35px;
    }

    .success-prev {
        left: 10px;
    }

    .success-next {
        right: 10px;
    }

    .process-timeline {
        flex-direction: column;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .weekly-meet-content {
        left: 5%;
        right: 5%;
        max-width: 80%;
    }

    .weekly-meet-content h2 {
        font-size: 2.5rem;
    }

    .weekly-meet-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .col-md-6 {
        width: 100%;
    }

    .team-inner,
    .award-card-inner {
        max-width: 350px;
        margin: 0 auto;
    }

    .awards-area,
    .success-showcase-area {
        padding: 40px 0;
    }

    .award-card-inner {
        padding: 25px 15px;
    }

    .award-icon {
        width: 80px;
        height: 80px;
    }

    .award-icon img {
        width: 60px;
        height: 60px;
    }

    .award-title {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-stats {
        flex-direction: column;
        gap: 10px;
    }

    .slide-content {
        text-align: center;
    }

    .slide-stats .stat {
        text-align: center;
    }

    .award-badge {
        font-size: 0.9rem;
        padding: 5px 15px;
    }

    .success-thumbnails .col-4 {
        padding: 0 5px;
    }

    .thumbnail-item span {
        font-size: 0.7rem;
        padding: 1px 5px;
    }
}