/* --- SS Look Implementation --- */
.about-ss-style {
    color: #ffffff;
    padding: 100px 0;
}


.ss-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 25px;
    border-left: 5px solid #e31e24;
    margin-top: 15px;
    color: #3a3d74;
}

.red-text { color: #e31e24; }

.our-story-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #3a3d74;
    font-weight: bold;
}
.tag-line { width: 40px; height: 1px; background: #3a3d74; }


.thumb-card { position: relative; }
.thumb-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}
.badge-pill {
    background: #3a3d74;
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Stats */
.ss-stats h3 { font-size: 28px; font-weight: 800; margin-bottom: 5px; color: #3a3d74; }
.ss-stats p { font-size: 12px; color: #3a3d74; margin: 0; }

/* Avatars Stack */
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 3px solid #121212;
    margin-right: -15px; /* એકબીજાની ઉપર ચડાવવા માટે */
    object-fit: cover;
}

/* Watch Intro Button */
.play-intro-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.play-btn-outline {
    width: 55px; height: 55px;
    border: 1px solid #3a3d74;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: white;
    background-color: #3a3d74;
}
.play-btn-outline:hover { background: #e31e24; border-color: #e31e24; }
.watch-text { font-size: 13px; font-weight: 700; letter-spacing: 1px; }

.ss-desc { color: #3a3d74; font-size: 15px; line-height: 1.7; max-width: 90%; }


/* --- Vision & Mission Section --- */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vm-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border-bottom: 5px solid #3a3d74;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid #e31e24;
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(58, 61, 116, 0.1);
    color: #3a3d74;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.vm-card:hover .vm-icon {
    background: #e31e24;
    color: #ffffff;
}

.vm-title {
    font-size: 24px;
    font-weight: 700;
    color: #3a3d74;
    margin-bottom: 15px;
}

.vm-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Background Text Decoration */
.bg-watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    user-select: none;
}

/* About Section Icon Buttons */
.about-icon-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #3a3d74; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 10px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.about-icon-link:hover .icon-circle {
    background-color: #e31e24;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.icon-label {
    font-size: 14px;
    font-weight: 600;
    color: #3a3d74;
}

.about-icon-link:hover .icon-label {
    color: #e31e24;
}

@media (max-width: 576px) {
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    .icon-label {
        font-size: 12px;
    }
}

.our-process-image-section {
    padding: 80px 0;
}

.process-img-container {
    max-width: 1000px; 
    margin: 0 auto;
    background: #fff;
    transition: 0.3s;
}

.process-img-container:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.process-img-container img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .our-process-image-section {
        padding: 50px 0;
    }
}