 /* Hero Banner */
        .india-hero {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(55, 65, 81, 0.9) 100%),
                url('assets/images/banner/in-job-banner.jpg') no-repeat center center;
            background-size: cover;
            padding: 150px 0;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .india-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/dot-pattern-light.jpg') repeat;
            opacity: 0.1;
            z-index: 0;
        }

        .india-hero h1 {
            color: #fff;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .india-hero p.lead {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Industry Highlights Section */
        .industry-highlights {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .industry-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .industry-img {
            height: 180px;
            overflow: hidden;
        }

        .industry-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .industry-card:hover .industry-img img {
            transform: scale(1.05);
        }

        .industry-content {
            padding: 25px;
        }

        .industry-content h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .industry-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .trend-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #EFBB20;
            color: #2c3e50;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Fix for overlapping cards */
        .mb-4 {
            margin-bottom: 30px !important;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .industry-img {
                height: 150px;
            }

            .industry-content {
                padding: 20px;
            }
        }

        .trend-badge {
            display: inline-block;
            padding: 3px 10px;
            background: #EFBB20;
            color: #2c3e50;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Job Opportunities Section */
        .job-opportunities {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .job-opportunities:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/dot-pattern.png') repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .job-card {
            background: #fff;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 3px solid #4c1864;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 3px solid #EFBB20;
        }

        .job-type {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .full-time {
            background: #e3f2fd;
            color: #1976d2;
        }

        .part-time {
            background: #e8f5e9;
            color: #388e3c;
        }

        .remote {
            background: #fff3e0;
            color: #e65100;
        }

        .job-card h5 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .job-card .company {
            color: #4c1864;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .job-meta span {
            margin-right: 15px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .job-meta i {
            color: #4c1864;
            margin-right: 5px;
        }

        /* Salary Trends Section */
        .salary-trends {
            padding: 100px 0;
            background: url('assets/images/jobseeker/slider/slide1.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            color: #fff;
        }

        .salary-trends:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(73, 25, 104, 0.9) 0%, rgba(69, 31, 151, 0.9) 100%);
            z-index: 0;
        }

        .salary-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .salary-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .salary-card h4 {
            color: #EFBB20;
            margin-bottom: 15px;
        }

        .salary-range {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .feature-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-img {
            height: 180px;
            overflow: hidden;
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 25px;
        }

        .feature-content h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-content p {
            color: #666;
            margin-bottom: 0;
        }

        /* Fix for overlapping cards */
        .row {
            margin-right: -15px;
            margin-left: -15px;
        }

        [class*="col-"] {
            padding-right: 15px;
            padding-left: 15px;
        }

        .mb-4 {
            margin-bottom: 30px !important;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(76, 24, 100, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            padding-left: 40px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .author-info h5 {
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .author-info p {
            color: #7f8c8d;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(73, 25, 104, 0.9) 0%, rgba(69, 31, 151, 0.9) 100%),
                url('assets/images/jobseeker/in-job-hero.jpg') no-repeat center center;
            background-size: cover;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/dot-pattern.png') repeat;
            opacity: 0.1;
            z-index: 0;
        }

        /* Resume Upload Section */
        .resume-upload-section {
            padding: 80px 0;
            background-color: #f0efef;
        }

        .resume-upload-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Indian Clients Section */
        .company-logos {
            padding: 60px 0;
            background-color: #fff;
        }

        .logo-item {
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .logo-item img {
            max-height: 60px;
            width: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            filter: grayscale(0);
            opacity: 1;
        }

        .see-all-link {
            text-align: center;
            margin-top: 30px;
        }

        /* Job Alert Section */
        .job-alert-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #4c1864 0%, #2d0b4d 100%);
            color: #fff;
        }


        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .india-hero h1 {
                font-size: 2.5rem;
            }

            .india-hero p.lead {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 767px) {
            .india-hero {
                padding: 100px 0;
            }

            .india-hero h1 {
                font-size: 2rem;
            }
        }