.about-section {
    background: rgb(255,255,240,0.2);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    font-family: "poppins","sans-sheriff";
    min-height: auto;
}

/* Make row stretch to full height */
.about-section .row.align-items-center {
    align-items: stretch !important;
}

.about-section .col-lg-7,
.about-section .col-lg-5 {
    display: flex;
    flex-direction: column;
}

#mission.about-section {
    overflow: visible;
    min-height: 600px;
}

.about-section .container-fluid {
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
}

.about-section .row.position-relative {
    position: relative;
    overflow: visible;
    z-index: 1;
}
.about-section .section-heading{
    color: #1C2B78;
    font-weight:600;
    font-size:40px;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
}

.about-section .section-heading:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff4500;
    border-radius: 3px;
}

.about-section .section-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}
.about-section .sub-heading{
    color:#FF6600;
    font-weight:600;
    font-size:30px;
}
.rotating-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
    z-index: 0;
}

.rotating-image.center-image {
    transform: translate(-50%, -50%) !important;
    /* left: 50% !important;
    top: 50% !important; */
    opacity: 1 !important;
    z-index: 0 !important;
    max-width:1rem;
}
.backimage{
    width:36rem;
    /* filter: blur(8px);
    opacity: 0.3; */
    transition: all 0.3s ease;
}

.left-image { left: -8rem; }
.right-image { right: 4rem; }
/* @keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
  } */
  

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem 1rem 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
    visibility: visible;
    opacity: 1;
    display: block;
}
.content-wrapper .section-heading{
    text-align: center;
}
.content-wrapper .sub-heading{
    text-align:center
}
.content-wrapper .section-content{
    color: #212529d9;
    font-size:16px;
    text-align: justify;
    line-height: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}
/* Core Features Cards Styling */
.core-features-section .feature-cards-container {
    margin-top: 2rem;
}

.core-features-section .feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    height: 100%;
    min-height: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.core-features-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(255, 102, 0) 0%, #504f93 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.core-features-section .feature-card:hover::before {
    transform: scaleX(1);
}

.core-features-section .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.core-features-section .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-top-color: rgb(255, 102, 0);
}

.core-features-section .feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgb(255, 102, 0) 0%, rgba(255, 102, 0, 0.8) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    transform: scale(0) rotate(-180deg);
    opacity: 0;
    flex-shrink: 0;
}

.core-features-section .feature-card.animate-in .feature-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.core-features-section .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #504f93 0%, rgb(255, 102, 0) 100%);
}

.core-features-section .feature-icon i {
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.core-features-section .feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.core-features-section .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1C2B78;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    line-height: 1.3;
    /* min-height: 50px; */
    display: flex;
    align-items: center;
}

.core-features-section .feature-card.animate-in .feature-title {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s, color 0.3s ease;
}

.core-features-section .feature-card:hover .feature-title {
    color: rgb(255, 102, 0);
}

.core-features-section .feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    flex: 1;
    overflow: visible;
    white-space: normal;
}

.core-features-section .feature-card.animate-in .feature-description {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.core-features-section .feature-card:hover .feature-description {
    color: #45494b;
}

@media (max-width: 768px) {
    .rotating-image {
        width: 20rem;
        height: 20rem;
    }
    .left-image { left: -22rem; }
    .right-image { right: -10rem; }
    
    .core-features-section .feature-card {
        padding: 1.5rem 1.2rem;
    }
    
    .core-features-section .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .core-features-section .feature-icon i {
        font-size: 28px;
    }
    
    .core-features-section .feature-title {
        font-size: 18px;
    }
}
/* Infographic Style Section */
.infographic-title {
    color: #1C2B78;
    font-size: 34px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.infographic-title:after {
    content: "";
    width: 60px;
    height: 3px;
    background: #FF6600;
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

.infographic-subtitle {
    font-size: 16px;
    color: #555;
}

/* Text Styling */
.about-text p {
    font-size: 16px;
    line-height: 28px;
    color: #212529;
    margin-bottom: 1rem;
}

/* Cards */
.infographic-cards .info-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 18px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #FF6600;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: #1C2B78;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1C2B78;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 13px;
    color: #666;
}

/* Right-side infographic Image */
.infographic-image-wrapper {
    padding: 20px;
    background: rgba(255,102,0,0.06);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
}

.infographic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    opacity: 0.9;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.infographic-image-wrapper:hover .infographic-image {
    transform: scale(1.02);
    opacity: 1;
}

/* Responsive Fixes */
@media (max-width: 768px) {

    .infographic-title {
        font-size: 28px;
    }

    .infographic-cards .info-card {
        padding: 15px 8px;
    }

    .infographic-image {
        width: 100%;
        height: auto;
        max-width: 200px;
        object-fit: contain;
    }
    
    .infographic-image-wrapper {
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 576px) {

    .infographic-title {
        font-size: 24px;
    }

    .info-card h4 {
        font-size: 18px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}



