
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(145, 153, 170, 0.85) 0%, rgb(32 32 32 / 59%) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.content-left {
    padding: 3rem 1rem;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em; /* Safely reduced */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.cta-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.cta-btn {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #ffffff;
    transition: width 0.4s ease;
}

.cta-btn:hover::after { width: 100%; }

.arrow-btn {
    
    width: 50px; height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
}

@keyframes slideInLeft {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Title Gradients */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

 
.custom-hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Career Tabs */
 
.icon-circle {
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 0.1em; /* Stops horizontal scroll on mobile */
        text-align: center;
    }
    .hero-subtitle { text-align: center; }
    .cta-container { justify-content: center; }
    
    .tab-item {
        text-align: center;
        margin-bottom: 10px;
    }
    .tab-item.active { transform: none; }
}
 

/* The little label above the main title */
.premium-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- The Left Menu --- */
.premium-tab-menu {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08); /* Soft floating shadow */
}

.tab-item {
    padding: 14px 20px;
    margin-bottom: 8px;
    border-radius: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.tab-item i {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

/* The Active Tab State */
.tab-item.active {
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    transform: translateX(6px); /* Slight nudge to the right to show it's selected */
}

.tab-item.active i {
    color: #2563eb;
}

.tab-item:hover:not(.active) {
    background: #f8fafc;
    color: #0f172a;
}

/* --- The Right Content --- */
.career-detail {
    display: none;
    animation: fadeSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.career-detail.active {
    display: block;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sleek Image Wrapper */
.premium-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
    border: 1px solid #f1f5f9;
    /* Aspect ratio keeps images perfectly sized without stretching */
    aspect-ratio: 4/5; 
}

.premium-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Clean, modern list items instead of bulky rows */
.premium-skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.skill-badge i {
    color: #10b981; /* Premium Emerald Green for the checkmark */
}

/* Unified Premium Button */
.btn-premium {
    background: #2563eb !important;
    border: none;
    border-radius: 12px;
    padding: 14px 35px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}
/* =========================================
   PREMIUM CEO / VISIONARY SECTION
   ========================================= */

.visionary-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px;
    /* Incredibly soft, wide shadow for a floating effect */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s ease;
}

.visionary-card:hover {
    transform: translateY(-5px);
}

/* Massive, faint quote mark in the background */
.giant-bg-quote {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 14rem;
    color: #f8fafc;
    z-index: -1;
    transform: rotate(10deg);
}

.visionary-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Avatar Styling --- */
.visionary-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 5px; /* Creates the colorful border thickness */
    background: linear-gradient(135deg, #2563eb, #00d2ff);
    position: relative;
    z-index: 2;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #ffffff; /* Crisp white gap between photo and color ring */
    object-fit: cover;
}

/* Beautiful soft glow behind the avatar */
.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: #2563eb;
    filter: blur(45px);
    border-radius: 50%;
    opacity: 0.35;
    z-index: 1;
}

/* --- Text Styling --- */
.visionary-text {
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #0f172a; /* Deep navy */
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.visionary-author {
    display: flex;
    align-items: center;
    gap: 24px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2563eb; /* Brand Blue */
    margin: 0;
}

.author-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

.author-accent-line {
    height: 2px;
    width: 80px;
    background: #e2e8f0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .visionary-content {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    .visionary-card {
        padding: 40px 25px;
    }
    .quote-text {
        font-size: 1.35rem;
    }
    .visionary-author {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .author-accent-line {
        display: none; /* Hide the line on mobile to keep it clean */
    }
}