.why-choose-section {
    position: relative;
    padding: 50px 0;
    background-color: #f8f2eb;
    /* Deeper Navy */
    color: #ffffff;
    overflow: hidden;
    font-family: 'Exo', sans-serif;
}

/* Decorative background elements */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(216, 172, 47, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.why-choose__tagline {
    font-size: 14px;
    font-weight: 700;
    color: #d5a92e;
    /* Vibrant Teal */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.why-choose__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 35px;
    color: #222;
}

.why-choose__text {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #e6bc32, #c29929);
    /* 3D Gradient */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15),
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.1);
    /* Inner & Outer shadows for 3D depth */
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
    border-radius: 10px;
    pointer-events: none;
}

.feature-item:hover .feature-icon-box {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(145deg, #f0c841, #d5a92e);
    box-shadow: 6px 10px 20px rgba(216, 172, 47, 0.4),
        inset 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.feature-icon-box i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    /* Depth for the icon itself */
}

.feature-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin: 0;
    font-family: "Heebo", serif;
}

/* Right Side: Orbital Portrait */
.why-choose__image-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.orbital-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.outer-glow-ring {
    position: absolute;
    width: 95%;
    height: 95%;
    border-radius: 50%;
    border: 1px solid rgb(54 50 50);
    border-top: 2px solid #dbb240;
    animation: rotate 12s linear infinite;
}

.inner-glow-ring {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 1px dashed rgb(219 178 64);
    animation: rotate-reverse 20s linear infinite;
}

.main-portrait {
    width: 82%;
    height: 82%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border: 4px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.main-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain to make the full image visible */
    display: block;
    background-color: #010810;
    /* Assuming transparent PNG */
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .why-choose__title {
        font-size: 32px;
    }

    .orbital-wrap {
        width: 100%;
        max-width: 480px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose__content {
        text-align: center;
        margin-bottom: 50px;
    }

    .why-choose__text {
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose__image-column {
        justify-content: center;
        margin-top: 20px;
    }

    .feature-item {
        text-align: left;
    }

    .features-grid {
        max-width: 100%;
        margin: 0 auto;
        gap: 30px 20px;
    }
}

@media (max-width: 767px) {
    .orbital-wrap {
        max-width: 380px;
    }

    .why-choose__title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .orbital-wrap {
        max-width: 300px;
    }

    .why-choose__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .feature-icon-box {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .why-choose__text {
        font-size: 16px;
    }
}