 /* Full-width container override with proper margins */
    .full-width-container {
        width: calc(100vw - 40px);
        margin-left: calc(-50vw + 50% + 20px);
        margin-right: calc(-50vw + 50% + 20px);
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Full-width sections with proper margins to prevent horizontal scroll */
    .full-width-section {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    
    /* Mobile responsive full-width */
    @media (max-width: 768px) {
        .full-width-section {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
    /* Prevent horizontal scroll on body and html */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Ensure all elements respect viewport width */
    * {
        box-sizing: border-box;
    }
    
    /* Ensure containers don't cause overflow */
    .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Fix for any potential overflow issues */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-12, .col-lg-3, .col-lg-4, .col-lg-6, .col-md-6, .col-md-4 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Remove gap between navigation and hero section */
    .navbar {
        margin-bottom: 0 !important;
    }
    
    .hero-gradient {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Ensure hero section accounts for fixed navbar */
    .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Animated HR divider */
    .animated-hr {
        height: 3px;
        background: linear-gradient(90deg, transparent, #667eea, #764ba2, #f093fb, transparent);
        border: none;
        margin: 0;
        position: relative;
        overflow: hidden;
    }
    
    .animated-hr::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
        animation: hrShimmer 3s infinite;
    }
    
    @keyframes hrShimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Notification styles are handled by main layout */
    
    /* Vision & Mission Section Styles */
    .bg-gradient-to-r {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
    }
    
    .vision-mission-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .vision-mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .pillar-icon {
        transition: all 0.3s ease;
    }
    
    .pillar-icon:hover {
        transform: scale(1.1) rotate(5deg);
    }
    
    /* Modern Hero Section */
    .hero-gradient {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        position: relative;
        overflow: hidden;
        padding: 40px 0 60px 0;
    }
    
    .hero-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
        animation: gradientShift 15s ease infinite;
    }
    
    @keyframes gradientShift {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    /* Floating Elements */
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
    }
    
    .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }
    
    .floating-element:nth-child(1) {
        width: 100px;
        height: 100px;
        top: 15%;
        left: 8%;
        animation-delay: 0s;
    }
    
    .floating-element:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 65%;
        right: 12%;
        animation-delay: 3s;
    }
    
    .floating-element:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 25%;
        right: 25%;
        animation-delay: 6s;
    }
    
    .floating-element:nth-child(4) {
        width: 60px;
        height: 60px;
        top: 75%;
        left: 20%;
        animation-delay: 2s;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1); 
            opacity: 0.7;
        }
        50% { 
            transform: translateY(-30px) rotate(180deg) scale(1.1); 
            opacity: 1;
        }
    }
    
    /* Modern CTA Buttons */
    .cta-button {
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: none;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s;
    }
    
    .cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    
    .cta-button:hover::before {
        left: 100%;
    }
    
    .cta-button:active {
        transform: translateY(-1px) scale(1.02);
    }
    
    /* Primary CTA Button */
    .cta-primary {
        background: linear-gradient(135deg, #ff6b6b, #ffa726);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 1.1rem;
        border-radius: 50px;
    }
    
    .cta-primary:hover {
        background: linear-gradient(135deg, #ff5252, #ff9800);
        color: white;
    }
    
    /* Secondary CTA Button */
    .cta-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 16px 38px;
        font-size: 1.1rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }
    
    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    /* Modern Cards */
    .feature-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 20px;
        background: white;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        border-color: #667eea;
    }
    
    .feature-card:hover::before {
        transform: scaleX(1);
    }
    
    /* Stats Counter */
    .stats-counter {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-left: 5px solid #667eea;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 4rem;
        color: #667eea;
        opacity: 0.3;
        font-family: serif;
    }
    
    /* Pricing Cards */
    .pricing-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        background: white;
        border: 2px solid transparent;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    }
    
    .pricing-card.featured {
        border: 2px solid #667eea;
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    }
    
    .pricing-card.featured::before {
        content: 'Most Popular';
        position: absolute;
        top: 25px;
        right: -35px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 8px 50px;
        font-size: 0.85rem;
        font-weight: 700;
        transform: rotate(45deg);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    /* Trust Badges */
    .trust-badges {
        opacity: 0.6;
        transition: all 0.3s ease;
        filter: grayscale(100%);
    }
    
    .trust-badges:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.1);
    }
    
    /* Job Card Hover Effect */
    .hover-lift {
        transition: all 0.3s ease;
    }
    
    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
    }

    /* Home page job card text spacing */
    .card .job-description {
        line-height: 1.6;
        margin-top: 0.5rem;
    }

    .card .job-description + .d-flex {
        margin-top: 0.75rem;
    }

    /* Home page job cards */
    .home-job-card {
        border-radius: 16px;
        background: #fff;
    }

    .home-job-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .home-job-logo {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #eef2ff;
        color: #4f46e5;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
    }

    .home-job-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-job-title h5 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .home-job-title span {
        display: block;
        color: #6b7280;
        font-size: 0.9rem;
        margin-top: 2px;
    }

    .home-job-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }

    .home-job-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #f3f4f6;
        color: #374151;
        font-size: 0.85rem;
    }

    .home-job-chip-success {
        background: #ecfdf5;
        color: #047857;
    }

    .home-job-chip-info {
        background: #eff6ff;
        color: #1d4ed8;
    }

    .home-job-description {
        color: #6b7280;
        font-size: 0.92rem;
        line-height: 1.6;
        margin: 0 0 16px;
    }

    .home-job-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .home-job-salary {
        color: #059669;
        font-weight: 600;
        font-size: 0.9rem;
    }

    @media (max-width: 576px) {
        .home-job-card {
            margin-bottom: 1rem;
        }

        .home-job-footer {
            flex-direction: column;
            align-items: stretch;
        }

        .home-job-footer .btn {
            width: 100%;
        }
    }
    
    /* Section Dividers */
    .section-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, #e2e8f0, #667eea, #e2e8f0, transparent);
        margin: 5rem 0;
        border-radius: 2px;
    }
    
    /* Animated Icons */
    .animated-icon {
        animation: pulse 3s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { 
            transform: scale(1) rotate(0deg); 
            box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
        }
        50% { 
            transform: scale(1.1) rotate(5deg); 
            box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
        }
    }
    
    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradientMove 3s ease infinite;
    }
    
    @keyframes gradientMove {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    /* Glass Effect */
    .glass-effect {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    
    /* Modern Typography */
    .hero-title {
        font-size: 2.75rem;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    /* Trust indicator cards minimum height */
    .min-height-card {
        min-height: 80px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .cta-button {
            padding: 14px 30px;
            font-size: 1rem;
        }
        
        .stats-counter {
            font-size: 2.5rem;
        }
        
        /* Better spacing for mobile */
        .py-5 {
            padding-top: 2rem !important;
            padding-bottom: 2rem !important;
        }
        
        .mb-5 {
            margin-bottom: 2rem !important;
        }
        
        .mb-4 {
            margin-bottom: 1.5rem !important;
        }
        
        /* Fix overlapping elements */
        .position-absolute {
            position: static !important;
            transform: none !important;
            margin-bottom: 1rem;
        }
        
        /* Better grid spacing */
        .row.g-4 {
            --bs-gutter-x: 1rem;
            --bs-gutter-y: 1rem;
        }
        
        /* Improve text readability */
        .fs-6 {
            font-size: 0.9rem !important;
        }
        
        .display-5 {
            font-size: 2rem !important;
        }
        
        /* Better button spacing */
        .d-flex.flex-wrap.gap-4 {
            gap: 1rem !important;
        }
        
        /* Improve card padding on mobile */
        .feature-card {
            padding: 1rem !important;
        }
        
        .glass-effect {
            padding: 1rem !important;
        }
    }
    
    /* Extra small devices */
    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .display-5 {
            font-size: 1.75rem !important;
        }
        
        .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .px-4 {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
        
        .px-lg-5 {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
        
        /* Full width on mobile */
        .container-fluid {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .col-lg-6, .col-lg-6 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        /* Ensure full width sections */
        .full-width-section {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }
        
        /* Trust indicators on extra small devices */
        .col-12.col-md-4 {
            width: 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }
        
        /* Better padding for trust indicators on small screens */
        .glass-effect {
            padding: 1rem !important;
        }
        
        /* Bottom margin for trust indicators on extra small devices */
        .col-12.col-md-4.mb-3 {
            margin-bottom: 1rem !important;
        }
        
        /* Fix text overflow on extra small devices */
        .glass-effect {
            overflow: hidden;
            word-wrap: break-word;
            padding: 1rem !important;
        }
        
        /* Ensure text fits in cards on small screens */
        .glass-effect .flex-grow-1 {
            min-width: 0;
            overflow: hidden;
        }
        
        /* Better text spacing on small screens */
        .glass-effect small {
            line-height: 1.1;
            font-size: 0.8rem;
        }
        
        /* Trust indicator cards on extra small devices */
        .min-height-card {
            min-height: 85px;
            overflow: visible;
        }
        
        /* Ensure text fits on small screens */
        .min-height-card .flex-grow-1 {
            min-height: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    }
    
    /* Mobile full-width improvements */
    @media (max-width: 768px) {
        .container-fluid {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        
        .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .col-lg-6, .col-lg-6 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        /* Full width sections */
        .full-width-section {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }
        
        /* Better mobile padding */
        .px-3 {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
        
        /* Ensure all content uses full width */
        .col-12, .col-lg-6, .col-lg-3, .col-md-6, .col-6 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        /* Remove any remaining margins that could cause width issues */
        .mx-0 {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        /* Full width for all sections */
        section {
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Trust indicators full width on mobile */
        .col-12.col-md-4 {
            width: 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }
        
        /* Better spacing for trust indicators on mobile */
        .row.g-3 {
            --bs-gutter-x: 0.75rem;
            --bs-gutter-y: 0.75rem;
        }
        
        /* Full width glass effect on mobile */
        .glass-effect {
            width: 100% !important;
        }
        
        /* Bottom margin for trust indicators on mobile */
        .col-12.col-md-4.mb-3 {
            margin-bottom: 1rem !important;
        }
        
        /* Remove bottom margin on desktop */
        .col-12.col-md-4.mb-md-0 {
            margin-bottom: 0 !important;
        }
        
        /* Fix text overflow in trust indicator cards */
        .glass-effect {
            overflow: hidden;
            word-wrap: break-word;
        }
        
        /* Ensure proper spacing in trust indicator cards */
        .glass-effect .flex-grow-1 {
            min-width: 0;
            overflow: hidden;
        }
        
        /* Better text spacing in cards */
        .glass-effect small {
            line-height: 1.2;
            display: block;
        }
        
        /* Ensure text fits in trust indicator cards */
        .min-height-card {
            min-height: 90px;
            overflow: visible;
        }
        
        /* Better text containment */
        .min-height-card .flex-grow-1 {
            min-height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    }
    
    /* Hero section specific styling - prevent horizontal scroll */
    .hero-gradient {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        position: relative;
    }
    
    @media (max-width: 768px) {
        .hero-gradient {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
    /* Ensure all sections respect viewport width */
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    
    /* Modern shadows */
    .modern-shadow {
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .modern-shadow-lg {
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    
    /* Hover animations */
    .hover-lift {
        transition: transform 0.3s ease;
    }
    
    .hover-lift:hover {
        transform: translateY(-5px);
    }
    
    /* Loading animation */
    .loading-shimmer {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }