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

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 2;
}

.choose-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.choose-header {
    margin-bottom: 3rem;
}

.choose-title {
    font-size: 48px !important;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
}

.choose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 2px;
}

/* Features List */
.features-list {
    margin-bottom: 40px;
}

.choose-items-left,
.choose-items-right {
    margin: 0;
    padding: 0;
}

.choose-item {
    margin: 0 0 15px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-left: none;
}

.choose-item:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.item-content {
    margin-left: 0;
}

.item-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}

.item-description {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.6;
    display: block;
    margin-left: 20px;
    margin-top: 5px;
}

.bullet {
    color: #0d6efd !important;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
}



/* Footer Message */
.choose-footer {
    margin-top: 40px;
}

.footer-message {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    border-left: 4px solid #0d6efd;
    text-align: left;
}

/* Background Elements */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(0, 86, 179, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .choose-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .choose-title {
        font-size: 36px;
    }
    
    .choose-content {
        max-width: 700px;
    }
    
    .choose-items-left,
    .choose-items-right {
        margin-bottom: 30px;
    }
    .choose-columns-gap {
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 40px 0;
    }
    
    .choose-title {
        font-size: 32px;
    }
    
    .choose-item {
        padding: 0;
    }
    
    .item-heading {
        font-size: 1rem;
    }
    
    .bullet {
        font-size: 0.85rem;
    }
    
    .item-description {
        font-size: 0.95rem;
    }
    
    .footer-message {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .choose-title {
        font-size: 28px;
    }
    
    .choose-item {
        padding: 0;
    }
    
    .item-heading {
        font-size: 0.95rem;
    }
    
    .bullet {
        font-size: 0.8rem;
    }
    
    .item-description {
        font-size: 0.9rem;
    }
    
    .footer-message {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Animation Enhancements */
.choose-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.choose-items-left .choose-item:nth-child(1) { animation-delay: 0.1s; }
.choose-items-left .choose-item:nth-child(2) { animation-delay: 0.2s; }
.choose-items-left .choose-item:nth-child(3) { animation-delay: 0.3s; }
.choose-items-right .choose-item:nth-child(1) { animation-delay: 0.4s; }
.choose-items-right .choose-item:nth-child(2) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 