/* --- Impact Section (s20.PNG) --- */
.impact-section {
    padding: 100px 0;
    background: #ffffff;
    /* background-color: red; */
}

.impact-item{
    border: 1px solid aliceblue;
    padding: 2rem 1rem;
    border-radius: 0.5em;
    transition: transform 200ms ease-in-out;
}
.impact-item:hover {
    transform: translateY(-5px);
}
.impact-badge {
    background: #2563eb;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 80px;
    max-width: 500px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns as per s20.PNG */
    gap: 60px 40px;
}

.impact-icon {
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.impact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    /* margin-top: 1rem; */
    line-height: 1.4;
}

.impact-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Visual Cards Section (s21.PNG) --- */
.visual-cards-section {
    padding-bottom: 100px;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Asymmetric grid like image */
    gap: 30px;
}

.visual-card {
    border-radius: 40px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.blue-gradient {
    background: linear-gradient(180deg, #93c5fd 0%, #dbeafe 100%);
}

.light-blue {
    background: #dbeafe;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain image shape */
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .impact-grid { grid-template-columns: 1fr; }
    .cards-wrapper { grid-template-columns: 1fr; }
    .visual-card { height: 350px; }
}

/* --- Intelligence Section Styling --- */
.intelligence-section {
    padding: 120px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.intelligence-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* Left Content */
.intelligence-left {
    flex: 1;
}

.action-badge {
    background: #2563eb;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 35px;
}

.action-heading {
    font-size: 32px; /* Extra large as per image */
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.action-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 480px;
}

/* Button with Shadow/Glow */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #4f46e5;
    color: white;
    padding: 12px 11px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.4);
}

/* Right Content (Process List) */
.intelligence-right {
    flex: 1;
    padding-left: 60px;
    border-left: 1px solid #f1f5f9; /* Subtle vertical line from image_222a3c.png */
}

.process-title {
    font-size: 25px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.process-icon {
    width: 54px;
    height: 54px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.process-item p {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

/* Responsive */
@media (min-width:2065px){
    .impact-badge {
        padding: 12px 28px;
        font-size: 1.5rem;
    }
   .impact-item h4 {
     font-size: 1.8rem;
   }
   .impact-item p {
  font-size: 1.5rem;
   }
   .visual-card {
    height: 500px;
   }
   .action-heading {
  font-size: 5rem
   }
   .action-desc {
  font-size: 2rem;
  max-width: inherit;
   }
   .process-title {
  font-size: 3rem;
   }
   .process-item p {
    font-size: 1.8rem;
   }
   
}

@media (max-width: 1024px) {
    .intelligence-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .intelligence-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #f1f5f9;
        padding-top: 60px;
    }
    .action-heading {
        font-size: 48px;
    }
}

/* --- Benefits Section (s23.PNG) --- */
.benefits-section {
    padding: 100px 0;
    /* background: #f8fafc; */
    position: relative;
    overflow: hidden;
    background-image: url('../assets/images/b8.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* Header Alignment */
.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.benefits-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-top: 20px;
}

.side-text {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    text-align: right;
    line-height: 1.4;
}

/* Cards Container Grid */
.benefits-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 300px); /* Fixed width for better control */
    gap: 30px;
    justify-content: center;
}

/* Individual Card Design */
.benefit-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon-box {
    width: 45px;
    height: 45px;
    background: #dbeafe; /* Light blue icon base */
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.benefit-card p {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

/* --- Zig-Zag Positioning Logic (Matches s23.PNG) --- */


/* Mobile Responsive */
@media (max-width: 768px) {
    .benefits-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .side-text { text-align: left; font-size: 18px; }
    .benefits-cards-container { grid-template-columns: 1fr; }
    .card-1, .card-2, .card-3, .card-4, .card-5 { 
        margin: 0; 
        width: 100%; 
    }
}

