/* ========================================
   Why Choose Us Section - Creative Circular Layout
   Theme Color: #F58221 with Animated Connections
   ======================================== */

/* Section Container */
.why-choose-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Animated Background */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 130, 33, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Section Header - Centered */
.section-header {
    text-align: center;
    margin-bottom: 200px;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #F58221 0%, #ff9f4a 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(245, 130, 33, 0.3);
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0F172A 0%, #383838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Layout - Circular/Radial Design */
.why-choose-layout {
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Connection Lines Container */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-lines svg {
    width: 100%;
    height: 100%;
}

.connection-line {
    stroke: #F58221;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.3;
}

/* Central Content Hub */
.central-hub {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #F58221 0%, #ff9f4a 100%);
    border-radius: 30px;
    padding: 50px 60px;
    max-width: 500px;
    box-shadow: 0 30px 80px rgba(245, 130, 33, 0.4);
    text-align: center;
}

.central-hub::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #F58221, #ff9f4a, #F58221);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.hub-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 1;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon::before {
    content: '✓';
    color: #F58221;
    font-size: 12px;
    font-weight: 700;
}

.feature-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #F58221;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #F58221;
    transform: translateY(-3px);
}

/* Orbiting Stat Cards */
.stat-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stat-card {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1e5bb8 0%, #2b7fd9 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(30, 91, 184, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1e5bb8, #2b7fd9);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
    filter: blur(15px);
}

.stat-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 30px 80px rgba(30, 91, 184, 0.5);
}

/* Position stat cards in circular pattern */
.stat-card:nth-child(1) {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.stat-card:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.stat-card:nth-child(3) {
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.stat-card:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: capitalize;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stat-card {
        width: 160px;
        height: 160px;
        padding: 20px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .why-choose-layout {
        min-height: auto;
        flex-direction: column;
        gap: 40px;
    }

    .stat-orbit {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
        height: auto;
    }

    .stat-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        height: auto;
        min-height: 180px;
    }

    .central-hub {
        max-width: 100%;
    }

    .connection-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .central-hub {
        padding: 40px 30px;
    }

    .hub-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .stat-orbit {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* GSAP Animation Classes */
.gsap-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.gsap-scale-in {
    opacity: 1;
    transform: scale(1);
}