:root {
    --text-color: #000000;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* --- FIXED BACKGROUND IMAGE --- */
.background-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -2; 
    
    /* !!! REPLACE THIS WITH YOUR IMAGE FILENAME !!! */
    background-image: url('ASHU.PNG'); 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

/* --- NAVBAR --- */
.navbar {
    padding: 2rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: fixed; top: 0; width: 100%; z-index: 50;
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.logo-link { color: black; text-decoration: none; }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: black; text-decoration: none; font-weight: 600; }
.btn-contact { border: 2px solid black; padding: 8px 20px; border-radius: 50px; transition: all 0.3s; }
.btn-contact:hover { background: black; color: white !important; }

/* --- HERO SECTION --- */
.hero-container {
    position: fixed;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.content-wrapper { position: relative; display: inline-block; }

.main-headline {
    font-size: 10vw; 
    font-weight: 900;
    line-height: 0.85; 
    letter-spacing: -4px;
    margin-bottom: 2rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.smiley-inline {
    display: inline-block;
    width: 0.5em; height: 0.5em;
    vertical-align: middle;
    margin-left: 10px;
    animation: spin 10s linear infinite;
}
@keyframes spin { from {transform: rotate(0deg);} to {transform: rotate(360deg);} }

.sub-headline {
    font-size: 1.2rem; 
    margin: 0 auto 2rem auto; 
    font-weight: 500; 
    max-width: 400px;
}

/* --- FORM --- */
.newsletter-form { display: flex; justify-content: center; }
.input-group {
    background: white; padding: 5px; border-radius: 50px;
    display: flex; border: 2px solid black; width: 100%; max-width: 400px;
}
input[type="email"] { border: none; flex: 1; padding: 10px 20px; font-size: 1rem; outline: none; background: transparent; }
button { background: black; color: white; border: none; padding: 12px 25px; border-radius: 50px; font-weight: 700; cursor: pointer; }

/* --- CAREERS SECTION --- */
.careers-section {
    position: relative;
    margin-top: 100vh;
    background-color: #f9f9f9;
    padding-top: 100px;
    z-index: 10;
    min-height: 100vh;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.careers-header { padding: 0 5%; margin-bottom: 50px; max-width: 800px; }
.careers-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 20px; }
.careers-header p { font-size: 1.1rem; line-height: 1.6; color: #555; }

/* --- MARQUEE --- */
.marquee-wrapper { width: 100%; overflow: hidden; padding-bottom: 80px; }
.marquee-track {
    display: flex; 
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- CARDS (Redesigned) --- */
.job-card {
    width: 320px; 
    height: 440px; 
    border-radius: 20px; 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    transition: transform 0.3s ease; 
    flex-shrink: 0;
    margin-right: 30px; 
}

.job-card:hover { transform: scale(1.02); }

/* Image styling */
.job-card img { 
    width: 100%; 
    height: 300px; /* Portrait aspect ratio */
    object-fit: cover; 
    border-radius: 15px; 
    display: block;
}

/* Footer area holding Text and Button */
.card-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-top: 15px;
    padding: 0 5px;
}

.text-info { display: flex; flex-direction: column; gap: 4px; }
.text-info h3 { font-size: 1.1rem; font-weight: 800; color: #000; margin: 0; }
.text-info p { font-size: 0.95rem; font-weight: 500; color: #333; margin: 0; }

.btn-plus {
    width: 45px; height: 45px; 
    border: 1px solid black; 
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center; 
    font-size: 1.5rem;
    cursor: pointer; 
    transition: all 0.3s ease;
    background: transparent;
}

.job-card:hover .btn-plus { background: black; color: white; }

/* Pastel Colors */
.card-yellow { background-color: #FFF9C4; }
.card-pink   { background-color: #FFCDD2; }
.card-orange { background-color: #FFCCBC; }
.card-purple { background-color: #E1BEE7; }
.card-blue   { background-color: #BBDEFB; }

/* --- FOOTER --- */
.footer {
    padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #ddd; color: #666; font-size: 0.9rem;
}
.socials a { color: black; margin-right: 20px; text-decoration: none; font-weight: 600; }

/* --- PRIVACY PAGE STYLES (Keep existing) --- */
.policy-container {
    max-width: 800px; margin: 120px auto 50px auto; padding: 40px;
    background: rgba(255, 255, 255, 0.9); border-radius: 20px;
    position: relative; z-index: 10; line-height: 1.6;
}
.policy-container h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 900; }
.policy-container h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.policy-container p { margin-bottom: 1rem; color: #333; }
.back-link { display: inline-block; margin-top: 2rem; color: black; font-weight: bold; text-decoration: none; border-bottom: 2px solid black;}