/* --- White Labelling Section --- */
.white-labelling-section {
    padding: 100px 0;
    background: #ffffff;
}

.labelling-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Content & Image */
.labelling-left {
    flex: 1;
    text-align: left;
    background-image: url('../assets/images/b9.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.labelling-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.labelling-subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 50px;
    max-width: 400px;
}

.mobile-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Right Side Features */
.labelling-right {
    flex: 1;
    border-left: 1px solid #f1f5f9; /* Vertical line separator */
}

.feature-vertical-list {
    display: flex;
    flex-direction: column;
}

.labelling-item {
    display: flex;
    gap: 25px;
    padding: 35px 0 35px 40px;
    border-bottom: 1px solid #f1f5f9; /* Horizontal separator line from image */
}

.labelling-item:last-child {
    border-bottom: none;
}

.labelling-icon-box {
    width: 25px;
    height: 25px;
    background: #2563eb; /* Branding Blue */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.labelling-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.labelling-text p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .labelling-wrapper { flex-direction: column; }
    .labelling-right { border-left: none; }
    .labelling-item { padding-left: 0; }
    .labelling-title { font-size: 38px; }
}

/* tech educ section */
/* --- Tech & Edu Section Styling --- */
.tech-edu-section {
    background-color: #020617; 
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
  
}

/* .custom-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    background-image: url(../assets/images/b10.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.tech-edu-header h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tech-edu-header p {
    color: #a1a7af;
    font-size: 14px;
    margin-bottom: 60px;
}

/* Grid Layout */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Base Style */
.tech-card {
    background: rgba(30, 41, 59, 0.5); /* Transparent Glass Look */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 18px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
      background-image: url(../assets/images/b10.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.card-icon {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.8;
}

.tech-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.tech-card p {
    font-size: 12px;
    color: #a1a7af;
    line-height: 1.6;
    margin: 0;
}

/* --- Individual Glow Bars (s25.PNG Style) --- */
.glow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    filter: blur(10px);
}

/* Blue Card */
.card-blue .glow-bar {
    background: #3b82f6;
    box-shadow: 0 -15px 40px #3b82f6;
}

/* Orange Card */
.card-orange .glow-bar {
    background: #f97316;
    box-shadow: 0 -15px 40px #f97316;
}

/* Purple Card */
.card-purple .glow-bar {
    background: #a855f7;
    box-shadow: 0 -15px 40px #a855f7;
}

/* Green Card */
.card-green .glow-bar {
    background: #22c55e;
    box-shadow: 0 -15px 40px #22c55e;
}

.cta-content p {
    color: #f1f5f9;
    font-size: 12px;
    margin: 1rem 0px;
}

/* Responsive */
@media (max-width: 1200px) {
    .tech-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .tech-cards-grid { grid-template-columns: 1fr; }
    .tech-edu-header h2 { font-size: 32px; }
}



/* --- Benefits Slider Section --- */
.benefits-slider-section {
    padding: 100px 0;
    background: #ffffff;
    background-image: radial-gradient(circle at 70% 50%, rgba(186, 204, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

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

.slider-subtitle {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

/* Custom Navigation Buttons like s26.PNG */
.slider-nav {
    display: flex;
    gap: 15px;
}

.swiper-button-prev-custom, 
.swiper-button-next-custom {
    width: 60px;
    height: 60px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover, 
.swiper-button-next-custom:hover {
    background: #1e293b;
    color: #ffffff;
    border-color: #1e293b;
}

/* Card Design */
.benefit-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.card-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px 10px;
}

.card-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 2060px) {
     .card-content p {
        font-size: 1.5rem;
     }
     .labelling-title {
        font-size: 5rem;
     }
     .labelling-subtitle {
        font-size: 2rem;
        max-width: inherit;
     }
     .mobile-mockup{
        display: flex;
        justify-content: center;
        align-items: center;
     }
     .labelling-icon-box {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;

     }
     .labelling-text h4 {
         font-size: 1.9rem;
     }
     .labelling-text p {
        font-size: 1.4rem;
     }
     .tech-edu-header h2 {
        font-size: 4rem;
     }
     .tech-edu-header p {
        font-size: 2rem;
     }
     .tech-card h4 {
        font-size: 2rem;
    }
    .tech-card p {
        font-size: 1.8rem;
    }
    .card-icon {
    font-size: 2rem;
    }
    .slider-title {
    font-size: 4rem;
    }
    .slider-subtitle {
    font-size: 2rem;
    }
    .card-img-box {
        height: 350px;
    }
    .card-content h4 {
     font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.8rem;
    }
}