/* Additional mobile-specific styles */

    .page-content a {
        text-decoration: none;
    }

	:root {
		--primary-color: #009433;
		--secondary-color: #f8f9fa;
		--accent-color: #ff4500;
	}

	/* Hero Section */
	.hero-section {
		height: 70vh;
		background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/placeholder.svg?height=600&width=1200');
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 3.5rem;
		font-weight: bold;
		margin-bottom: 1rem;
	}

	.hero-content p {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}

	.btn-primary-custom {
		background-color: var(--accent-color);
		border: none;
		padding: 12px 30px;
		font-size: 1.1rem;
		border-radius: 8px;
		transition: all 0.3s ease;
        line-height: 1;
        height: auto;
        color: #f2f2f2;
        font-weight: 600;
	}

	.btn-primary-custom:hover {
		background-color: #e55a2b;
        color: #f2f2f2;
		transform: translateY(-2px);
	}

	/* Job Cards */
	.job-card {
		border: none;
		box-shadow: 0 4px 15px rgba(0,0,0,0.1);
		transition: transform 0.3s ease;
		height: 100%;
        background:#f2f2f2;
	}

	.job-card:hover {
		transform: translateY(-5px);
	}

	.job-card .card-header {
		background-color: var(--primary-color);
		color: white;
		border-radius: 10px 10px 0 0 !important;
	}

    .job-card .card-header h4{
        color: white !important;
	}

    .job-card .card-body {
        background: #ffffff;
        border-radius: 0 0 10px 10px !important;
	}

	/* Benefits Section */
	.benefits-section {
		background-color: var(--secondary-color);
		padding: 80px 0;
	}

	.benefit-item {
		text-align: center;
		padding: 30px 20px;
		background: white;
		border-radius: 15px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.1);
		height: 100%;
		transition: transform 0.3s ease;
	}

	.benefit-item:hover {
		transform: translateY(-5px);
	}

	.benefit-icon {
		font-size: 3rem;
		color: var(--accent-color);
		margin-bottom: 20px;
	}

	/* Employee Development Carousel */
    .employee-carousel .swiper {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        height: 320px !important;
    }

    .tiktok-video {
        background: linear-gradient(45deg, #ff0050, #00f2ea);
        border-radius: 15px;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .tiktok-video::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/placeholder.svg?height=300&width=200') center/cover;
        opacity: 0.3;
    }

    .video-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .play-icon {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .swiper-slide {
        align-items: stretch; 
        height: auto !important; 
        padding-top: 0;
        padding-bottom: 0;
    }

    .swiper-button-next, .swiper-button-prev{
        color: #009433;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-family: swiper-icons;
        font-size: 30px;
        font-weight: 900;
        text-transform: none !important;
        letter-spacing: 0;
        font-variant: initial;
        line-height: 1;
    }

	.play-icon {
		font-size: 3rem;
		margin-bottom: 10px;
	}

	/* Application Form */
	.application-form {
		background: white;
		border-radius: 15px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.1);
		padding: 40px;
	}

	.form-control {
		border-radius: 10px;
		border: 2px solid #e9ecef;
		padding: 12px 15px;
	}

	.form-control:focus {
		border-color: var(--primary-color);
		box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
	}

	/* Responsive adjustments */
	@media (max-width: 768px) {
		.hero-content h1 {
			font-size: 2.5rem;
		}
		
		.hero-section {
			height: 50vh;
		}
	}

	/* Custom carousel controls */
	.carousel-control-prev,
	.carousel-control-next {
		width: 5%;
	}

	.control-prev-icon,
	.control-next-icon {
		background-color: var(--primary-color);
		border-radius: 50%;
		padding: 10px;
	}

    .control-prev-icon i,
	.control-next-icon i {
        margin-left: 3px;
        margin-right: 3px;
	}

/* Mobile carousel adjustments */
@media (max-width: 767px) {

    /* Show 2.5 videos on mobile */
    .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .carousel-item .col-lg-3 {
        flex: 0 0 40%;
        max-width: 40%;
        scroll-snap-align: start;
    }
    
    .carousel-item .col-lg-3:last-child {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    /* Hide carousel controls on mobile */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .tiktok-video {
        height: 280px;
    }
    
    /* Show 2 full videos on tablet */
    .carousel-item .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Desktop - 4 videos per slide */
@media (min-width: 992px) {
    .carousel-item .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Form responsiveness */
@media (max-width: 576px) {
    .application-form {
        padding: 20px;
        margin: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
}

/* Job cards mobile stack */
@media (max-width: 768px) {
    .job-card {
        margin-bottom: 20px;
    }
}