
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
}
nav a:hover{
color:#38bdf8;
transition:0.3s;
}
/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 20px;
background:#0f172a;
color:white;
}



nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-family:'Bentham', serif;
font-size:18px;
letter-spacing:1px;
}

/* HERO */

.career-hero{
padding:90px 20px;
text-align:center;
background:#0f172a;
color:white;
}

.career-hero h1{
font-size:42px;
font-family:'Cinzel',serif;
margin-bottom:15px;
}

.career-hero p{
max-width:700px;
margin:auto;
opacity:0.9;
}

/* JOB SECTION */

.jobs{
padding:80px 0;
width:100%;
}
.jobs h2{
text-align:center;
font-family:'Cinzel',serif;
margin-bottom:40px;
}


.job-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
text-align:left;
border-left:6px solid #2563eb;
}

.job-card:hover{
transform:translateY(-5px);
}

.job-card h3{
font-family:'Cinzel',serif;
margin-bottom:15px;
}

.job-meta{
margin-bottom:12px;
font-size:15px;
line-height:1.7;
}

.job-desc{
margin:15px 0;
line-height:1.7;
}

.skills span {
  display: block;
  background: none;
  padding: 5px 0;
  margin: 5px 0;
  font-size: 14px;
  color: #334155;
  position: relative;
  padding-left: 22px;
}

.skills span::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 14px;
}
.apply-btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:6px;
transition:0.3s;
}

.apply-btn:hover{
background:#1d4ed8;
}

/* INTERNSHIP */

.internship{
background:#e2e8f0;
padding:80px 40px;
text-align:center;
}

.internship h2{
font-family:'Cinzel',serif;
margin-bottom:15px;
}

.internship a{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:6px;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.internship {
    flex: 1;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jobs {
    flex: 1;
}

/* FOOTER */

footer {
background:#0f172a;
color:white;
text-align:center;
padding:20px;
}
.logo{
display:flex;
flex-direction:column;   /* 🔥 THIS FIXES IT */
align-items:flex-start;  /* or center if you want center */
line-height:1.1;
}

/* CEZONAL */
.logo .line1{
font-family:'Orbitron',sans-serif;
font-size:22px;
letter-spacing:3px;

background:linear-gradient(90deg,#38bdf8,#818cf8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:0 0 10px rgba(56,189,248,0.4);
}

/* TECHNOLOGIES */
.logo .line2{
font-family:'Orbitron',sans-serif;
font-size:12px;
letter-spacing:5px;
opacity:0.7;
color:#fff;
}

/* hover effect same */
.logo:hover{
transform:rotateX(10deg) rotateY(10deg) scale(1.05);
text-shadow:0 0 15px rgba(56,189,248,0.7);
}

.logo-main span{
animation:shine 2s infinite;
}
/* CERTIFICATES SECTION */
.certificates {
    padding: 60px 20px;
    text-align: center;
    background: #f9fafc;
}

.certificates h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.certificates p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.certificate-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.certificate-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.certificate-card i {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 15px;
}

.certificate-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.certificate-card p {
    font-size: 0.95rem;
    color: #666;
}
.logo-main span:nth-child(1){animation-delay:0s;}
.logo-main span:nth-child(2){animation-delay:0.3s;}
.logo-main span:nth-child(3){animation-delay:0.6s;}
.logo-main span:nth-child(4){animation-delay:0.9s;}

@keyframes shine{
0%{text-shadow:0 0 5px rgba(255,255,255,0.2);}
50%{text-shadow:0 0 10px white,0 0 20px currentColor;}
100%{text-shadow:0 0 5px rgba(255,255,255,0.2);}
}
/* POPUP */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

/* Hide scrollbar but keep scrolling */

.popup-form{
background:white;
width:90%;
max-width:600px;
padding:35px;
border-radius:10px;
position:relative;
max-height:90vh;
overflow-y:auto;

/* hide scrollbar */
scrollbar-width:none;      /* Firefox */
-ms-overflow-style:none;   /* IE */
}

.popup-form::-webkit-scrollbar{
display:none;              /* Chrome, Edge, Safari */
}

.popup-form h2{
font-family:'Cinzel',serif;
margin-bottom:20px;
text-align:center;
}

.close-btn{
position:absolute;
top:15px;
left:15px;

width:36px;
height:36px;

display:flex;
align-items:center;
justify-content:center;

background:#f1f5f9;
border:none;
border-radius:50%;

font-size:16px;
color:#0f172a;

cursor:pointer;

transition:all 0.25s ease;
}

.close-btn:hover{
background:#ef4444;
color:white;
transform:scale(1.1);
}

.popup-form input,
.popup-form textarea,
.popup-form select{
width:100%;
padding:14px;
margin-bottom:16px;

border:1px solid #e2e8f0;
border-radius:8px;

font-family:'Inter', sans-serif;
font-size:14px;

background:#f8fafc;
transition:all 0.25s ease;
}

/* focus effect */
.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus{
border-color:#2563eb;
background:#ffffff;
box-shadow:0 0 0 3px rgba(37,99,235,0.1);
outline:none;
}

/* placeholder */
.popup-form input::placeholder,
.popup-form textarea::placeholder{
color:#94a3b8;
}

/* textarea */
.popup-form textarea{
min-height:100px;
resize:none;
}
.file-upload{
position:relative;
border:2px dashed #cbd5f5;
padding:20px;
border-radius:10px;
text-align:center;
cursor:pointer;
background:#f8fafc;
transition:0.3s;
margin-bottom:15px;
}

.file-upload:hover{
border-color:#2563eb;
background:#eff6ff;
}

.file-upload input{
position:absolute;
width:100%;
height:100%;
opacity:0;
cursor:pointer;
top:0;
left:0;
}

.file-upload span{
font-size:14px;
color:#64748b;
font-family:'Inter', sans-serif;
}
.form-row{
display:flex;
gap:10px;
}

.submit-btn{
background:linear-gradient(90deg,#2563eb,#3b82f6);
color:white;
padding:14px;
border:none;
border-radius:8px;
width:100%;
cursor:pointer;
font-weight:600;
font-family:'Inter', sans-serif;

transition:0.3s;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(37,99,235,0.2);
}
.job-header{
position:relative;
cursor:pointer;
font-weight:600;
}

.job-summary{
font-size:14px;
color:#475569;
margin-top:6px;
line-height:1.6;
}

.arrow{
position:absolute;
top:5px;
right:0;
font-size:18px;
transition:0.3s;
}
.job-details{
display:none;
margin-top:20px;
border-top:1px solid #e5e7eb;
padding-top:20px;
}

.job-card.active .job-details{
display:block;
}

.arrow{
font-size:18px;
transition:0.3s;
}

.job-card.active .arrow{
transform:rotate(180deg);
}
/* What We Offer - Modern Design */
.responsibilities {
    margin-top: 20px;
}

.responsibilities b {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 600;
}

.responsibilities ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.responsibilities ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

.responsibilities ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #22c55e;
    font-weight: bold;
    font-size: 14px;
}
/* LOADER */

.loader-box{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:20px;
}

.loader {
display:inline-flex;
border:10px solid #000;
border-radius:5px;
}
/* Loader popup transparent */

#loaderPopup .popup-form{
background: transparent;
box-shadow: none;
border: none;
}

/* Success popup normal white card */

#successMessage .popup-form{
background: white;
color:#0f172a;
text-align:center;
}



.loader::before,
.loader::after {
content:"0 1 2 3 4 5 6 7 8 9 0";
font-size:30px;
font-family:monospace;
font-weight:bold;
line-height:1em;
height:1em;
width:1.2ch;
text-align:center;
outline:1px solid #000;
color:#0000;
text-shadow:0 0 0 #000;
overflow:hidden;
animation:l4 2s infinite linear;
}

.loader::before{
animation-duration:4s;
}

@keyframes l4{
100%{text-shadow:0 var(--t,-10em) 0 #000}
}


.logo-bg{
position: absolute;
top: 50%;
left: 40%;
transform: translate(-50%, -50%);
width: 40px;   /* decrease this value */
opacity: 0.15;
z-index: 0;
}

.logo-main,
.logo-sub{
position: relative;
z-index: 1;
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}