.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 10;
}

.section-badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 24px;
	background: rgba(239, 68, 68, 0.2);
	border: 1px solid #f97316;
	border-radius: 9999px;
	color: #f97316;
	font-size: 16px;
	min-width: 180px;
	text-align: center;
}


/* Background Elements */
.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.bg-glow-blue {
    top: 80px;
    right: 40px;
    width: 600px;
    height: 600px;
    background: #3b82f6;
}

.bg-glow-orange {
    bottom: 80px;
    left: 40px;
    width: 600px;
    height: 600px;
    background: #f97316;
}

.bg-glow-orange-left {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(249, 115, 22, 0.15);
}

.bg-glow-blue-right {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.15);
}

.bg-glow-orange-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(249, 115, 22, 0.1);
}

.bg-glow-blue-left {
    top: 40%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
}

.bg-glow-orange-right {
    top: 40%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.15);
}

.background-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.badge-orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #fb923c;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 30px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-primary {
    background: #ea580c;
    color: white;
    box-shadow: 0 10px 40px -15px rgba(249, 115, 22, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px -15px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: white;
}

.btn-secondary:hover {
    transform: scale(1.05);
    border-color: #60a5fa;
    background: #1e293b;
}

.btn-blue-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 40px -15px rgba(59, 130, 246, 0.5);
    font-size: 18px;
    padding: 20px 40px;
}

.btn-blue-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px -15px rgba(59, 130, 246, 0.5);
}

.btn-orange-primary {
    background: #ea580c;
    color: white;
    box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.5);
    font-size: 18px;
}

.btn-orange-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.6);
}

.btn-secondary-blue {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: white;
    font-size: 18px;
}

.btn-secondary-blue:hover {
    transform: scale(1.05);
    border-color: #60a5fa;
    background: #1e293b;
}

/* Career Hero Section */
.career-hero {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
    padding: 130px 24px 90px;
    overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 50% 45%;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-title {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.title-line-1 {
    font-size: 3.75rem;
    line-height: 1;
}

.title-line-2 {
    font-size: 3.75rem;
    line-height: 1;
    color: #f97316;
}

.hero-description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.stat-orange .stat-value {
    color: #fff;
}

.stat-blue .stat-value {
    color: #fff;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    color: #ddd;
    font-size: 14px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(249, 115, 22, 0.2), transparent);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.7s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid;
    z-index: 2;
}

.corner-top-right {
    top: 16px;
    right: 16px;
    border-color: rgba(249, 115, 22, 0.5);
    border-left: none;
    border-bottom: none;
    border-radius: 0 16px 0 0;
}

.corner-bottom-left {
    bottom: 16px;
    left: 16px;
    border-color: rgba(249, 115, 22, 0.3);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 16px;
}

.image-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #ea580c;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.5);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    font-size: 24px;
    margin-bottom: 8px;
}

.badge-value {
    font-size: 2.25rem;
    font-weight: 700;
}

.badge-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Section Styles */
section {
    position: relative;
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    color: white;
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 24px;
}

.text-blue {
    color: #f97316;
}

.text-orange {
    color: #f97316;
}

.section-description {
    color: #dddddd;
    font-size: 20px;
    max-width: 768px;
    margin: 0 auto;
}

.email-link {
    color: #f97316;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.email-link:hover {
    color: #fdba74;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* Why Apply Section */
.why-apply-section {
    background: #0f172a;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    padding: 0 48px;
    margin-bottom: 64px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: calc(33.333% - 11px);
	transform: translateY(0px) !important;
}

.card-image-wrapper {
    position: relative;
    height: 384px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: all 0.5s ease;
    cursor: pointer;
}

.card-image-wrapper:hover {
    border-color: rgba(59, 130, 246, 0.5);
    /*transform: translateY(-10px);*/
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card-image-wrapper:hover img {
    /*transform: scale(1.1);*/
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.6) 40%, transparent 100%);
    z-index: 1;
}

.card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    animation: iconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.bg-blue {
    background: #ea580c;
}

.bg-orange {
    background: #ea580c;
}

.card-icon i {
    color: white;
    font-size: 28px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.card-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.card-image-wrapper:hover .card-title {
    transform: translateY(-8px);
}

.card-line {
    height: 4px;
    width: 64px;
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.card-image-wrapper:hover .card-line {
    transform: scaleX(1);
}

.line-blue {
    background: #ea580c;
}

.line-orange {
    background: #f97316;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e293b;
    border: 1px solid #334155;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn:hover i {color:#000}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* Job Openings Section */
.job-openings-section {
    background: #020617;
}

.job-accordion {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover .accordion-title {
    color: #f97316;
}

.accordion-title-wrapper {
    flex: 1;
}

.accordion-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: color 0.3s ease;
	font-family: "Roboto FLex",serif;
}

.accordion-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-job {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 1);
    border-radius: 8px;
    color: #d1d5db;
    font-size: 14px;
	font-family: "Roboto",serif;
}

.badge-job i {
    font-size: 16px;
}

.badge-positions {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.accordion-icon {
    font-size: 20px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    margin-left: 24px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.job-details {
    padding: 20px 32px 32px;
    border-top: 2px solid #1e293b;
}

.job-section {
    margin-bottom: 32px;
}

.section-heading {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.job-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-list li {
    color: #d1d5db;
    display: flex;
    gap: 12px;
    line-height: 1.75;
}

.bullet {
    margin-top: 6px;
    flex-shrink: 0;
}

.job-apply {
    padding-top: 24px;
}

/* Why Work With Us Section */
.why-work-section {
    background: #0f172a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.benefit-card {
    position: relative;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid #1e293b;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.benefit-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
}

.benefit-orange:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg);
}

.benefit-icon i {
    color: white;
    font-size: 40px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.benefit-blue:hover .benefit-title {
    /*color: #60a5fa;*/
}

.benefit-orange:hover .benefit-title {
    /*color: #f97316;*/
}

.benefit-description {
    color: #d1d5db;
    line-height: 1.75;
}

.benefit-decoration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-radius: 0 0 16px 0;
    transition: border-color 0.3s ease;
}

.benefit-blue .benefit-decoration {
    border-color: rgba(59, 130, 246, 0.2);
}

.benefit-orange .benefit-decoration {
    border-color: rgba(249, 115, 22, 0.2);
}

.benefit-blue:hover .benefit-decoration {
    border-color: rgba(59, 130, 246, 0.4);
}

.benefit-orange:hover .benefit-decoration {
    border-color: rgba(249, 115, 22, 0.4);
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.cta-box {
	/* display: inline-block; */
	padding: 10px;
	/* background: rgba(15, 23, 42, 0.8); */
	/* border: 2px solid rgba(59, 130, 246, 0.2); */
	/* border-radius: 24px; */
	/* backdrop-filter: blur(10px); */
}
.hero-content .section-badge {width:180px}
.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-header i {
    color: #fff;
    font-size: 32px;
}

.cta-title {
    color: white;
    font-size: 1.875rem;
}

.cta-description {
	color: #d1d5db;
	font-size: 18px;
	max-width: 100%;
	margin: 0 auto 32px;
	text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.error {color: red;font-size: 12px;margin-top: 3px;display: block;}
.loader {display: flex;justify-content: center;align-items: center;margin-top: 15px;}
.loader:after {content: "";width: 30px;height: 30px;border: 4px solid #ccc;border-top-color: #000;border-radius: 50%;animation: spin 0.8s linear infinite;}
@keyframes spin {to { transform: rotate(360deg); }}
#successMessage{color: green;font-size: 17px;background: #fff;padding: 4px;text-align: center;margin-top: 12px;border-radius: 8px;}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .title-line-1, .title-line-2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .carousel-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .title-line-1, .title-line-2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .carousel-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .accordion-icon {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .benefit-card {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.footer .container {padding: 0 1.5rem !important;}

/* Form Container */
.form-container {
    padding: 32px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(51, 65, 85, 1);
	max-width: 750px;
  margin: 0 auto;
    animation: slideInLeft 0.6s ease forwards;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}
.form-group label {padding-bottom: 8px;display: inline-block;}

.form-input {
    width: 100%;
    padding: 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #64748b;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #0f172a;
}

.form-textarea {
    resize: none;
    min-height: 140px;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(to right, #ea580c, #f97316);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 20px 60px -15px rgba(249, 115, 22, 0.5);
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {

    box-shadow: 0 20px 60px -15px rgba(249, 115, 22, 0.7);
}

.submit-button i {
    font-size: 1.25rem;
}


@media(max-width:1366px){
	section {padding: 60px 0;}
}
@media(max-width:1280px){
	.hero-title {margin-top: 0 !important;}
}
@media(max-width:1024px){
	.title-line-1, .title-line-2 {font-size: 3.2rem;}
	.hero-title {margin-top: 1rem !important;}
	.stats-grid {grid-template-columns: 1fr 1fr;}
	.hero-content {width: 100% !important;padding: 0;}
	.hero-image-wrapper {padding: 0 30%;}
	.floating-badge {right: 110px;}
	.carousel-card {flex: inherit;min-width: 50%;}
	.section-cta {text-align: center;margin: 32px auto;width: 260px;}
	section {padding: 50px 0;}
	.btn {font-size: 16px !important;}
	.section-header {padding: 0 4%;}
	.job-accordion {max-width: 90%;}
	.accordion-header {flex-direction: row;}
	.benefits-grid {padding: 0 4%;}
	.cta-box {width: 92%;}
	.benefits-grid {margin-bottom: 30px;}
}
@media(max-width:767px){
	.title-line-1, .title-line-2 {font-size: 2.6rem;}
	.hero-image-wrapper {padding: 0;}
	.floating-badge {right: 20px;}
	.career-hero {padding-bottom: 60px;padding-top: 60px;}
	.carousel-card {min-width: 100%;}
	.carousel-wrapper {margin-bottom: 30px;}
	.accordion-title {font-size: 1.1rem;}
	.accordion-icon {margin-left: 0;margin-top: 0;}
	.cta-header {flex-direction: column;}
	.nav {position: static;}
	.form-container {padding: 20px;margin: 0 4%;}
	.cta-box {width: 100%;padding: 0;}
	.cta-title {font-size: 2rem;text-align: center;line-height: 1.4;}
	
	
}