/* Services Section Layout Fixes */

.services-overview-section,
.service-section {
    background-color: #f8f9fa;
    position: relative;
}

.services-overview-section .section-title,
.service-section .section-title {
    text-align: left;
    margin-bottom: 0;
}

.services-overview-section .section-title span,
.service-section .section-title span {
    color: #dc3545;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: block;
}

.services-overview-section .section-title h2,
.service-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
/*    color: #2c3e50;*/
    margin: 0;
    padding: 0;
}

.services-overview-section .section-title h2 br,
.service-section .section-title h2 br {
    display: block;
    content: "";
    margin: 0;
    padding: 0;
}

/* Services Description Styling */
.services-description {
    position: relative;
    padding-left: 30px;
}

.service-section .services-description {
    padding-left: 30px;
}

.services-description .description-content {
    position: relative;
}

.services-description .highlight-dot {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #dc3545;
    border-radius: 50%;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.services-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #1a1e21;
    margin: 0;
    padding: 0;
    text-align: left;
}

.service-section .services-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .services-overview-section .section-title h2,
    .service-section .section-title h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .services-overview-section .section-title h2,
    .service-section .section-title h2 {
        font-size: 36px;
    }
    
    .services-description {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .service-section .services-description {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .services-description .highlight-dot {
        right: 0;
    }
}

@media (max-width: 767px) {
    .services-overview-section .section-title h2,
    .service-section .section-title h2 {
        font-size: 28px;
    }
    
    .services-overview-section .section-title span,
    .service-section .section-title span {
        font-size: 12px;
    }
    
    .services-description p,
    .service-section .services-description p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .services-overview-section .section-title h2,
    .service-section .section-title h2 {
        font-size: 24px;
    }
}

/* Animation Enhancements */
.services-overview-section .section-title h2.title-anim,
.service-section .section-title h2.title-anim {
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper spacing and alignment */
.services-overview-section .row,
.service-section .row {
    min-height: 300px;
}

.services-overview-section .col-xl-6,
.service-section .col-xl-6 {
    display: flex;
    align-items: center;
}

.services-overview-section .section-title,
.service-section .section-title {
    width: 100%;
}

.services-description {
    width: 100%;
}

/* About Section Feature List Spacing Fixes */
.about-feature-list {
    margin-top: 30px;
}

.about-feature-list .single-feature-list {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(220, 53, 69, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-feature-list .single-feature-list:last-child {
    margin-bottom: 0;
}

.about-feature-list .single-feature-list:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.about-feature-list .feature-icon {
    margin-right: 20px;
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.about-feature-list .feature-icon i {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.about-feature-list .single-feature-list:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.about-feature-list .feature-text h6 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0;
}

.about-feature-list .feature-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for feature list */
@media (max-width: 767px) {
    .about-feature-list .single-feature-list {
        margin-bottom: 20px;
        padding: 12px 0;
    }

    .about-feature-list .feature-icon {
        margin-right: 11px;
        min-width: 48px;
        height: 25px;
        margin-left: 1rem;
    }
    
    .about-feature-list .feature-icon i {
        font-size: 12px;
    }
    
    .about-feature-list .feature-text h6 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .about-feature-list .feature-text p {
        font-size: 13px;
    }
}

/* Counter Section Red Background Style */
.counter-section {
    background-color: #ED2057;
    padding: 60px 0;
    position: relative;
}

.counter-section .row {
    align-items: stretch;
}

.counter-section .single-counter,
.counter-section .stat-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-left: 40px;
}

.counter-section .single-counter:hover,
.counter-section .stat-item:hover {
    transform: translateY(-3px);
}

.counter-section .counter-icon,
.counter-section .stat-icon {
    width: 70px;
    height: 70px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.counter-section .counter-icon i,
.counter-section .stat-icon i {
    color: white;
    font-size: 28px;
    font-weight: normal;
}

.counter-section .single-counter:hover .counter-icon,
.counter-section .stat-item:hover .stat-icon {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.counter-section .counter-content,
.counter-section .stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-section .counter-content h2,
.counter-section .stat-item h3 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-align: center;
}

.counter-section .counter-content p,
.counter-section .stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure all counter items have the same height */
.counter-section .col-xl-3,
.counter-section .col-lg-3,
.counter-section .col-md-6,
.counter-section .col-sm-6 {
    display: flex;
    margin-bottom: 30px;
}

/* Responsive adjustments for counter section */
@media (max-width: 1199px) {
    .counter-section .counter-content h2,
    .counter-section .stat-item h3 {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .counter-section .counter-content h2,
    .counter-section .stat-item h3 {
        font-size: 40px;
    }
    
    .counter-section .counter-icon,
    .counter-section .stat-icon {
        width: 65px;
        height: 65px;
    }
    
    .counter-section .counter-icon i,
    .counter-section .stat-icon i {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .counter-section {
        padding: 40px 0;
    }
    
    .counter-section .counter-content h2,
    .counter-section .stat-item h3 {
        font-size: 36px;
    }
    
    .counter-section .counter-content p,
    .counter-section .stat-item p {
        font-size: 14px;
    }
    
    .counter-section .counter-icon,
    .counter-section .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .counter-section .counter-icon i,
    .counter-section .stat-icon i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .counter-section {
        padding: 30px 0;
    }
    
    .counter-section .counter-content h2,
    .counter-section .stat-item h3 {
        font-size: 32px;
    }
    
    .counter-section .single-counter,
    .counter-section .stat-item {
        padding: 25px 15px;
    }
    
    .counter-section .counter-icon,
    .counter-section .stat-icon {
        width: 55px;
        height: 55px;
    }
    
    .counter-section .counter-icon i,
    .counter-section .stat-icon i {
        font-size: 22px;
    }
}

/* Counter Animation Styles */
.counter-section .counter-content h2,
.counter-section .stat-item h3 {
    transition: all 0.3s ease-in-out;
}

.counter-section .counter-content h2.animated,
.counter-section .stat-item h3.animated {
    animation: counterPulse 0.5s ease-in-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced counter animation */
.counter-section .single-counter:hover .counter-content h2,
.counter-section .stat-item:hover h3 {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* New CTA Section Styling */
.cta-section-new {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    background-repeat: repeat;
    opacity: 0.3;
}

.cta-banner {
    background-color: #ED2057;
    border-radius: 15px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    margin: 20px 0;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    flex-shrink: 0;
}

.cta-btn {
    background-color: white;
    font-weight: 700;
    color: #333;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    padding: 18px 35px;
    border-radius: 0;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn i {
    margin-left: 8px;
    transition: all 0.4s ease-in-out;
    color: #dc3545;
}

.cta-btn span {
    position: relative;
    z-index: 9;
}

.cta-btn::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #000000;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: 1;
}

.cta-btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #000000;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: 1;
}

.cta-btn:hover {
    color: white;
}

.cta-btn:hover::before {
    height: 100%;
}

.cta-btn:hover::after {
    height: 100%;
}

.cta-btn:hover i {
    transform: translate(5px);
    color: white !important;
}

/* Force white color for arrow on hover */
.cta-btn:hover .fas.fa-chevron-right {
    color: white !important;
}

.cta-btn:hover span i {
    color: white !important;
}

@media (max-width: 575px) {
    .cta-btn i {
        margin-left: 3px;
        font-size: 12px;
    }
}

/* Responsive design for CTA */
@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .cta-content h2 {
        font-size: 20px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* New Footer Styling */
.footer-new {
    background-color: #1a1a1a;
    color: white;
    position: relative;
}

/* Footer Top Section */
.footer-top-section {
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .fas.fa-globe {
    color: white;
    font-size: 18px;
}

.logo-icon .fas.fa-plane {
    position: absolute;
    top: -5px;
    right: -5px;
    color: #dc3545;
    font-size: 12px;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 10;
    align-items: center;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    background: rgba(220, 53, 69, 0.9);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    backdrop-filter: none;
    overflow: hidden;
}

.footer-social .social-link i {
    color: white;
    font-size: 18px;
    position: relative;
    z-index: 11;
}

.footer-social .social-link span {
    display: none;
}

.footer-social .social-link:hover {
    background: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.footer-social .social-link:hover i {
    color: white;
}

/* Footer Main Content */
.footer-main {
    padding: 50px 0;
}

.footer-widget h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Move Services section to the right */
.footer-widget:nth-child(2) {
    padding-left: 30px;
}

/* Move Services section further to the right */
.services-widget {
    padding-left: 160px;
}

/* Move Locations and Contact sections to the right */
.locations-widget {
    padding-left: 120px;
}

.contact-widget {
    padding-left: 80px;
}

/* Ensure footer contact details are clearly visible on dark background */
.footer-new .footer-main .contact-widget p,
.footer-new .footer-main .contact-widget a {
    color: #ffffff !important;
}

.footer-new .footer-main .contact-widget a:hover {
    color: #ED2057 !important;
    text-decoration: none !important;
}

.footer-widget p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 6px 15px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 14px;
    height: 40px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 45px;        /* Changed from 6px 20px */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    height: 40px;              /* Changed from 30px */
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.newsletter-btn::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #000000;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.newsletter-btn::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #000000;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.newsletter-btn:hover {
    color: white;
}

.newsletter-btn:hover::before {
    height: 100%;
}

.newsletter-btn:hover::after {
    height: 100%;
}

.newsletter-btn:hover i {
    transform: translate(5px);
    color: white !important;
}

.newsletter-btn span {
    position: relative;
    z-index: 1;
}

.newsletter-btn i {
    transition: all 0.4s ease-in-out;
    color: white;
}

.privacy-text {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.privacy-text a {
    color: #dc3545;
    text-decoration: none;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc3545;
}

/* Contact Info */
.address, .contact-email, .contact-phone {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-email, .contact-phone {
    margin-bottom: 5px;
}

/* Copyright Section */
.footer-copyright {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.copyright-text {
    color: #999;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* New Testimonial Section Styling */
.testimonial-section-new {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.testimonial-left {
    flex-shrink: 0;
}

.author-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.author-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    position: absolute;
    top: 5px;
    right: -20px;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 10;
}

.star-rating {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    gap: 5px;
}

.star-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-right {
    flex: 1;
    position: relative;
}

/* Review cards: avatar on left, content on right; clickable for full details */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.review-card__top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}
.review-card__avatar {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}
.review-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.review-card__quote-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #ED2057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.review-card__info {
    flex: 1;
    min-width: 0;
}
.review-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.2rem 0;
}
.review-card__meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}
.review-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.review-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0 0 0.75rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__stars {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}
.review-card__stars i {
    color: #ffc107;
    font-size: 14px;
}
.review-card__read-more {
    font-size: 0.9rem;
    color: #ED2057;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}
.review-card:hover .review-card__read-more {
    text-decoration: underline;
}
.review-card--slide {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
}
.review-card--slide .review-card__avatar {
    width: 110px;
    height: 110px;
}
.review-card--slide .review-card__text {
    -webkit-line-clamp: 5;
}

/* Home page: ensure testimonial slider uses same review card styling */
.testimonial-section-new .testimonial-slider .testimonial-slide {
    outline: none;
}
.testimonial-section-new .testimonial-slider .review-card,
.testimonial-section-new .testimonial-slider .review-card--slide {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.testimonial-section-new .testimonial-slider .review-card__top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}
.testimonial-section-new .testimonial-slider .review-card__avatar {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}
.testimonial-section-new .testimonial-slider .review-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-section-new .testimonial-slider .review-card__quote-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #ED2057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.testimonial-section-new .testimonial-slider .review-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.2rem 0;
}
.testimonial-section-new .testimonial-slider .review-card__meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}
.testimonial-section-new .testimonial-slider .review-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.testimonial-section-new .testimonial-slider .review-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0 0 0.75rem 0;
}
.testimonial-section-new .testimonial-slider .review-card__stars {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}
.testimonial-section-new .testimonial-slider .review-card__stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-quote p {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.testimonial-author h6 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* (Slider navigation & pagination styles removed – testimonials now displayed as stacked cards) */

/* Success Stories Section Styling */
.success-stories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(44, 62, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.success-story-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.success-story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #2c3e50);
    border-radius: 20px 20px 0 0;
}

.success-story-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.success-story-item:hover .story-image img {
    transform: scale(1.05);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-story-item:hover .story-image::after {
    opacity: 1;
}

.story-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.story-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #2c3e50);
    border-radius: 2px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
}

.stat .number {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat .value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #dc3545;
    background: linear-gradient(45deg, #dc3545, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Testimonials Section Styling */
.video-testimonials-section {
    background: white;
    position: relative;
}

.video-testimonial-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.video-testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-testimonial-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background: #dc3545;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.video-content {
    padding: 25px;
}

.video-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ========== Improved Video & Photo Testimonial Cards (Testimonials page) ========== */

.video-testimonials-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.video-testimonial-grid-item {
    min-width: 0;
}

.video-testimonials-list.video-testimonials-list--count-1 {
    grid-template-columns: minmax(260px, 340px);
    justify-content: center;
}

.video-testimonials-list.video-testimonials-list--count-2 {
    grid-template-columns: repeat(2, minmax(260px, 340px));
    justify-content: center;
}

.video-testimonials-list.video-testimonials-list--count-3 {
    grid-template-columns: repeat(3, minmax(240px, 320px));
    justify-content: center;
}

/* Video testimonial card */
.testimonial-video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
    width: 100%;
}

.testimonial-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.testimonial-video-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    min-height: 420px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    background: linear-gradient(180deg, #dfe7f5 0%, #c8d4ea 100%);
}

.testimonial-video-card__thumb:focus-visible {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.testimonial-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-video-card:hover .testimonial-video-card__thumb img {
    transform: scale(1.05);
}

.testimonial-video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 12, 23, 0.82) 0%, rgba(6, 12, 23, 0.18) 48%, rgba(6, 12, 23, 0.08) 100%);
    opacity: 0.78;
    transition: opacity 0.3s ease;
}

.testimonial-video-card:hover .testimonial-video-card__overlay {
    opacity: 0.92;
}

.testimonial-video-card__play {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(237, 32, 87, 0.96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    box-shadow: 0 14px 30px rgba(237, 32, 87, 0.35);
}

.testimonial-video-card__play i {
    margin-left: 4px;
}

.testimonial-video-card:hover .testimonial-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #dc3545;
    box-shadow: 0 18px 34px rgba(220, 53, 69, 0.42);
}

.testimonial-video-card__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.testimonial-video-card:hover .testimonial-video-card__label {
    opacity: 1;
    transform: translateY(-2px);
}

.testimonial-video-card__body {
    padding: 0.95rem 1rem 1.05rem;
}

.testimonial-video-card__title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1d2736;
    margin: 0 0 0.35rem 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-video-card__desc {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.testimonial-video-viewer-open {
    overflow: hidden;
}

.testimonial-video-viewer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
}

.testimonial-video-viewer__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(34, 41, 53, 0.45) 0%, rgba(5, 8, 14, 0.92) 40%, rgba(2, 3, 7, 0.98) 100%);
    backdrop-filter: blur(8px);
}

.testimonial-video-viewer__shell {
    position: relative;
    z-index: 1;
    width: min(100vw, 1500px);
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(72px, 112px) minmax(0, 1fr) minmax(72px, 112px);
    align-items: center;
    padding: 30px 24px;
    outline: none;
}

.testimonial-video-viewer__stage-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.testimonial-video-viewer__stage {
    width: min(100%, 430px);
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #06080f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-video-viewer__media {
    position: relative;
    aspect-ratio: 9 / 16;
    min-height: min(80vh, 820px);
    background: #000;
}

.testimonial-video-viewer__player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.testimonial-video-viewer__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 20px;
    background: linear-gradient(to top, rgba(4, 7, 14, 0.92) 0%, rgba(4, 7, 14, 0.66) 45%, rgba(4, 7, 14, 0) 100%);
    color: #fff;
    pointer-events: none;
}

.testimonial-video-viewer__meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-video-viewer__badge,
.testimonial-video-viewer__source {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-video-viewer__badge {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.testimonial-video-viewer__source {
    background: rgba(237, 32, 87, 0.92);
    box-shadow: 0 10px 24px rgba(237, 32, 87, 0.28);
}

.testimonial-video-viewer__title {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.testimonial-video-viewer__desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-video-viewer__nav,
.testimonial-video-viewer__close {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.testimonial-video-viewer__nav:hover:not(:disabled),
.testimonial-video-viewer__close:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-video-viewer__nav:disabled {
    opacity: 0.32;
    cursor: not-allowed;
    box-shadow: none;
}

.testimonial-video-viewer__nav {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-video-viewer__close {
    position: absolute;
    top: 24px;
    right: 26px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 3;
}

.testimonial-video-viewer__fallback {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
}

.testimonial-video-viewer__fallback p {
    margin: 0;
    font-size: 1rem;
}

.testimonial-video-viewer__fallback a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

/* Photo testimonial card */
.testimonial-photo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-photo-card__img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
}

.testimonial-photo-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-photo-card:hover .testimonial-photo-card__img-wrap img {
    transform: scale(1.04);
}

.testimonial-photo-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-photo-card__body {
    padding: 1.25rem 1.5rem;
}

.testimonial-photo-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-photo-card__caption {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced Counter Section Styling for Testimonials Page */
.counter-section .section-title {
    margin-bottom: 60px;
}

.counter-section .section-title span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.counter-section .section-title h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.counter-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Counter Items */
.counter-section .single-counter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.counter-section .single-counter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.counter-section .counter-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.counter-section .single-counter:hover .counter-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: scale(1.1);
}

.counter-section .counter-content h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.counter-section .counter-content p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonial-item {
        padding: 30px 20px;
    }
    
    /* Success Stories Responsive */
    .success-story-item {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .story-content h4 {
        font-size: 20px;
    }
    
    .story-stats {
        gap: 15px;
    }
    
    .stat {
        min-width: 100px;
        padding: 12px 8px;
    }
    
    .stat .value {
        font-size: 18px;
    }
    
    /* Video Testimonials Responsive */
    .video-testimonial-item {
        margin-bottom: 20px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .video-content {
        padding: 20px;
    }

    .video-testimonials-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .video-testimonials-list.video-testimonials-list--count-3,
    .video-testimonials-list.video-testimonials-list--count-2,
    .video-testimonials-list.video-testimonials-list--count-1 {
        justify-content: center;
    }
    
    .testimonial-video-card__play {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .testimonial-video-card__thumb {
        min-height: 360px;
    }

    .testimonial-video-viewer__shell {
        grid-template-columns: minmax(62px, 88px) minmax(0, 1fr) minmax(62px, 88px);
        padding: 24px 20px;
    }

    .testimonial-video-viewer__stage {
        width: min(100%, 390px);
    }

    .testimonial-video-viewer__media {
        min-height: min(78vh, 760px);
    }
    
    .testimonial-video-card__body,
    .testimonial-photo-card__body {
        padding: 1rem 1.25rem;
    }
    
    /* Counter Section Responsive */
    .counter-section .section-title h2 {
        font-size: 32px;
    }
    
    .counter-section .section-title p {
        font-size: 16px;
    }
    
    .counter-section .counter-content h2 {
        font-size: 36px;
    }
    
    .counter-section .single-counter {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .success-story-item {
        padding: 20px;
    }
    
    .story-image {
        margin-bottom: 20px;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .video-thumbnail {
        height: 160px;
    }

    .video-testimonials-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .video-testimonials-list.video-testimonials-list--count-3,
    .video-testimonials-list.video-testimonials-list--count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-testimonials-list.video-testimonials-list--count-1 {
        grid-template-columns: minmax(220px, 320px);
        justify-content: center;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .testimonial-video-card__play {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .testimonial-video-card__thumb {
        min-height: 320px;
    }

    .testimonial-video-viewer__shell {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 12px 20px;
        align-content: center;
    }

    .testimonial-video-viewer__stage {
        width: min(100%, 420px);
        border-radius: 24px;
    }

    .testimonial-video-viewer__media {
        min-height: min(72vh, 680px);
    }

    .testimonial-video-viewer__nav {
        position: absolute;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1rem;
        z-index: 3;
    }

    .testimonial-video-viewer__nav--prev {
        top: 92px;
    }

    .testimonial-video-viewer__nav--next {
        top: 154px;
    }

    .testimonial-video-viewer__close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .testimonial-video-card__label {
        bottom: 14px;
        left: 14px;
        right: 14px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }
    
    .testimonial-video-card__title,
    .testimonial-photo-card__title {
        font-size: 1rem;
    }
    
    .counter-section .section-title h2 {
        font-size: 28px;
    }
    
    .counter-section .section-title p {
        font-size: 15px;
    }
    
    .counter-section .counter-content h2 {
        font-size: 32px;
    }
    
    .counter-section .single-counter {
        padding: 30px 15px;
    }
}

@media (max-width: 420px) {
    .video-testimonials-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-testimonials-list.video-testimonials-list--count-3,
    .video-testimonials-list.video-testimonials-list--count-2,
    .video-testimonials-list.video-testimonials-list--count-1 {
        grid-template-columns: 1fr;
    }

    .testimonial-video-viewer__shell {
        padding: 14px 10px 16px;
    }

    .testimonial-video-viewer__stage {
        width: 100%;
        border-radius: 20px;
    }

    .testimonial-video-viewer__media {
        min-height: min(70vh, 620px);
    }

    .testimonial-video-viewer__meta {
        padding: 18px 16px 16px;
    }

    .testimonial-video-viewer__title {
        font-size: 1.05rem;
    }

    .testimonial-video-viewer__desc {
        font-size: 0.84rem;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 30px 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-top-section {
        padding: 20px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link span {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Enhanced Why Choose Us Section Styling */
.why-choose-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-repeat: repeat;
    opacity: 0.6;
}

.why-choose-section .section-title {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-title span {
    color: #dc3545;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: block;
}

.why-choose-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.why-choose-section .section-title p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us Cards */
.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin-bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.why-choose-card::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #dc3545;
    transform: scale(1, 0);
    transition: transform 800ms ease-in-out;
    transform-origin: bottom center;
    z-index: -1;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover::after {
    transform: scale(1, 1);
    transform-origin: top center;
}

/* Card Icon Styling */
.card-icon {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ED2057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.icon-wrapper i {
    color: white;
    font-size: 32px;
    transition: all 0.8s ease;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.why-choose-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.why-choose-card:hover .icon-wrapper i {
    color: white;
}

.why-choose-card:hover .card-content h4 {
    color: white;
}

.why-choose-card:hover .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-card:hover .feature-item {
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-card:hover .feature-item i {
    color: white;
}

.why-choose-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.why-choose-card:hover .icon-bg {
    opacity: 1;
    animation: pulse 1s infinite;
}

/* Card Content Styling */
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.8s ease;
}

.card-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Card Features */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #ff6b6b;
    border-radius: 25px;
    transition: all 0.8s ease;
}

.feature-item i {
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
}

.feature-item span {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.why-choose-card:hover .feature-item {
    background: rgba(220, 53, 69, 0.1);
    transform: translateX(5px);
}

/* Hover Overlay */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.9);
}

.why-choose-card:hover .card-hover-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.overlay-content {
    text-align: center;
    padding: 30px;
    color: white;
}

.overlay-content h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #dc3545;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.learn-more-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.learn-more-btn i {
    transition: all 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .why-choose-section .section-title h2 {
        font-size: 42px;
    }
    
    .why-choose-card {
        padding: 35px 25px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .why-choose-section .section-title h2 {
        font-size: 36px;
    }
    
    .why-choose-section .section-title p {
        font-size: 16px;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .card-content h4 {
        font-size: 22px;
    }
    
    .overlay-content h5 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .why-choose-section .section-title h2 {
        font-size: 28px;
    }
    
    .why-choose-section .section-title span {
        font-size: 12px;
    }
    
    .why-choose-section .section-title p {
        font-size: 15px;
    }
    
    .why-choose-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .card-content h4 {
        font-size: 20px;
    }
    
    .card-content p {
        font-size: 14px;
    }
    
    .overlay-content {
        padding: 20px;
    }
    
    .overlay-content h5 {
        font-size: 20px;
    }
    
    .overlay-content p {
        font-size: 14px;
    }
    
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Disable hover transforms on mobile to prevent cards growing / taking extra space on tap */
    .why-choose-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .why-choose-card:hover::before {
        transform: scaleX(0);
    }
    .why-choose-card:hover::after {
        transform: scale(1, 0);
        transform-origin: bottom center;
    }
    .why-choose-card:hover .icon-wrapper {
        transform: none;
    }
    .why-choose-card:hover .icon-bg {
        opacity: 0;
    }
}

@media (max-width: 575px) {
    .why-choose-section .section-title h2 {
        font-size: 24px;
    }
    
    .why-choose-card {
        padding: 20px 15px;
    }
    
    .icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .icon-wrapper i {
        font-size: 22px;
    }
    
    .card-content h4 {
        font-size: 18px;
    }
    
    .feature-item {
        padding: 6px 12px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
}

/* Animation Enhancements */
.why-choose-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }
.why-choose-card:nth-child(5) { animation-delay: 0.5s; }
.why-choose-card:nth-child(6) { animation-delay: 0.6s; }

/* Hover state animations */
.why-choose-card:hover .card-content h4 {
    color: #dc3545;
}

.why-choose-card:hover .card-content p {
    color: #495057;
}

/* Ensure proper spacing between cards */
.why-choose-section .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.why-choose-section .col-xl-4,
.why-choose-section .col-lg-4,
.why-choose-section .col-md-6 {
    padding: 0 15px;
    display: flex;
    margin-bottom: 30px;
}

/* Enhanced focus states for accessibility */
.why-choose-card:focus-within {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.learn-more-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Enhanced Mission & Vision Section Styling */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px;
    background-repeat: repeat;
    opacity: 0.8;
}

.mission-vision-section .section-title {
    position: relative;
    z-index: 2;
}

.mission-vision-section .section-title span {
    color: #dc3545;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: block;
}

.mission-vision-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-vision-section .section-title p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin-bottom: 30px;
    z-index: 2;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.15);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-header .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-header .icon-wrapper i {
    color: white;
    font-size: 32px;
    font-weight: 600;
}

.card-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Card Body */
.card-body {
    padding: 40px 30px;
}

.mission-description,
.vision-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: justify;
}

/* Objectives List */
.objectives-list h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.objectives-list h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    border-radius: 2px;
}

.objectives-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-items li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.objectives-items li:last-child {
    border-bottom: none;
}

.objectives-items li:hover {
    background: rgba(220, 53, 69, 0.02);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.objective-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.objective-icon i {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.objectives-items li:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.objective-content {
    flex: 1;
}

.objective-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.objective-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.objectives-items li:hover .objective-content h6 {
    color: #dc3545;
}

/* Mission Card Specific */
.mission-card .card-header {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.mission-card .objective-icon {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

/* Vision Card Specific */
.vision-card .card-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.vision-card .objective-icon {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .mission-vision-section .section-title h2 {
        font-size: 42px;
    }
    
    .card-header {
        padding: 35px 25px 25px;
    }
    
    .card-header .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .card-header .icon-wrapper i {
        font-size: 28px;
    }
    
    .card-header h3 {
        font-size: 26px;
    }
    
    .card-body {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .mission-vision-section .section-title h2 {
        font-size: 36px;
    }
    
    .mission-vision-section .section-title p {
        font-size: 16px;
    }
    
    .card-header {
        padding: 30px 20px 20px;
    }
    
    .card-header h3 {
        font-size: 24px;
    }
    
    .card-body {
        padding: 30px 20px;
    }
    
    .objectives-list h5 {
        font-size: 18px;
    }
    
    .objective-content h6 {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .mission-vision-section .section-title h2 {
        font-size: 28px;
    }
    
    .mission-vision-section .section-title span {
        font-size: 12px;
    }
    
    .mission-vision-section .section-title p {
        font-size: 15px;
    }
    
    .card-header {
        padding: 25px 15px 15px;
    }
    
    .card-header .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-header .icon-wrapper i {
        font-size: 24px;
    }
    
    .card-header h3 {
        font-size: 22px;
    }
    
    .card-body {
        padding: 25px 15px;
    }
    
    .mission-description,
    .vision-description {
        font-size: 15px;
    }
    
    .objectives-items li {
        padding: 15px 0;
        gap: 15px;
    }
    
    .objective-icon {
        width: 45px;
        height: 45px;
    }
    
    .objective-icon i {
        font-size: 18px;
    }
    
    .objective-content h6 {
        font-size: 14px;
    }
    
    .objective-content p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .mission-vision-section .section-title h2 {
        font-size: 24px;
    }
    
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .card-header .icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .card-header .icon-wrapper i {
        font-size: 22px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .objectives-items li {
        padding: 12px 0;
        gap: 12px;
    }
    
    .objective-icon {
        width: 40px;
        height: 40px;
    }
    
    .objective-icon i {
        font-size: 16px;
    }
}

/* Animation Enhancements */
.mission-vision-card {
    animation: fadeInUp 0.6s ease-out;
}

.mission-vision-card:nth-child(1) { animation-delay: 0.1s; }
.mission-vision-card:nth-child(2) { animation-delay: 0.2s; }

/* Enhanced hover effects */
.mission-vision-card:hover .card-header .icon-wrapper {
    transform: scale(1.1);
}

.mission-vision-card:hover .card-header h3 {
    transform: translateY(-2px);
}

/* Ensure proper spacing */
.mission-vision-section .row {
    margin: 0 -15px;
}

.mission-vision-section .col-xl-6,
.mission-vision-section .col-lg-6 {
    padding: 0 15px;
}

/* Focus states for accessibility */
.mission-vision-card:focus-within {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Fix for Sticky Header Gap Issue */
body {
    padding-top: 0;
    transition: padding-top 0.3s ease;
}

body.has-sticky-header {
    padding-top: 100px; /* Adjust this value based on your header height */
}

/* Enhanced Page Header Section with Image Slider */
.page-header-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 0;
}

.header-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position:  center 70%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.page-header-content {
    position: relative;
    z-index: 4;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.page-header-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.page-header-content .breadcrumb-item {
    font-size: 16px;
    color: #ffffff;
}

.page-header-content .breadcrumb-item a {
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header-content .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-header-content .breadcrumb-item.active {
    color: #ffffff;
}

.page-header-content .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffc107;
    font-weight: 600;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(220, 53, 69, 0.7);
    border-color: #dc3545;
}

/* Animation for slide content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .page-header-section {
        height: 350px;
    }
    
    .page-header-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .page-header-section {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .page-header-content .breadcrumb-item {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        height: 250px;
    }
    
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .page-header-content .breadcrumb-item {
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575px) {
    .page-header-section {
        height: 200px;
    }
    
    .page-header-content h1 {
        font-size: 24px;
    }
    
    .page-header-content .breadcrumb-item {
        font-size: 13px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Country Cards Styling */
.country-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.country-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.country-flag {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.country-flag img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.country-card:hover .country-flag img {
    transform: scale(1.1);
    border-color: #dc3545;
}

.country-info h6 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.country-info p {
    font-size: 14px;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.country-card:hover .country-info h6 {
    color: #dc3545;
}

/* Country Detail Sections Styling */
.country-detail-section {
    position: relative;
    overflow: hidden;
}

.country-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.02) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    background-repeat: repeat;
    opacity: 0.6;
    pointer-events: none;
}

.country-header {
    display: flex;
    align-items: center;
/*    margin-bottom: 30px;*/
    gap: 20px;
}

.country-flag-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.country-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 30px;
}

.country-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.05);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.highlight-item i {
    color: #dc3545;
    font-size: 18px;
}

.highlight-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.country-features h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.country-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #6c757d;
    font-size: 16px;
}

.country-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}

.country-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.country-image:hover img {
    transform: scale(1.05);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments for country detail sections */
@media (max-width: 768px) {
    .country-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 1rem;
    }
    
    .country-header h2 {
        font-size: 28px;
    }
    
    .country-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-item {
        justify-content: center;
    }
    
    .country-image img {
        height: 300px;
    }
}

/* Country Comparison Section Styling */
.country-comparison-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.country-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    background-repeat: repeat;
    opacity: 0.6;
    pointer-events: none;
}

.comparison-table-wrapper {
    position: relative;
    z-index: 2;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.comparison-table-custom {
    margin: 0;
    border: none;
}

.comparison-table-custom thead th {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 15px;
    border: none;
    text-align: center;
    position: relative;
}

.comparison-table-custom thead th i {
    margin-right: 8px;
    font-size: 18px;
}

.comparison-table-custom thead th span {
    font-weight: 600;
}

.comparison-table-custom tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

.comparison-table-custom tbody tr:hover {
    background: rgba(220, 53, 69, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.comparison-table-custom tbody tr:last-child {
    border-bottom: none;
}

.comparison-table-custom tbody td {
    padding: 25px 15px;
    border: none;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
    color: #2c3e50;
    min-height: 70px;
}

/* Country Cell Styling */
.country-cell {
    text-align: left !important;
}

.country-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 50px;
    padding: 5px 0;
}

.country-flag-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

/* Cost Cell Styling */
.cost-cell {
    font-weight: 600;
    color: #dc3545;
    font-size: 16px;
}

/* Work Cell Styling */
.work-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: none;
}

/* PR Badge Styling */
.pr-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: none;
}

.pr-badge.available {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.pr-badge.limited {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.pr-badge.complex {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

/* Programs Cell Styling */
.programs-cell {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

/* Responsive Design for Comparison Table */
@media (max-width: 768px) {
    .comparison-table-custom thead th {
        font-size: 14px;
        padding: 15px 10px;
    }
    
    .comparison-table-custom thead th i {
        display: none;
    }
    
    .comparison-table-custom tbody td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .country-info-cell {
        gap: 10px;
    }
    
    .country-flag-small {
        width: 25px;
        height: 25px;
    }
    
    .country-name {
        font-size: 14px;
    }
    
    .work-badge,
    .pr-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Benefits Section Styling */
.benefits-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    background-repeat: repeat;
    opacity: 0.6;
    pointer-events: none;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    border: 1px solid rgba(220, 53, 69, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #ED2057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    transition: all 0.4s ease;
}

.benefit-icon i {
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.benefit-card:hover .icon-bg {
    opacity: 1;
    transform: scale(1.2);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-content h4 {
    color: #dc3545;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(220, 53, 69, 0.1);
    transition: all 0.3s ease;
}

.feature-tag i {
    color: #dc3545;
    font-size: 12px;
    font-weight: bold;
}

.feature-tag span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.benefit-card:hover .feature-tag {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Responsive Design for Benefits Section */
@media (max-width: 768px) {
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 28px;
    }
    
    .benefit-content h4 {
        font-size: 20px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    .feature-tag {
        padding: 6px 12px;
    }
    
    .feature-tag span {
        font-size: 12px;
    }
}

/* Countries Dropdown Styling */
.countries-dropdown {
    max-height: 400px;
    overflow-y: auto;
    width: 200px;
    columns: 1;
}

.countries-dropdown li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.countries-dropdown li a i {
    margin-right: 8px;
    color: #dc3545;
    transition: all 0.4s ease-in-out;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    position: relative;
    z-index: 2;
}

.countries-dropdown li a:hover i {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1.1);
}

/* Responsive dropdown for mobile */
@media (max-width: 768px) {
    .countries-dropdown {
        columns: 1;
        width: 180px;
        max-height: 300px;
    }
}

/* Fix for sections that might have margin-top issues */
.about-section,
.mission-vision-section,
.why-choose-section,
.counter-section,
.cta-section {
    position: relative;
    z-index: 1;
}

/* Enhanced Team Section Styling - Dark Theme */
.team-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme);
    opacity: 0.8;
}

.team-section .section-title {
    position: relative;
    z-index: 2;
}

    .team-section .section-title span {
        color: #e1a3a9;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 15px;
        display: block;
    }

.team-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.team-section .section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 62.5rem;
    margin: 0 auto;
}

/* Team Cards */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 97%;
    margin-bottom: 40px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
}

.team-card:hover::before {
    transform: scaleX(1);
}

/* Team Card Header */
.team-card-header {
    padding: 25px 20px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: floralwhite;
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.team-card-header span {
    font-size: 14px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Team Card Image */
.team-card-image {
    position: relative;
    padding: 20px;
    text-align: center;
}

.team-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.team-share-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.team-share-btn i {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.team-card:hover .team-share-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

/* Team Card Header Hover Effects */
.team-card:hover .team-card-header h4 {
    color: white !important;
}

.team-card:hover .team-card-header span {
    color: white !important;
}

/* Team Card Overlay */
.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(255, 107, 107, 0.95));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.9);
}

.team-card:hover .team-card-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.overlay-content {
    text-align: center;
    padding: 30px;
    color: white;
}

    .overlay-content h5 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .overlay-content p {
        font-size: 16px;
        color: white;
        margin-bottom: 20px;
        font-weight: 500;
    }

.team-description {
    margin-bottom: 25px;
}

    .team-description p {
        font-size: 14px;
        line-height: 1.6;
        color: white;
        margin: 0;
    }

/* Team Social Links */
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.social-link i {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .team-section .section-title h2 {
        font-size: 42px;
    }
    
    .team-card-header {
        padding: 20px 15px 15px;
    }
    
    .team-card-header h4 {
        font-size: 18px;
    }
    
    .team-card-image img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .team-section .section-title h2 {
        font-size: 36px;
    }
    
    .team-section .section-title p {
        font-size: 16px;
    }
    
    .team-card-header h4 {
        font-size: 16px;
    }
    
    .team-card-header span {
        font-size: 13px;
    }
    
    .team-card-image img {
        height: 200px;
    }
    
    .overlay-content {
        padding: 20px;
    }
    
    .overlay-content h5 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .team-section .section-title h2 {
        font-size: 28px;
    }
    
    .team-section .section-title span {
        font-size: 12px;
    }
    
    .team-section .section-title p {
        font-size: 15px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .team-card-header {
        padding: 15px 10px 10px;
    }
    
    .team-card-image {
        padding: 15px;
    }
    
    .team-card-image img {
        height: 180px;
    }
    
    .team-share-btn {
        width: 35px;
        height: 35px;
        bottom: 25px;
        left: 25px;
    }
    
    .team-share-btn i {
        font-size: 14px;
    }
    
    .overlay-content h5 {
        font-size: 18px;
    }
    
    .overlay-content p {
        font-size: 14px;
    }
    
    .team-description p {
        font-size: 13px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 14px;
    }

    /* Disable hover transforms on mobile to prevent cards growing / taking extra space on tap */
    .team-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.1);
    }
    .team-card:hover::before {
        transform: scaleX(0);
    }
    .team-card:hover .team-card-image img {
        transform: none;
    }
    .team-card:hover .team-share-btn {
        transform: none;
    }
    .team-card:hover .team-card-overlay {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
    }
}

@media (max-width: 575px) {
    .team-section .section-title h2 {
        font-size: 24px;
    }
    
    .team-card-header h4 {
        font-size: 15px;
    }
    
    .team-card-header span {
        font-size: 12px;
    }
    
    .team-card-image img {
        height: 160px;
    }
    
    .team-share-btn {
        width: 30px;
        height: 30px;
        bottom: 20px;
        left: 20px;
    }
    
    .team-share-btn i {
        font-size: 12px;
    }
}

/* Animation Enhancements */
.team-card {
    animation: fadeInUp 0.6s ease-out;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }
.team-card:nth-child(7) { animation-delay: 0.7s; }
.team-card:nth-child(8) { animation-delay: 0.8s; }

/* Enhanced hover effects */
.team-card:hover .team-card-header h4 {
    color: white !important;
}

/* Ensure proper spacing */
.team-section .row {
    margin: 0 -15px;
}

.team-section .col-xl-3,
.team-section .col-lg-4,
.team-section .col-md-6 {
    padding: 0 15px;
}

/* Focus states for accessibility */
.team-card:focus-within {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.social-link:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Enhanced Team Values Section Styling */
.team-values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-repeat: repeat;
    opacity: 0.6;
}

.team-values-section .section-title {
    position: relative;
    z-index: 2;
}

.team-values-section .section-title span {
    color: #dc3545;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: block;
}

.team-values-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.team-values-section .section-title p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin-bottom: 30px;
    z-index: 2;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

/* Value Card Header */
.value-card-header {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.value-icon-wrapper i {
    color: white;
    font-size: 32px;
    font-weight: 600;
}

.value-card-header h4 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Value Card Body */
.value-card-body {
    padding: 40px 30px;
}

.value-card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 25px;
    text-align: justify;
}

/* Value Features */
.value-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.value-features .feature-item i {
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
    min-width: 16px;
}

.value-features .feature-item span {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.value-card:hover .value-features .feature-item {
    background: rgba(220, 53, 69, 0.1);
    transform: translateX(5px);
}

/* Enhanced hover effects */
.value-card:hover .value-card-header .value-icon-wrapper {
    transform: scale(1.1);
}

.value-card:hover .value-card-header h4 {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .team-values-section .section-title h2 {
        font-size: 42px;
    }
    
    .value-card-header {
        padding: 35px 25px 25px;
    }
    
    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .value-icon-wrapper i {
        font-size: 28px;
    }
    
    .value-card-header h4 {
        font-size: 26px;
    }
    
    .value-card-body {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .team-values-section .section-title h2 {
        font-size: 36px;
    }
    
    .team-values-section .section-title p {
        font-size: 16px;
    }
    
    .value-card-header {
        padding: 30px 20px 20px;
    }
    
    .value-card-header h4 {
        font-size: 24px;
    }
    
    .value-card-body {
        padding: 30px 20px;
    }
    
    .value-card-body p {
        font-size: 15px;
    }
    
    .value-features .feature-item span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .team-values-section .section-title h2 {
        font-size: 28px;
    }
    
    .team-values-section .section-title span {
        font-size: 12px;
    }
    
    .team-values-section .section-title p {
        font-size: 15px;
    }
    
    .value-card {
        margin-bottom: 20px;
    }
    
    .value-card-header {
        padding: 25px 15px 15px;
    }
    
    .value-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .value-icon-wrapper i {
        font-size: 24px;
    }
    
    .value-card-header h4 {
        font-size: 22px;
    }
    
    .value-card-body {
        padding: 25px 15px;
    }
    
    .value-card-body p {
        font-size: 14px;
    }
    
    .value-features .feature-item {
        padding: 8px 12px;
    }
    
    .value-features .feature-item span {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .team-values-section .section-title h2 {
        font-size: 24px;
    }
    
    .value-card-header {
        padding: 20px 15px 15px;
    }
    
    .value-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .value-icon-wrapper i {
        font-size: 22px;
    }
    
    .value-card-header h4 {
        font-size: 20px;
    }
    
    .value-card-body {
        padding: 20px 15px;
    }
    
    .value-features .feature-item {
        padding: 6px 10px;
    }
}

/* Animation Enhancements */
.value-card {
    animation: fadeInUp 0.6s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

/* Ensure proper spacing */
.team-values-section .row {
    margin: 0 -15px;
}

.team-values-section .col-xl-4,
.team-values-section .col-lg-4,
.team-values-section .col-md-6 {
    padding: 0 15px;
}

/* Focus states for accessibility */
.value-card:focus-within {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Enhanced Join Team Section Styling */
.join-team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.join-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-repeat: repeat;
    opacity: 0.6;
}

/* Join Team Card */
.join-team-card {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.join-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.join-team-card:hover::before {
    transform: scaleX(1);
}

/* Join Team Content */
.join-team-content .section-title {
    margin-bottom: 40px;
}

.join-team-content .section-title span {
    color: #dc3545;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: block;
}

.join-team-content .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.join-team-content .section-title p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Join Team Features */
.join-team-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.join-team-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(220, 53, 69, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.join-team-features .feature-item:hover {
    background: rgba(220, 53, 69, 0.05);
    transform: translateX(10px);
    border-color: rgba(220, 53, 69, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px !important;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.feature-icon i {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.join-team-features .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h6 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.feature-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.join-team-features .feature-item:hover .feature-content h6 {
    color: #dc3545;
}

/* Join Team CTA */
.join-team-cta {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-team-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #dc3545;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    transition: all 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .join-team-card {
        padding: 50px 40px;
    }
    
    .join-team-content .section-title h2 {
        font-size: 36px;
    }
    
    .join-team-content .section-title p {
        font-size: 16px;
    }
    
    .feature-content h6 {
        font-size: 16px;
    }
    
    .cta-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .join-team-card {
        padding: 40px 30px;
    }
    
    .join-team-content .section-title h2 {
        font-size: 32px;
    }
    
    .join-team-features {
        gap: 20px;
    }
    
    .join-team-features .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h6 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .join-team-cta {
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .cta-content h4 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .join-team-card {
        padding: 30px 20px;
    }
    
    .join-team-content .section-title h2 {
        font-size: 28px;
    }
    
    .join-team-content .section-title span {
        font-size: 12px;
    }
    
    .join-team-content .section-title p {
        font-size: 15px;
    }
    
    .join-team-features {
        gap: 15px;
    }
    
    .join-team-features .feature-item {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
    
    .feature-content h6 {
        font-size: 14px;
    }
    
    .feature-content p {
        font-size: 12px;
    }
    
    .join-team-cta {
        padding: 25px 15px;
    }
    
    .cta-content h4 {
        font-size: 20px;
    }
    
    .cta-content p {
        font-size: 13px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .join-team-card {
        padding: 25px 15px;
    }
    
    .join-team-content .section-title h2 {
        font-size: 24px;
    }
    
    .join-team-features .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 47px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 14px;
    }
    
    .feature-content h6 {
        font-size: 13px;
    }
    
    .feature-content p {
        font-size: 11px;
    }
    
    .cta-content h4 {
        font-size: 18px;
    }
    
    .cta-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Animation Enhancements */
.join-team-card {
    animation: fadeInUp 0.6s ease-out;
}

.join-team-features .feature-item {
    animation: fadeInLeft 0.6s ease-out;
}

.join-team-features .feature-item:nth-child(1) { animation-delay: 0.1s; }
.join-team-features .feature-item:nth-child(2) { animation-delay: 0.2s; }
.join-team-features .feature-item:nth-child(3) { animation-delay: 0.3s; }
.join-team-features .feature-item:nth-child(4) { animation-delay: 0.4s; }

/* Focus states for accessibility */
.join-team-card:focus-within {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.cta-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* About Section New Design */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    background-repeat: repeat;
    opacity: 0.6;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.vertical-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
/*    background: #dc3545;*/
}

.horizontal-line-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dc3545;
}

.horizontal-line-2 {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 60px;
    height: 3px;
/*    background: #dc3545;*/
}

.about-content {
    padding-left: 40px;
}

.about-content .section-title span {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.about-content .section-title h2 {
    color: #2c3e50;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    flex: 1;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #dc3545;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.1);
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.2);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 5px;
    display: block;
    line-height: 1.2;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    padding-left: 1.1rem;
}

    .feature-item i {
        color: #e12d2d;
        font-size: 16px;
        margin-right: 15px;
        width: 20px;
        text-align: center;
    }

.feature-item span {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

.about-button .theme-btn {
/*    background: #dc3545;*/
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}
/* Fix theme-btn hover state for better text visibility */
.theme-btn:hover {
    color: white !important;
}

.theme-btn span {
    position: relative;
    z-index: 10 !important;
    color: inherit;
}

.theme-btn:hover span {
    color: white !important;
}

.about-button .theme-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.about-button .theme-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-button .theme-btn:hover i {
    transform: translateX(5px);
}

.founder-profile {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #dc3545;
}

.founder-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #dc3545;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
}

.founder-name {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Playfair Display', serif;
}

.founder-title {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-content .section-title h2 {
        font-size: 32px;
    }
    
    .stats-wrapper {
        gap: 20px;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .about-image-wrapper {
        padding: 10px;
    }
    
    .overlay-image {
        width: 150px;
        height: 120px;
        bottom: -15px;
        right: -15px;
    }
    
    .about-content .section-title h2 {
        font-size: 28px;
    }
    
    .stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        justify-content: center;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .founder-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .about-content .section-title h2 {
        font-size: 2rem;
    }

    .stats-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 0 1 auto;
        display: flex;
        justify-content: center;
    }

    .stat-circle {
        width: 88px;
        height: 88px;
        border-width: 2px;
        padding: 6px;
        box-shadow: 0 6px 18px rgba(220, 53, 69, 0.12);
    }

    .stat-number {
        font-size: 1.85rem;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 4px;
        line-height: 1.15;
    }
}

/* Enhanced Dropdown Menu Hover Animations */
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

/* Ensure flag icons are always visible and properly styled */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag {
    color: #dc3545 !important;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure flag icons remain visible on hover */
.header-main .main-menu ul li .submenu li:hover > a i.fas.fa-flag {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1.1);
}

/* Additional flag icon visibility fixes */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag,
.countries-dropdown li a i.fas.fa-flag {
    display: inline-block !important;
    position: relative;
    z-index: 2;
    text-shadow: none;
    filter: none;
}

/* Ensure flag icons are visible in all dropdown states */
.header-main .main-menu ul li .submenu li a:hover i.fas.fa-flag,
.header-main .main-menu ul li .submenu li a:focus i.fas.fa-flag,
.countries-dropdown li a:hover i.fas.fa-flag,
.countries-dropdown li a:focus i.fas.fa-flag {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
}

/* Flag icon animation and styling */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag,
.countries-dropdown li a i.fas.fa-flag {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color, opacity;
}

.header-main .main-menu ul li .submenu li a::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #dc3545;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.header-main .main-menu ul li .submenu li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: #dc3545;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.header-main .main-menu ul li .submenu li:hover > a {
    background: transparent;
    color: #ffffff !important;
    transform: translateX(5px);
}

.header-main .main-menu ul li .submenu li:hover > a::before {
    height: 100%;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
    height: 100%;
}

/* Enhanced dropdown show/hide animation */
.header-main .main-menu ul li:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Smooth dropdown item entrance animation */
.header-main .main-menu ul li .submenu li {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}
/* Override for countries dropdown to ensure visibility */
.header-main .main-menu ul li .countries-dropdown li {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.header-main .main-menu ul li:hover .countries-dropdown li {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.header-main .main-menu ul li:hover .submenu li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.header-main .main-menu ul li:hover .submenu li:nth-child(1) {
    transition-delay: 0.1s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(2) {
    transition-delay: 0.15s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(3) {
    transition-delay: 0.2s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(4) {
    transition-delay: 0.25s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(5) {
    transition-delay: 0.3s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(6) {
    transition-delay: 0.35s;
}

/* Enhanced dropdown shadow and border */
.header-main .main-menu ul li .submenu {
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Smooth main menu item hover */
.header-main .main-menu ul li a {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-main .main-menu ul li a:hover {
    color: #dc3545 !important;
    transform: translateY(-2px);
}

/* Enhanced dropdown arrow animation */
.header-main .main-menu ul li a i {
    transition: all 0.4s ease-in-out;
}
/* Ensure dropdown arrow icon matches text color on hover */
.header-main .main-menu ul li a:hover i {
    color: #dc3545 !important;
}
.header-main .main-menu ul li:hover > a i {
    transform: rotate(180deg);
    color: #dc3545;
}

/* Ensure no gaps in dropdown positioning */
.header-main .main-menu ul li .submenu {
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-main .main-menu ul li .submenu li a {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .header-main .main-menu ul li .submenu {
        box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
    }
}

@media (max-width: 767px) {
    .header-main .main-menu ul li .submenu li a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .header-main .main-menu ul li .submenu li:hover > a {
        transform: translateX(3px);
    }
}

/* Enhanced Join Team Feature Icons */
.join-team-features .feature-icon {
    width: 50px;
    height: 50px !important;
    background: #ED2057;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.join-team-features .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 12px;
}

.join-team-features .feature-icon i {
    color: white !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.join-team-features .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #e74c3c 100%);
}

.join-team-features .feature-item:hover .feature-icon i {
    color: white !important;
    transform: scale(1.1);
}

/* Enhanced feature item styling */
.join-team-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(220, 53, 69, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 53, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.join-team-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-team-features .feature-item:hover {
    background: rgba(220, 53, 69, 0.08);
    transform: translateX(10px);
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
}

.join-team-features .feature-item:hover::before {
    opacity: 1;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h6 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.feature-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.join-team-features .feature-item:hover .feature-content h6 {
    color: #dc3545;
    transform: translateX(5px);
}

/* ===== FLAG ICON VISIBILITY FIXES ===== */
/* Ensure flag icons are always visible in dropdown menus */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag,
.countries-dropdown li a i.fas.fa-flag {
    display: inline-block !important;
    position: relative;
    z-index: 2;
    text-shadow: none;
    filter: none;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Flag icon hover states - ensure visibility */
.header-main .main-menu ul li .submenu li:hover > a i.fas.fa-flag,
.countries-dropdown li a:hover i.fas.fa-flag {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Flag icon focus states */
.header-main .main-menu ul li .submenu li a:focus i.fas.fa-flag,
.countries-dropdown li a:focus i.fas.fa-flag {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
}

/* Flag icon active states */
.header-main .main-menu ul li .submenu li a:active i.fas.fa-flag,
.countries-dropdown li a:active i.fas.fa-flag {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
}

/* Ensure flag icons have proper contrast */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag,
.countries-dropdown li a i.fas.fa-flag {
    color: #dc3545 !important;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color, opacity;
}

/* Override any conflicting styles */
.header-main .main-menu ul li .submenu li a i.fas.fa-flag,
.countries-dropdown li a i.fas.fa-flag {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ===== MBBS DROPDOWN FLAG ICONS ===== */
/* Style for flag icons in both MBBS and Countries dropdowns */
.mbbs-dropdown li a .country-flag-icon,
.countries-dropdown li a .country-flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for flag icons in both dropdowns */
.mbbs-dropdown li a:hover .country-flag-icon,
.countries-dropdown li a:hover .country-flag-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Ensure proper alignment of flag icons with text */
.mbbs-dropdown li a,
.countries-dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
}

/* Responsive adjustments for both dropdowns */
@media (max-width: 768px) {
    .mbbs-dropdown li a .country-flag-icon,
    .countries-dropdown li a .country-flag-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .mbbs-dropdown li a,
    .countries-dropdown li a {
        padding: 10px 20px;
    }
}

/* MBBS Dropdown specific styling */
.mbbs-dropdown {
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.1);
    overflow: hidden;
}

/* MBBS dropdown item styling */
.mbbs-dropdown li {
    transition: all 0.3s ease;
}

/* MBBS dropdown hover effects */
.mbbs-dropdown li:hover {
    background-color: rgba(220, 53, 69, 0.05);
}

.mbbs-dropdown li a:hover {
    color: #dc3545 !important;
    background: transparent;
    transform: translateX(5px);
}

/* Ensure MBBS dropdown has same animation as countries dropdown */
.header-main .main-menu ul li .mbbs-dropdown {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-main .main-menu ul li:hover .mbbs-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
