* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    cursor: pointer;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Logo Image */
.logo img {
    width: 300px;
    height: 90px;
    object-fit: contain;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;
    height: 90px;   /* âœ… FIXED HEIGHT */

    background: transparent;
}

.logo img {
    height: 140px;   /* âœ… control height only */
    width: auto;    /* maintain ratio */
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.left p {
    max-width: 450px;
    line-height: 1.6;
}

header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        transparent
    );
}







*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:linear-gradient(135deg,#020024,#090979,#000);
    color:white;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    padding:20px 60px;
}

nav a{
    margin:0 15px;
    color:white;
    text-decoration:none;
}

.btn{
    border:1px solid #00d4ff;
    padding:10px 18px;
    background:transparent;
    color:#00d4ff;
}

/* SECTIONS */
.section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px;
    gap:50px;
    flex-wrap:wrap;
}

.section.reverse{
    flex-direction:row-reverse;
}

.text{
    flex:1;
    min-width:300px;
}

.text h2{
    font-size:32px;
    margin-bottom:20px;
}

.text p{
    color:#ccc;
    line-height:1.6;
}

/* IMAGE */
.image{
    flex:1;
}

.image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 0 25px rgba(0,212,255,0.6);
}

/* CULTURE GRID */
.culture-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.box{
    border:1px solid #00d4ff;
    padding:12px;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.box:hover{
    background:#00d4ff;
    color:black;
}

/* JOBS */
.jobs{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:60px;
    flex-wrap:wrap;
}

.job-card{
    width:250px;
    padding:20px;
    border:1px solid #00d4ff;
    border-radius:12px;
    background:rgba(0,0,50,0.6);
}

.job-card button{
    margin-top:10px;
    padding:10px;
    background:#00d4ff;
    border:none;
    cursor:pointer;
}

/* FORM */
.form-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
}

.form-popup form{
    background:#020024;
    padding:30px;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    gap:10px;
}









.culture-section {
    padding: 100px 80px;
}

/* GRID LAYOUT */
.culture-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    align-items: center;
}

/* TEXT */
.culture-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.culture-text span {
    color: #00d4ff;
}

.culture-text p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* IMAGES */
.culture-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,212,255,0.6);
}

/* GRID POSITION FIX */
.culture-img.top {
    grid-column: 2;
    grid-row: 1;
}

.culture-img.bottom {
    grid-column: 1;
    grid-row: 2;
}

/* FEATURES RIGHT SIDE */
.culture-features {
    grid-column: 2;
    grid-row: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* EACH ITEM */
.feature {
    display: flex;
    gap: 15px;
    align-items: center;

    border: 1px solid #00d4ff;
    padding: 15px;
    border-radius: 12px;

    transition: 0.3s;
}

.feature span {
    font-size: 22px;
    color: #00d4ff;
}

.feature h4 {
    font-size: 14px;
}

/* HOVER EFFECT */
.feature:hover {
    background: #00d4ff;
    color: black;
    transform: translateY(-5px);
}

.feature:hover span {
    color: black;
}










.feature {
    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid rgba(0,212,255,0.5);
    padding: 15px;
    border-radius: 12px;

    background: rgba(0, 20, 60, 0.3);

    box-shadow: 0 0 10px rgba(0,212,255,0.2);

    transition: 0.3s;
}

/* ICON STYLE */
.feature i {
    width: 30px;
    height: 30px;

    stroke: #00d4ff;          /* ðŸ”¥ main color */
    stroke-width: 2;

    filter: drop-shadow(0 0 6px #00d4ff)
            drop-shadow(0 0 12px #00d4ff)
            drop-shadow(0 0 18px #00d4ff);

    transition: 0.3s;
}

/* TEXT */
.feature h4 {
    color: #ccefff;
}

.feature:hover h4 {
    color: white;
}

/* HOVER EFFECT */
.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,212,255,0.6);
    background: rgba(0,212,255,0.1);
}

.feature:hover i {
    filter: drop-shadow(0 0 10px #00d4ff)
            drop-shadow(0 0 20px #00d4ff)
            drop-shadow(0 0 30px #00d4ff);
}








/* SECTION */
.jobs-section {
    padding: 100px 60px;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    display: block;
    margin: 12px auto;
}

/* GRID */
.jobs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

/* CARD */
.job-card {
    width: 270px;
    padding: 30px 20px;

    border-radius: 15px;

    background: rgba(0, 20, 60, 0.3);

    border: 1px solid rgba(0,212,255,0.2);

    backdrop-filter: blur(10px);

    position: relative;
    overflow: hidden;

    transition: 0.4s;
}

/* ðŸ”¥ GRADIENT BORDER ANIMATION */
.job-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;

    background: linear-gradient(120deg, transparent, #00d4ff, transparent);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: 0.4s;

    pointer-events: none;   /* ðŸ”¥ THIS FIXES YOUR BUTTON */
}

.job-card:hover::before {
    opacity: 1;
}

/* ICON */
.job-card i {
    width: 40px;
    height: 40px;

    stroke: #00d4ff;

    margin-bottom: 15px;

    filter: drop-shadow(0 0 8px #00d4ff)
            drop-shadow(0 0 15px #00d4ff);

    transition: 0.3s;
}

/* TEXT */
.job-card h3 {
    margin-bottom: 10px;
}

.job-card p {
    font-size: 14px;
    color: #ccc;
}

/* BUTTON */
.job-card button {
    margin-top: 20px;
    padding: 10px 18px;

    border: 1px solid #00d4ff;
    border-radius: 8px;

    background: transparent;
    color: #00d4ff;

    cursor: pointer;

    transition: 0.3s;
}

/* ðŸ”¥ BUTTON GLOW ANIMATION */
.job-card button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;

    background: white;
    display: none;

    transition: 0.3s;
    z-index: 0;
}

.job-card button:hover::after {
    width: 100%;
}

.job-card button span {
    position: relative;
    z-index: 1;
}

/* HOVER EFFECT */
.job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
}

.job-card:hover i {
    filter: drop-shadow(0 0 15px #00d4ff)
            drop-shadow(0 0 25px #00d4ff);
}








/* JOB TYPE */
.job-type {
    display: block;
    margin-bottom: 10px;
    color: #00d4ff;
    font-size: 13px;
}

/* DESCRIPTION */
.job-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* BULLET POINTS */
.job-points {
    text-align: left;
    margin-bottom: 15px;
    padding-left: 18px;
}

.job-points li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #ddd;
}







/* ðŸ”¥ ONLY INTERNSHIP CARDS */
.internships {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards in a row */
    gap: 40px;
    justify-content: center;
}

/* Bigger cards */
.internships .job-card {
    max-width: 500px;   /* ðŸ”¥ increase width */
    width: 100%;
    margin: auto;
}






@media (max-width: 768px) {
    .internships {
        grid-template-columns: 1fr; /* stack on mobile */
    }
}





/* MAKE INTERNSHIP CARDS SAME HEIGHT */
.internships {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch; /* ðŸ”¥ important */
}

/* CARD FULL HEIGHT */
.internships .job-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes button to bottom */

    height: 100%;   /* ðŸ”¥ equal height */
    max-width: 500px;
    margin: auto;
}







.form-popup form {
    background: #020024;
    padding: 30px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    width: 320px;

    box-shadow: 0 0 30px rgba(0,212,255,0.4);
}

/* INPUTS */
.form-popup input,
.form-popup select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #00d4ff;
    background: transparent;
    color: white;
}

/* FILE INPUT */
.form-popup input[type="file"] {
    border: none;
}

/* CHECKBOX */
.checkbox {
    font-size: 12px;
    color: #ccc;
}

/* BUTTON */
.form-popup button[type="submit"] {
    background: #00d4ff;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* CLOSE BUTTON */
.form-popup button[type="button"] {
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}






.file-label {
    font-size: 13px;
    color: #00d4ff;
    text-align: left;
}





/* FIX PHONE INPUT FULL WIDTH */
.iti {
    width: 100% !important;
}

/* INPUT INSIDE PHONE FIELD */
.iti input {
    width: 100% !important;
    padding-left: 90px !important; /* space for flag */
}

/* GENERAL INPUTS */
.form-popup input,
.form-popup select {
    width: 100%;
}


.wa-blue {
    width: 60px;
    height: 60px;
    background: #09ed55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-blue img {
    width: 30px;
    filter: brightness(0) invert(1); /* makes icon white */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ✅ this pushes it to right */
    left: auto;    /* ✅ important (removes left alignment issue) */
    z-index: 9999;
}


/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 40px;

    text-align: center;

    background: rgba(0, 20, 60, 0.4);
    border-top: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);
}

.footer-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-content p:first-child {
    color: #00d4ff;
    font-weight: 500;
}