:root
{
    scroll-behavior: smooth;
    font-family: "Nunito", sans-serif;
    --primary-color: rgb(0 88 148);
    --font-color-style1: #334155;
    --font-color-style2: #1C252E;
    --dark-color:#000;
    --white-color:#fff;
    --white-bg:#fff;
    --secondory-bg:#f3f3f3;
    --light-color-label: #999;
    --theme-light-yellow-bg: #fff9e7;
    --palette-background-defaultChannel: 255 255 255;
    --layout-header-zIndex: 1101;
    --inner-header-zIndex:2;
    --comman-radius-box:10px;
    --light-brd-clr: #e5e5e5;
    --page-bg: #fafafa;
}

.Journey
{
    position: relative;
}
.Journey_img
{
    margin-top: 0 !important;
}
.Journey_img img
{
    width: 85%;
}
.Journey_text
{
    font-size: 16px;
}
.vision-mission-card
{
    position: relative;
    padding: 20px;
    text-align: center;
    background: #eaeeff;
    border-radius: 20px;
    margin: 30px 0 0 0;
    border: 1px solid #c1caf6;
    overflow: hidden;
    z-index: 1;
    transition: all 300ms ease-in-out;
}
.vision-mission-card .icon
{
    width: 50px;
    height: 50px;
    text-align: center;
    background: #c5dcfb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 21px;
}
.vision-mission-card .text
{
    width: calc(100% - 50px);
    text-align: left;
    margin-left: 15px;
}
.vision-mission-card .text label
{
    font-size: 22px;
    font-weight: 900;
}
.vision-mission-card .text p
{
    margin: 0
}

/* =========================================
   UNIQUE TEAM SECTION (Organic & Premium)
   ========================================= */
.team-section {
    background: #fdfdfd;
    overflow: hidden;
}

/* --- 1. FOUNDER SECTION (The Blob Layout) --- */
.founder-wrapper {
    padding: 20px 0;
}

/* The Organic Blue Shape behind CEO */
.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    background: #e0f2fe; /* Light Blue */
    border-radius: 46% 54% 39% 61% / 46% 40% 60% 54%; /* Organic Blob Shape */
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 46% 54% 39% 61% / 46% 40% 60% 54%; transform: translate(-50%, -50%) rotate(0deg); }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-50%, -50%) rotate(10deg); }
}

.founder-img-box {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 15%; /* Adjust based on image size */
    background: #005894;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 88, 148, 0.3);
}
.floating-badge .num { font-weight: 800; font-size: 18px; line-height: 1; }
.floating-badge .txt { font-size: 9px; text-transform: uppercase; line-height: 1.1; }

/* Text Side */
.role-pill {
    display: inline-block;
    background: #f0f4f8;
    color: #005894;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.name-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.quote-box {
    position: relative;
    padding-left: 0;
}
.quote-icon {
    font-size: 24px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: block;
}
.quote-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

/* Footer Signature */
.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #005894;
}

.visual-socials { display: flex; gap: 10px; }
.v-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: 0.3s;
    cursor: default;
}
.v-icon:hover { border-color: #005894; color: #005894; }


/* --- 2. TEAM PORTRAIT CARDS (Modern & Sleek) --- */
.team-portrait {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px; /* Tall portrait look */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.portrait-img {
    width: 100%;
    height: 100%;
}
.portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* The Dark Gradient Overlay */
.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 88, 148, 0.9) 0%, rgba(0,0,0,0) 50%); /* Blue gradient at bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0.9; /* Slight opacity initially */
    transition: all 0.3s ease;
}

.info-content {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.team-portrait h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}
.team-portrait .job {
    color: #abcbde; /* Light Blue text */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* Hidden Socials Row */
.static-social-row {
    display: flex;
    gap: 12px;
    opacity: 0; /* Hidden by default */
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.static-social-row span {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: default;
}

/* --- HOVER EFFECTS --- */
.team-portrait:hover .portrait-img img {
    transform: scale(1.1); /* Zoom Image */
}
.team-portrait:hover .info-content {
    transform: translateY(0); /* Text Moves Up */
}
.team-portrait:hover .static-social-row {
    opacity: 1; /* Show Icons */
    transform: translateY(0);
}


/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .blob-bg { width: 280px; height: 280px; }
    .founder-img-box { width: 240px; height: 240px; margin-bottom: 20px; }
    .founder-text { text-align: center; }
    .quote-box p { font-size: 15px; }
    .founder-meta { justify-content: center; flex-direction: column; gap: 15px; }
    .team-portrait { height: 340px; } /* Smaller on mobile */
}
/* =========================================
   VISION & MISSION INTERNAL STYLES
   ========================================= */

/* Subtitles (Our Vision / Our Mission tags) */
.vm-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #0d6efd);
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1); /* Subtle blue bg */
    padding: 5px 12px;
    border-radius: 20px;
}

/* Titles */
.vm-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: "Nunito", sans-serif;
}

/* Paragraphs */
.vm-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Checkmark List */
.vm-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.vm-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vm-list li i {
    color: var(--primary-color, #0d6efd);
}

/* Image Frames */
.vm-img-box {
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.vm-img-box img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    height: 350px; /* Ensures consistent height */
}

/* Floating Round Icons */
.vm-floating-icon {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary-color, #0d6efd);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    border: 4px solid #fff;
}
.vm-floating-icon.secondary {
    background:  var(--primary-color, #0d6efd); /* Green accent */
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Core Values Box at bottom */
.vm-values-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 50px;
    border: 1px solid #f0f0f0;
}
.vm-value-card i {
    font-size: 32px;
    color: var(--primary-color, #0d6efd);
    margin-bottom: 10px;
    transition: transform 0.3s;
}
.vm-value-card:hover i {
    transform: translateY(-5px);
}
.vm-value-card h6 {
    font-weight: 700;
    margin: 0;
    color: #333;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .vm-content {
        margin-top: 30px;
        text-align: center;
    }
    .vm-list li {
        justify-content: center;
    }
    .vm-floating-icon {
        right: 50%;
        transform: translateX(50%);
    }
}


/* =========================================
   OUR JOURNEY (Unique Namespace: oj-)
   ========================================= */

/* 1. Heading Styles */
.oj-heading-wrap h2 {
    font-weight: 800;
    margin-bottom: 15px;
}
.oj-heading-wrap h2 span {
    color: var(--primary-color, #0d6efd);
}
.oj-sub-title {
    color: var(--primary-color, #0d6efd);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

/* 2. Connecting Line (Desktop Only) */
.oj-connector-line {
    position: absolute;
    top: 55px; /* Aligns with icons */
    left: 15%;
    right: 15%;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 20px 1px;
    background-repeat: repeat-x;
    z-index: 1;
}

/* 3. Step Card Container */
.oj-step-card {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    background: transparent;
    transition: transform 0.3s ease;
}

.oj-step-card:hover {
    transform: translateY(-10px);
}

/* 4. Faded Background Number */
.oj-bg-num {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    font-family: sans-serif;
    line-height: 1;
    z-index: -1;
}

/* 5. Icon Circle */
.oj-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color, #0d6efd);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 4px solid #fff; /* Creates gap from the line */
}

.oj-step-card:hover .oj-icon-circle {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
}

/* 6. Card Text */
.oj-card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 20px;
}

.oj-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* 7. Animation Keyframes */
@keyframes ojFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oj-anim {
    animation: ojFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: var(--delay);
}

/* 8. Responsive Adjustments */
@media (max-width: 991px) {
    .oj-connector-line { display: none; }
    .oj-step-card { margin-bottom: 40px; }
    .oj-bg-num { font-size: 50px; top: -30px; }
}



/* =========================================
   AMBIENT MESH WAVE STYLES
   ========================================= */

.mesh-trusted-section {
    position: relative;
    /* Added extra padding bottom to account for the wave height */
    padding: 60px 0 100px 0; 
    background-color: #f8faff; /* Very light premium base */
    overflow: hidden; 
    margin-bottom: 0; /* Wave handles the transition */
}

/* --- 1. Animated Background Blobs --- */
.mesh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6; 
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px); /* Soft diffuse glow */
    animation: meshFloat 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

/* Brand Blue Blob (Top Left) */
.blob-1 {
    width: 500px; height: 500px;
    background: rgba(13, 110, 253, 0.12); 
    top: -150px; left: -150px;
}

/* Cyan/Teal Blob (Bottom Right) */
.blob-2 {
    width: 400px; height: 400px;
    background: rgba(16, 185, 129, 0.12);
    bottom: -50px; right: -100px;
    animation-delay: -5s;
}

/* Purple Highlight (Center) */
.blob-3 {
    width: 350px; height: 350px;
    background: rgba(139, 92, 246, 0.08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: meshPulse 8s infinite alternate;
}

/* --- 2. Typography --- */
.mesh-heading {
    position: relative;
    z-index: 2;
}

.mesh-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.mesh-title {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin: 0 0 25px 0;
    font-family: "Nunito", sans-serif;
}

.mesh-title span {
    background: -webkit-linear-gradient(45deg, #0d6efd, #0847a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative Gradient Line */
.mesh-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #0d6efd, #0847a5);
    border-radius: 10px;
    margin: 0 auto; /* Centered on mobile */
}

@media (min-width: 992px) {
    .mesh-line { margin: 0; } /* Left align on desktop */
}

/* --- 3. Glass Slider --- */
.mesh-marquee {
    position: relative;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 45px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    
    /* Fade Masks */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.mesh-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: meshScroll 40s linear infinite;
    align-items: center;
}

.mesh-item i {
    font-size: 50px;
    color: #94a3b8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mesh-item i:hover {
    color: #0f172a;
    transform: scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(13, 110, 253, 0.2));
}


/* --- Animations --- */
@keyframes meshScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes meshFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes meshPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .mesh-trusted-section {
        padding: 80px 0 120px 0; /* Adjust padding for mobile */
    }
    
    .mesh-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .mesh-title {
        font-size: 32px;
    }
    
    .mesh-marquee {
        padding: 30px 0;
    }
    
    .mesh-track {
        gap: 40px;
    }
    
    .mesh-item i {
        font-size: 40px;
    }
    
    .mesh-wave-bottom svg {
        height: 60px; /* Smaller wave on mobile */
    }
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .team-portrait {
        height: 350px; /* Slightly smaller on tablets */
    }
}

@media (max-width: 576px) {
    .team-portrait {
        height: 320px; /* Compact on Mobile */
    }
    
    /* On Mobile: Show a subtle gradient always so text is readable if they tap */
    .portrait-overlay {
        opacity: 1; 
        visibility: visible;
        background: linear-gradient(to top, rgba(0, 88, 148, 0.9) 0%, rgba(0,0,0,0) 50%);
    }
    .info-content {
        transform: translateY(0);
    }
    .static-social-row {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 2. TEAM CIRCLE CARDS --- */
.team-circle-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    padding-bottom: 30px;
}

.team-circle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 88, 148, 0.15);
}

/* Decorative Top Background */
.card-top-bg {
    height: 100px;
    background: linear-gradient(135deg, #005894 0%, #003356 100%);
    width: 100%;
}

/* The Circular Image Wrapper */
.avatar-wrapper {
    width: 130px;
    height: 130px;
    margin: -65px auto 0; /* Pulls image up into the blue area */
    position: relative;
    z-index: 2;
    border-radius: 50%;
    padding: 5px;
    background: #fff; /* White ring around image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-circle-card:hover .avatar-wrapper img {
    transform: scale(1.1); /* Slight Zoom on hover */
}

/* Content Area */
.card-body-content {
    padding: 20px 20px 0;
}

.card-body-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.card-body-content .job-role {
    font-size: 13px;
    color: #005894;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Small Divider */
.divider {
    height: 2px;
    width: 30px;
    background: #f1f5f9;
    margin: 15px auto;
    transition: 0.3s;
}
.team-circle-card:hover .divider {
    width: 50px;
    background: #005894; /* Expands and changes color on hover */
}

/* Social Icons */
.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-socials a {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-socials a:hover {
    background: #005894;
    color: #fff;
    transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .ceo-avatar { width: 150px; height: 150px; margin-bottom: 20px; }
    .ceo-info { text-align: center; }
}