:root {
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --primary-font-color: #1a1a1a;
    --secondary-font-color: #4a5568;
    --primary-bg: #ffffff;
    --secondary-bg: rgba(250, 250, 250, 0.92);
    --teritary-bg: #f8fafc;
    --primary-transition: all 0.3s ease;
    --color-dark: #000000;
    --color-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--primary-font-color);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary-bg);
    background: transparent ;
   
    z-index: 1000;
    transition: var(--primary-transition);
}
.header.scrolled {
    background: var(--secondary-bg);
    backdrop-filter: none; 
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 2rem 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
   
   
}

.nav-company {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-company h2 {
    font-size: 1.5rem;
    font-weight: 700;
    
    color: white;
}

.nav-company img {
    height: 40px;
    width: 40px;
}

.nav-links,
.second-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
   
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--primary-transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 1.5rem;
    left: 0;
    width: 0;
    height: 1.8px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.second-nav-links {
    gap: 10px;
}

.second-nav-links a {
    text-decoration: none;
    /* color: var(--primary-font-color); */
    font-size: 1rem;
    transition: var(--primary-transition);
}

.contact-us-mail:hover {
    color: var(--secondary-font-color);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    background: transparent ;
    padding: 0.75rem 0;
    border-bottom: none;
    margin-top: 10px;
     
}
.home-link{
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}
.home-link2{
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.breadcrumb a {
    /* color: ; */

    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb span {
    color: white;
    margin: 0 0.2rem;
    font-size: 0.9rem;
}

.breadcrumb i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}
.slash-icon {
    vertical-align: middle; 
    margin: 0 0.2rem;        
}
.container {
    display: flex;
    align-items: center;   
    gap: 0.2rem;           
}
.container.hidden {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-font-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--secondary-bg);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
}

.main-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 90%);
}

.main-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.65) 0%, rgba(44, 82, 130, 0.85) 100%);
    z-index: 2;
}

.main-section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.main-section-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding-top: 120px;
}

.main-section-left {
    color: white;
}

.main-section-title {
    font-size: 3.3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
}
.notification.success {
    background-color: #4caf50;
    color: white;
}
.notification.error {
    background-color: #f44336;
    color: white;
}
.strikethrough {
    display: block;
    position: relative;
    color: #4dd0e1;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.main-title {
    display: block;
    color: white;
    font-weight: 400;
    font-size: 3.5rem;
}

.explore-jobs-btn {
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    background-color: var(--primary-bg);
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--primary-transition);
}

.explore-jobs-btn:hover {
    background-color: var(--secondary-bg);
}

.main-section-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-image {
    position: relative;
    z-index: 2;
}

.main-section-person {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Open Positions */
.open-positions-section {
    padding: 2rem 5rem;
    background-color: var(--primary-bg);
    background-color: var(--teritary-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.open-positions-heading {
    color: var(--secondary-font-color);
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

.search-section {
    flex: 1;
    max-width: 500px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-box input::placeholder {
    color: #94A3B8;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 8px 16px;
    border: 1px solid #E2E8F0;
    background: transparent;
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    background-color: #F1F5F9;
    color: #334155;
}

.tab.active {
    background-color: #3B82F6;
    color: white;
}

.job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.job-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.job-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.code-icon {
    background-color: #EEF2FF;
}

.design-icon {
    background-color: #ECFDF5;
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.tag {
    padding: 4px 12px;
    background-color: #F1F5F9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
}

.job-description {
    color: #64748B;
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.6;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.location,
.time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748B;
    font-size: 13px;
}

.requirements {
    margin-bottom: 2rem;
}

.requirements h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.requirement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.requirement-tag {
    padding: 6px 12px;
    background-color: #F8FAFC;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
}

.apply-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.apply-btn:hover {
    background-color: #2563EB;
}

.apply-btn:active {
    transform: translateY(1px);
}

/* Company Culture Section */
.company-culture {
    padding: 6rem 0;
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.culture-intro {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.highlight p {
    color: #718096;
    line-height: 1.6;
}

.culture-visual {
    position: relative;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.culture-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.culture-img:hover {
    transform: scale(1.05);
}

/* Application process */
.application-process-section {
    padding: 2rem 4rem;
}

.application-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 80px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #6b7280;
    max-width: 180px;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 4rem;
    background: #f8fafc;
}

.why-choose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.why-choose-card {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-choose-collaborative {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1446806057-612x612.jpg');
}

.why-choose-innovation {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1363105039-612x612.jpg');
}

.why-choose-passion {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1037401190-612x612.jpg');
}

.why-choose-learning {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-2149038061-612x612.jpg');
}

.why-choose-ownership {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1430339270-612x612.jpg');
}

.why-choose-team {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1305227027-612x612.jpg');
}

.why-choose-future {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1305227027-612x612.jpg');

    }
.why-choose-growth {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1365436662-612x612.jpg');
}
.why-choose-internship{
     background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://careers.awarcrown.com/images/istockphoto-1364946137-612x612.jpg');

}
.why-choose-collaborative,
.why-choose-innovation,
.why-choose-passion,
.why-choose-learning,
.why-choose-ownership,
.why-choose-team,
.why-choose-future,
.why-choose-growth,
.why-choose-internship {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out, background-size 0.5s ease-in-out;
    cursor: pointer;
}
.why-choose-collaborative:hover,
.why-choose-innovation:hover,
.why-choose-passion:hover,
.why-choose-learning:hover,
.why-choose-ownership:hover,
.why-choose-team:hover,
.why-choose-future:hover,
.why-choose-growth:hover,
.why-choose-internship:hover {
    background-size: 150%; 
  
}

.why-choose-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.why-choose-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.why-choose-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.career-general-application-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 40px;
}

.career-application-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
}

.career-application-form h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.career-form-group {
    margin-bottom: 24px;
}

.career-form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.career-form-group input,
.career-form-group select,
.career-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.career-form-group input:focus,
.career-form-group select:focus,
.career-form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.career-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.career-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.career-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.career-file-upload-label {
    display: block;
    padding: 14px 16px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #6b7280;
}

.career-file-upload:hover .career-file-upload-label {
    border-color: #3B82F6;
    background: #f8fafc;
}

.general-application-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 16px;
}

.general-application-icon {
    width: 120px;
    height: 120px;
    background: black;
    border-radius: 50%;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    padding: 10px;
    padding-top: 20px;
}

.career-general-application-section img {
    height: 100%;
    width: 100%;
}

.general-application-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.general-application-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 400px;
    line-height: 1.7;
}

@media (max-width:768px) {
    .nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .second-nav-links {
        display: none;
    }

    .breadcrumb {
        margin-top: 0;
    }

    .main-section-content {
        grid-template-columns: 1fr !important;
    }

    .main-section-right {
        display: none !important;
    }

    .strikethrough {
        margin-bottom: 40px;
    }

    .open-positions-section {
        padding: 2rem 1.3rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        margin-bottom: 18px;
    }

    .search-section {
        max-width: 100%;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .filter-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .filter-tabs::-webkit-scrollbar-thumb {
        background: #CBD5E1;
        border-radius: 2px;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 8px;
    }

    .culture-content {
        grid-template-columns: 1fr;
    }

    .company-culture {
        padding: 3rem 0;
    }

    .application-process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .step {
        max-width: 300px;
    }

    .step-description {
        max-width: 250px;
    }

    .benefits-section {
        padding: 2rem 2rem;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        height: 250px;
    }

    .why-choose-content {
        padding: 24px;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-description {
        font-size: 14px;
    }

    .career-header {
        padding: 40px 20px;
    }

    .career-header h1 {
        font-size: 2.2rem;
    }

    .career-header p {
        font-size: 1rem;
    }

    .career-general-application-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .career-application-form,
    .general-application-section {
        padding: 30px 20px;
    }

    .general-application-section h2 {
        font-size: 1.8rem;
    }

    .general-application-section p {
        font-size: 1rem;
    }

    .general-application-icon {
        width: 80px;
        height: 80px;
        padding-top: 15px;
    }

    .container {
        padding: 0 1.3rem;
    }
}

@media (max-width:480px) {
    .nav-company h2 {
        font-size: 1rem;
    }

    .nav-company img {
        height: 32px;
        width: 32px;
    }

    .nav-toggle {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .second-nav-links a {
        font-size: 0.85rem;
    }

    .job-cards {
        grid-template-columns: 1fr;
    }

    .requirement-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
    }

    .why-choose-card {
        height: 220px;
    }

    .why-choose-content {
        padding: 20px;
    }

    .why-choose-title {
        font-size: 22px;
    }

    .career-header h1 {
        font-size: 1.8rem;
    }

    .career-application-form h2,
    .general-application-section h2 {
        font-size: 1.5rem;
    }

    .career-form-group input,
    .career-form-group select,
    .career-form-group textarea {
        padding: 12px 14px;
    }
}