/* Why Choose Us Section Styles */
#why-choose-us.why-choose-us-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #f0f8f2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#why-choose-us.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, #f5faf5 0%, #c8e2c3 100%);
    border-radius: 50%;
}

#why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Row */
#why-choose-us .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

#why-choose-us .col-left,
#why-choose-us .col-right {
    flex: 1;
    min-width: 300px;
}

/* Left Side - Image Section */
#why-choose-us .choose-us-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 140, 71, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

#why-choose-us .choose-us-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

#why-choose-us .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

#why-choose-us .choose-us-image:hover .main-image {
    transform: scale(1.05);
}

/* Play Button */
#why-choose-us .play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#why-choose-us .play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border: none;
    border-radius: 50%;
    color: var(--text-white, #ffffff);
    font-size: 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 35px rgba(83, 246, 2, 0.4);
}

#why-choose-us .play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(66, 228, 2, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

#why-choose-us .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(34, 222, 1, 0.6);
}

#why-choose-us .play-button i {
    margin-left: 3px;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
#why-choose-us .image-decoration {
    position: absolute;
    background: var(--primary-green, #52c469);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

#why-choose-us .decoration-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

#why-choose-us .decoration-2 {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

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

/* Right Side - Content */
#why-choose-us .choose-us-content {
    padding: 20px 0;
}

#why-choose-us .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--text-white, #ffffff);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#why-choose-us .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#why-choose-us .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark, #1e3a5f);
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

#why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-green, #52c469);
    border-radius: 2px;
}

#why-choose-us .section-description {
    font-size: 16px;
    color: var(--text-gray, #666666);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Features List */
#why-choose-us .features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#why-choose-us .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--text-white, #ffffff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

#why-choose-us .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green, #52c469), #ff6b35);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

#why-choose-us .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(45, 140, 71, 0.15);
}

#why-choose-us .feature-item:hover::before {
    transform: scaleY(1);
}

#why-choose-us .feature-item:nth-child(1) { animation-delay: 0.1s; }
#why-choose-us .feature-item:nth-child(2) { animation-delay: 0.2s; }
#why-choose-us .feature-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Feature Icon */
#why-choose-us .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white, #ffffff);
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

#why-choose-us .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 20px rgba(89, 230, 2, 0.4);
}

/* Feature Content */
#why-choose-us .feature-content {
    flex: 1;
}

#why-choose-us .feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark, #1e3a5f);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

#why-choose-us .feature-item:hover .feature-title {
    color: var(--primary-green, #52c469);
}

#why-choose-us .feature-description {
    font-size: 15px;
    color: var(--text-gray, #666666);
    line-height: 1.6;
    margin: 0;
}

/* Video Modal */
#why-choose-us .video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

#why-choose-us .modal-content {
    position: relative;
    background-color: var(--text-white, #ffffff);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    height: 450px;
    overflow: hidden;
}

#why-choose-us .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-white, #ffffff);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

#why-choose-us .close-modal:hover {
    opacity: 0.7;
}

#why-choose-us #video-frame {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #why-choose-us .section-title {
        font-size: 2.5rem;
    }
    
    #why-choose-us .row {
        gap: 40px;
    }
    
    #why-choose-us .main-image {
        height: 400px;
    }
    
    #why-choose-us .play-button {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
     #why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;                    /* Position at center */
    width: 50%;
    height: 4px;
    transform: translateX(-50%);  /* Shift back by half width to center */
    background: var(--primary-green, #52c469);
    border-radius: 2px;
}
    #why-choose-us.why-choose-us-section {
        padding: 80px 0;
    }
    
    #why-choose-us .container {
        padding: 0 15px;
    }
    
    #why-choose-us .row {
        flex-direction: column;
        gap: 50px;
    }
    
    #why-choose-us .col-left,
    #why-choose-us .col-right {
        min-width: auto;
    }
    
    #why-choose-us .choose-us-image {
        transform: none;
    }
    
    #why-choose-us .main-image {
        height: 300px;
    }
    
    #why-choose-us .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    #why-choose-us .section-description {
        text-align: center;
        font-size: 15px;
    }
    
    #why-choose-us .section-badge {
        display: block;
        text-align: center;
        margin: 0 auto 20px;
    }
    
    #why-choose-us .choose-us-content {
        text-align: center;
    }
    
    #why-choose-us .features-list {
        text-align: left;
    }
    
    #why-choose-us .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    #why-choose-us .modal-content {
        width: 95%;
        height: 250px;
    }
}

@media (max-width: 576px) {
    #why-choose-us.why-choose-us-section {
        padding: 60px 0;
    }
    
    #why-choose-us .main-image {
        height: 250px;
    }
    
    #why-choose-us .section-title {
        font-size: 1.7rem;
    }
    
    #why-choose-us .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    #why-choose-us .feature-title {
        font-size: 1.1rem;
    }
    
    #why-choose-us .feature-description {
        font-size: 14px;
    }
    
    #why-choose-us .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {

   

    #why-choose-us .container {
        padding: 0 10px;
    }
    
    #why-choose-us .section-title {
        font-size: 1.5rem;
    }
    
    #why-choose-us .feature-item {
        padding: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    #why-choose-us .choose-us-image,
    #why-choose-us .feature-item,
    #why-choose-us .feature-icon,
    #why-choose-us .play-button {
        animation: none;
        transition: none;
    }
    
    #why-choose-us .image-decoration {
        animation: none;
    }
    
    #why-choose-us .play-button::before {
        animation: none;
    }
}
