/* =========================
   HEADER SECTION
========================= */

.header-section {
  position: fixed;
  width: 100%;
  z-index: 50;
}

/* Gradient overlay behind header */
.header-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;                                                    
}                                                                                                                                                                                                                      

/* MULTI-COLOR LOGO GLOW */
.header-logo {
  position: relative;
}

.header-logo-glow {
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.45), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.4), transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(160, 100, 255, 0.35), transparent 65%);
  filter: blur(28px);
  animation: logoGlowShift 10s ease-in-out infinite alternate;
}

@keyframes logoGlowShift {
  0% {
    transform: translate(-10px, -8px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(5px, 0px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(10px, 10px) scale(1);
    opacity: 0.9;
  }
}

/* NAV MENU (DESKTOP) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* <<< CONTROL MENU SPACING HERE */
}

.header-nav-item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0%;
   transform: translateX(-50%);
  background: #00ff9d;
  transition: width 0.35s ease;
}

.header-nav-item:hover {
  color: #00ff9d;
}

.header-nav-item:hover::after {
  width: 100%;
}

.header-nav-item.active {
  color: #00ff9d;
  font-weight: 600;
}

.header-nav-item.active::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1); /* force white */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* MOBILE NAV */
#mobileMenu{
	background-color:rgba(0,0,0,0.1);
}
.header-mobile-nav {
  width: 100%;
}

.header-mobile-item {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.header-mobile-item.active {
  color: #00ff9d;
}




/*About*/

/*==================================================
INTERNSHIP HERO
==================================================*/

.internship-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#00ff9d18,transparent 30%),
    radial-gradient(circle at bottom right,#0088ff15,transparent 35%),
    #05080A;

}

/* Container */

.internship-container{

    width:100%;

    max-width:1350px;

    margin:auto;

    padding:0 40px;

    position:relative;

    z-index:10;

}

.internship-hero-content{

    max-width:720px;

}

.internship-label{

    color:#00ff9d;

    font-size:13px;

    letter-spacing:5px;

    text-transform:uppercase;

    font-weight:600;

}

.internship-title{

    margin-top:20px;

    font-size:56px;

    line-height:1.05;

    font-weight:800;

    color:#fff;

}

.internship-title span{

    color:#00ff9d;

    text-shadow:0 0 40px rgba(0,255,157,.35);

}

.internship-description{

    margin-top:30px;

    max-width:650px;

    color:#B8C1C8;

    font-size:18px;

    line-height:1.9;
	text-align:justify;

}

.internship-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.internship-btn{

    padding:16px 38px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    text-decoration:none;

}

.internship-btn-primary{

    background:#00ff9d;

    color:#05080A;

}

.internship-btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,255,157,.25);

}

.internship-btn-secondary{

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    backdrop-filter:blur(20px);

}

.internship-btn-secondary:hover{

    border-color:#00ff9d;

    color:#00ff9d;

}

/*==========================
Background Grid
==========================*/

.internship-bg-grid{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.25;

}

/*==========================

Glow

==========================*/

.internship-bg-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

}

.internship-glow-1{

    width:420px;

    height:420px;

    background:#00ff9d22;

    top:-120px;

    left:-120px;

}

.internship-glow-2{

    width:500px;

    height:500px;

    background:#0088ff22;

    right:-150px;

    bottom:-150px;

}

/*==========================

Scroll

==========================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.3);

    border-radius:50px;

}

.scroll-indicator span{

    position:absolute;

    width:6px;

    height:6px;

    background:#00ff9d;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    border-radius:50%;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

0%{

opacity:0;

transform:translate(-50%,0);

}

50%{

opacity:1;

}

100%{

opacity:0;

transform:translate(-50%,18px);

}

}

/*==========================

Responsive

==========================*/

@media(max-width:991px){

.internship-title{

font-size:54px;

}

.internship-description{

font-size:16px;
text-align:justify;

}

}

@media(max-width:768px){

.internship-container{

padding:0 25px;

}

.internship-title{

font-size:42px;

}

.internship-buttons{

flex-direction:column;

}

.internship-btn{

text-align:center;

}

}





/*==================================================
ABOUT PROGRAM
==================================================*/

.internship-about{

    background:#070B0D;

    padding:120px 0;

}

.internship-about-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.internship-section-tag{

    color:#00ff9d;

    letter-spacing:4px;

    font-size:13px;

    font-weight:600;

}

.internship-about h2{

    color:#fff;

    font-size:46px;

    margin:20px 0;

    line-height:1.2;

}

.internship-about p{

    color:#B7C2C8;

    line-height:1.9;

    margin-bottom:20px;

    text-align:justify;

}

.internship-about-features{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-feature{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.feature-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#00ff9d;

    color:#05080A;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    flex-shrink:0;

}

.about-feature h4{

    color:#fff;

    margin-bottom:8px;

    font-size:18px;

}

.about-feature p{

    margin:0;

}

.internship-image-card{

    position:relative;

    border-radius:22px;

    overflow:hidden;


    background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01)
    );

}

.internship-image-card::before{

    content:"";

    position:absolute;

    inset:-40px;

    background:radial-gradient(circle,#00ff9d25,transparent 70%);

    filter:blur(50px);

}

.internship-image-card img{

    position:relative;

    width:100%;

    display:block;

    z-index:2;

}

@media(max-width:991px){

.internship-about-grid{

grid-template-columns:1fr;

}

.internship-about-right{

order:-1;

}

}

@media(max-width:768px){

.internship-about{

padding:80px 0;

}

.internship-about h2{

font-size:34px;

}

}



/*==================================================
INTERNSHIP DOMAINS
==================================================*/

.internship-domains{

    background:#05080A;

    padding:120px 0;

}

.internship-section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.internship-section-header h2{

    color:#fff;

    font-size:46px;

    margin:20px 0;

}

.internship-section-header p{

    color:#B8C1C8;

    line-height:1.8;

}

.internship-domain-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.domain-card{

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px 30px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.domain-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,255,157,.08),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.domain-card:hover{

    transform:translateY(-10px);

    border-color:#00ff9d;

    box-shadow:0 25px 50px rgba(0,255,157,.15);

}

.domain-card:hover::before{

    opacity:1;

}

.domain-icon{

    font-size:42px;

    margin-bottom:20px;

}

.domain-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:15px;

}

.domain-card p{

    color:#B8C1C8;

    line-height:1.8;
	text-align:justify;
    font-size:15px;

}

@media(max-width:1200px){

.internship-domain-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.internship-domain-grid{

grid-template-columns:1fr;

}

.internship-section-header h2{

font-size:34px;

}

}


/*==================================================
WHY JOIN NEO
==================================================*/

.internship-why{

    padding:120px 0;

    background:#070B0D;

}

.internship-benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.benefit-card{

    position:relative;

    padding:40px;

    border-radius:22px;

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01));

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:4px;

    height:0;

    background:#00ff9d;

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:#00ff9d;

    box-shadow:0 25px 45px rgba(0,255,157,.12);

}

.benefit-card:hover::before{

    height:100%;

}

.benefit-number{

    font-size:42px;

    font-weight:800;

    color:#00ff9d;

    opacity:.25;

    margin-bottom:25px;

}

.benefit-card h3{

    color:#fff;

    font-size:24px;

    margin-bottom:18px;

}

.benefit-card p{

    color:#B8C1C8;

    line-height:1.8;

    font-size:15px;

}

@media(max-width:1100px){

.internship-benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.internship-benefits-grid{

grid-template-columns:1fr;

}

}




/*==================================================
WHO CAN APPLY
==================================================*/

.internship-eligibility{

    background:#05080A;

    padding:120px 0;

}

.eligibility-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.eligibility-card{

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01));

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px 30px;

    transition:.35s;

    text-align:center;

}

.eligibility-card:hover{

    transform:translateY(-8px);

    border-color:#00ff9d;

    box-shadow:0 20px 40px rgba(0,255,157,.12);

}

.eligibility-icon{

    font-size:55px;

    margin-bottom:20px;

}

.eligibility-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:22px;

}

.eligibility-card p{

    color:#B8C1C8;

    line-height:1.8;

    font-size:15px;

}

.internship-requirements{

    margin-top:90px;

    padding:50px;

    border-radius:24px;

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01));

    border:1px solid rgba(255,255,255,.08);

}

.internship-requirements h3{

    color:#fff;

    margin-bottom:40px;

    font-size:32px;

}

.requirements-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.requirement-item{

    display:flex;

    align-items:center;

    gap:15px;

    color:#B8C1C8;

    font-size:16px;

}

.requirement-item span{

    width:35px;

    height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#00ff9d;

    color:#05080A;

    font-weight:700;

}

@media(max-width:1100px){

.eligibility-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.eligibility-grid{

grid-template-columns:1fr;

}

.requirements-grid{

grid-template-columns:1fr;

}

.internship-requirements{

padding:35px 25px;

}

}



/*==================================================
APPLICATION PROCESS
==================================================*/

.internship-process{

    background:#070B0D;

    padding:120px 0;

}

.process-timeline{

    max-width:950px;

    margin:80px auto 0;

}

.process-step{

    display:flex;

    align-items:flex-start;

    gap:35px;

}

.step-circle{

    width:80px;

    height:80px;

    flex-shrink:0;

    border-radius:50%;

    background:#00ff9d;

    color:#05080A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    box-shadow:0 0 25px rgba(0,255,157,.35);

}

.step-content{

    flex:1;

    padding-top:12px;

}

.step-content h3{

    color:#fff;

    font-size:26px;

    margin-bottom:15px;

}

.step-content p{

    color:#B8C1C8;

    line-height:1.8;

}

.timeline-line{

    width:3px;

    height:70px;

    background:linear-gradient(

    to bottom,

    #00ff9d,

    rgba(255,255,255,.08)

    );

    margin:0 0 0 38px;

}

@media(max-width:768px){

.process-step{

gap:20px;

}

.step-circle{

width:60px;

height:60px;

font-size:20px;

}

.timeline-line{

margin-left:28px;

}

.step-content h3{

font-size:22px;

}

}


/*==================================================
BEFORE APPLY
==================================================*/

.internship-before-apply{

    padding:120px 0;

    background:#05080A;

}

.internship-before-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    padding:60px;

    border-radius:24px;

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01));

    border:1px solid rgba(255,255,255,.08);

}

.before-left h2{

    color:#fff;

    font-size:46px;

    margin:20px 0;

}

.before-left p{

    color:#B8C1C8;

    line-height:1.9;

}

.before-right{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.before-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.before-icon{

    width:60px;

    height:60px;

    background:#00ff9d;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.before-item h4{

    color:#fff;

    margin-bottom:8px;

}

.before-item p{

    color:#B8C1C8;

    line-height:1.7;

}

@media(max-width:991px){

.internship-before-card{

grid-template-columns:1fr;

padding:40px;

}

}

@media(max-width:768px){

.before-left h2{

font-size:34px;

}

}




/*==================================================

APPLICATION FORM

==================================================*/

.internship-form-section{

padding:120px 0;

background:#070B0D;

}

.internship-form-wrapper{

display:grid;

grid-template-columns:2fr .8fr;

gap:40px;

margin-top:70px;

align-items:start;

}

.internship-form-card{

background:linear-gradient(

180deg,

rgba(255,255,255,.04),

rgba(255,255,255,.01)

);

padding:50px;

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

}

.internship-side-card{

position:sticky;

top:120px;

padding:40px;

background:linear-gradient(

180deg,

rgba(255,255,255,.04),

rgba(255,255,255,.01)

);

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

}

.internship-side-card h3{

font-size:30px;

margin-bottom:30px;

color:#fff;

}

.internship-side-card ul{

list-style:none;

padding:0;

margin:0;

}

.internship-side-card li{

margin-bottom:18px;

color:#B8C1C8;

line-height:1.7;

}

.internship-note{

margin-top:40px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

}

.internship-note h4{

color:#fff;

margin-bottom:15px;

}

.internship-note p{

color:#B8C1C8;

margin-bottom:15px;

}

.internship-note a{

color:#00ff9d;

text-decoration:none;

}

@media(max-width:991px){

.internship-form-wrapper{

grid-template-columns:1fr;

}

.internship-side-card{

position:relative;

top:0;

}

}

@media(max-width:768px){

.internship-form-card{

padding:30px;

}

}


/*==========================================================
FORM ROOT
==========================================================*/

.form-section{
    margin-bottom:70px;
}

.section-title{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.section-desc{
    color:#9ca3af;
    font-size:15px;
    line-height:1.8;
    margin-bottom:35px;
}

/*==========================================================
GRID
==========================================================*/

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-field{
    display:flex;
    flex-direction:column;
}

.form-field.full-width{
    grid-column:1/-1;
}

/*==========================================================
LABELS
==========================================================*/

.form-field label{
    color:#fff;
    font-size:15px;
    margin-bottom:10px;
    font-weight:500;
}

.form-field label span{
    color:#00ff9d;
}

/*==========================================================
INPUTS
==========================================================*/

.form-field input,
.form-field select,
.form-field textarea{

    width:100%;
    background:#11161c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:#fff;

    font-size:15px;

    padding:16px 18px;

    transition:.3s;

    outline:none;

    font-family:inherit;

}

/*==========================================================
TEXTAREA
==========================================================*/

.form-field textarea{

    min-height:220px;

    resize:vertical;

    line-height:1.8;

}

/*==========================================================
FOCUS
==========================================================*/

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{

    border-color:#00ff9d;

    box-shadow:0 0 20px rgba(0,255,157,.15);

}

/*==========================================================
PLACEHOLDER
==========================================================*/

.form-field input::placeholder,
.form-field textarea::placeholder{

    color:#777;

}

/*==========================================================
SELECT
==========================================================*/

.form-field select{

    cursor:pointer;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    background-image:url("../images/down-arrow.svg");

    background-repeat:no-repeat;

    background-position:right 18px center;

    background-size:15px;

}

/*==========================================================
OPTION
==========================================================*/

.form-field select option{

    background:#11161c;

    color:#fff;

}

/*==========================================================
ERROR
==========================================================*/

.error{

    display:block;

    color:#ff5757;

    font-size:13px;

    margin-top:8px;

    min-height:18px;

}

/*==========================================================
VALID
==========================================================*/

.form-field.success input,
.form-field.success select,
.form-field.success textarea{

    border-color:#00ff9d;

}

/*==========================================================
INVALID
==========================================================*/

.form-field.error-field input,
.form-field.error-field select,
.form-field.error-field textarea{

    border-color:#ff5757;

}

/*==========================================================
COUNTER
==========================================================*/

.character-counter{

    text-align:right;

    color:#888;

    font-size:13px;

    margin-top:8px;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:992px){

.form-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.section-title{

font-size:28px;

}

.form-section{

margin-bottom:50px;

}

}


/*==========================================================
SOFTWARE SKILLS
==========================================================*/

.skills-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:16px;

    margin-top:25px;

}

.skill-item{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:16px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    background:#11161c;

    color:#fff;

    cursor:pointer;

    transition:.3s;

    user-select:none;

    text-align:center;

}

.skill-item:hover{

    border-color:#00ff9d;

    transform:translateY(-3px);

}

.skill-item input{

    display:none;

}

.skill-item input:checked + span{

    color:#00ff9d;

    font-weight:600;

}

.skill-item:has(input:checked){

    border-color:#00ff9d;

    background:rgba(0,255,157,.08);

    box-shadow:0 0 20px rgba(0,255,157,.15);

}

.other-skill-field{

    margin-top:30px;

}

/*==========================================================
UPLOAD GRID
==========================================================*/

.upload-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.upload-card h4{

    color:#fff;

    margin-bottom:15px;

    font-size:18px;

}

.upload-card h4 span{

    color:#00ff9d;

}

/*==========================================================
UPLOAD AREA
==========================================================*/

.upload-area{

    position:relative;

    border:2px dashed rgba(255,255,255,.12);

    border-radius:18px;

    min-height:240px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:#11161c;

    cursor:pointer;

    transition:.35s;

}

.upload-area:hover{

    border-color:#00ff9d;

    background:#131b21;

}

.upload-area.dragover{

    border-color:#00ff9d;

    background:rgba(0,255,157,.08);

}

.upload-content{

    padding:30px;

}

.upload-icon{

    font-size:54px;

    margin-bottom:18px;

}

.upload-content h5{

    color:#fff;

    font-size:20px;

    margin-bottom:10px;

}

.upload-content p{

    color:#aaa;

    margin-bottom:8px;

}

.upload-content small{

    color:#666;

}

.selected-file{

    margin-top:15px;

    color:#00ff9d;

    font-size:14px;

    word-break:break-word;

}

/*==========================================================
CHECKBOX
==========================================================*/

.checkbox-wrapper{

    display:flex;

    gap:15px;

    align-items:flex-start;

    cursor:pointer;

    color:#cfcfcf;

    line-height:1.8;

    font-size:15px;

}

.checkbox-wrapper input{

    display:none;

}

.checkmark{

    width:24px;

    height:24px;

    min-width:24px;

    border:2px solid rgba(255,255,255,.2);

    border-radius:6px;

    margin-top:2px;

    position:relative;

    transition:.3s;

}

.checkbox-wrapper input:checked + .checkmark{

    background:#00ff9d;

    border-color:#00ff9d;

}

.checkbox-wrapper input:checked + .checkmark::after{

    content:"✓";

    position:absolute;

    color:#111;

    left:5px;

    top:0px;

    font-size:15px;

    font-weight:700;

}

/*==========================================================
SUBMIT
==========================================================*/

.form-submit{

    text-align:center;

    margin-top:60px;

}

#submitBtn{

    padding:18px 55px;

    border:none;

    border-radius:50px;

    background:#00ff9d;

    color:#111;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

#submitBtn:hover:not(:disabled){

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,255,157,.25);

}

#submitBtn:disabled{

    background:#4a4a4a;

    color:#999;

    cursor:not-allowed;

}

/*==========================================================
SUCCESS POPUP
==========================================================*/

.success-popup{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    z-index:99999;

}

.popup-card{

    width:90%;

    max-width:650px;

    background:#11161c;

    border-radius:24px;

    padding:50px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    animation:popupScale .4s ease;

}

@keyframes popupScale{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

.success-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:auto;

    background:#00ff9d;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:25px;

}

.popup-card h2{

    color:#fff;

    margin-bottom:20px;

}

.popup-card p{

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:18px;

}

#popupClose{

    margin-top:20px;

    padding:15px 40px;

    border:none;

    border-radius:50px;

    background:#00ff9d;

    color:#111;

    font-weight:600;

    cursor:pointer;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:992px){

.skills-grid{

grid-template-columns:repeat(2,1fr);

}

.upload-grid{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.skills-grid{

grid-template-columns:1fr;

}

.popup-card{

padding:30px;

}

}




/*==========================================

LOADING OVERLAY

==========================================*/

.loading-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(8px);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

    animation:fadeOverlay .25s ease;

}

@keyframes fadeOverlay{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.loading-card{

    width:420px;

    max-width:90%;

    background:#11161c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px;

    text-align:center;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.loading-card h2{

    color:#fff;

    margin-top:25px;

    margin-bottom:15px;

    font-size:28px;

}

.loading-card p{

    color:#bcbcbc;

    line-height:1.8;

    margin-bottom:12px;

}

.loading-card small{

    color:#7d7d7d;

    font-size:13px;

}

/*==========================================

SPINNER

==========================================*/

.loading-spinner{

    width:80px;

    height:80px;

    margin:auto;

    border:5px solid rgba(255,255,255,.12);

    border-top:5px solid #00ff9d;

    border-radius:50%;

    animation:loadingSpin .9s linear infinite;

}

@keyframes loadingSpin{

    100%{

        transform:rotate(360deg);

    }

}


#available{
	color:#fff;
}



/* ================= FOOTER ================= */

.footer-section {
  background: radial-gradient(
    ellipse at top,
    rgba(0, 255, 157, 0.06),
    rgba(0, 0, 0, 0.9)
  );
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.footer-logo span img {
	width:150px;
}

 

.footer-desc {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00ff9d;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #000;
  background: #00ff9d;
  border-color: #00ff9d;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0.6rem 0.8rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: #00ff9d;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00ff9d;
}
