 
/*############################ NAVBAR ###################################*/
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: transparent;*/
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(30px);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    z-index: 999;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
}

.logo {
    display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text .logo_h {
  font-size: 18px;
  line-height: 1.2;
  font-weight:600;
  color: #002261;
}

.logo-text .logo_p {
  font-size: 12px;
  /*color: #9ca3af;*/
  color: #002261;
  letter-spacing: 0.5px;
}
#logo_img{
    width: 50px;      /* Adjust logo size */
  height: auto;
  border:1px solid white;border-radius:10px;
}
/* Desktop menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links .a_nav {
    text-decoration: none;
    color: #002261;
    /*color: white;*/
    font-size: 18px;
}

/* CONTACT BUTTON */
#contact-btn {
    background: #002261;
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

#contact-btn:hover {
    background:#e8edf0;

}

/* HAMBURGER TOGGLE */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

/* 3 bars */
.menu-icon .span-nav,
.menu-icon .span-nav::before,
.menu-icon .span-nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    /*background: #1e63ff;*/
    background: #002261;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-icon .span-nav {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon .span-nav::before {
    top: -8px;
}

.menu-icon .span-nav::after {
    top: 8px;
}

/* CROSS ANIMATION */
#menu-toggle:checked + .menu-icon .span-nav {
    transform: rotate(45deg);
}

#menu-toggle:checked + .menu-icon .span-nav::before {
    transform: rotate(90deg);
    top: 0;
}

#menu-toggle:checked + .menu-icon .span-nav::after {
    opacity: 0;
    top: 0;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    /* hide desktop menu */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f8f9fc;
        flex-direction: column;
        text-align: left;
        padding: 20px 25px;
        display: none;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* show menu on toggle */
    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    #contact-btn {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 577px) and (max-width: 991px) {
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #f8f9fc;
        flex-direction: column;
        text-align: left;
        padding: 20px 25px;
        display: none;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* show menu on toggle */
    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    #contact-btn {
        width: 100%;
        text-align: center;
    }
}

/*#################################### SLIDER #################################################*/
/* HERO SLIDER */
.hero-slider {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Hide radio buttons */
.hero-slider .radio {
  display: none;
}

/* SLIDES CONTAINER */
.slides {
  display: flex;
  width: 300%;
  height: 92%;
  transition: transform 0.8s ease-in-out;
}

/* INDIVIDUAL SLIDE */
.slide {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background images */
.s1 { background-image: url("img/img-3.png"); }
.s2 { background-image: url("img/img-2.jpg"); }
.s3 { background-image: url("img/img-1.jpg"); }


/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* TEXT CONTENT */
.content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  font-family: 'Courier New', monospace;
}

.content .slide_h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.content .slide_p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* DOTS */
/* DOTS - LEFT SIDE */
.dots {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}


.dots .slide_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}


/* SLIDE CONTROL */
#slide1:checked ~ .slides {
  transform: translateX(0);
}

#slide2:checked ~ .slides {
  transform: translateX(-33.3%);
}

#slide3:checked ~ .slides {
  transform: translateX(-66.6%);
}

/* Active dot */
#slide1:checked ~ .dots .slide_dot[for="slide1"],
#slide2:checked ~ .dots .slide_dot[for="slide2"],
#slide3:checked ~ .dots .slide_dot[for="slide3"] {
  opacity: 1;
  transform: scale(0.4);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .content .slide_h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .content .slide_h1 {
    font-size: 2rem;
  }

  .content .slide_p {
    font-size: 1rem;
  }
}

/*#################################### Apply Details ###########################################*/
    /* MAIN CONTAINER */
.container_box {
    max-width: 1100px;
    margin: auto;
    background: #f8fcff;    
    border-radius: 12px;
    display: flex;
    min-height: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* LEFT PANEL */
.left-panel {
    width: 30%;
    /*background: #d7efff;*/
    background:#e8edf0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-btn {
    background: white;
    border: none;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
    color:#002261;
}

.menu-btn:hover {
    /*background: #bfe6ff;*/
    background: #002261;
    transform: translateX(6px);
    color: white;
}


/* RIGHT PANEL */
.right-panel {
    width: 70%;
    padding: 30px;
    background: white;
}

.content-box {
    display: none;
    animation: fade 0.4s ease;
}

.content-box.active {
    display: block;
}

.content-box .doc_h2 {
    color: #002261;
    margin-bottom: 15px;
}

/* ARROW STEPS */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.step {
    /*background: linear-gradient(135deg, #5fc9ff, #3498db);*/
    background: #002261;
    color:white;
    padding: 18px 25px;
    position: relative;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    /*border-left: 20px solid #3498db;*/
    border-left: 20px solid #002261;
}

.steps .step:last-child::after {
    display: none;
}

/* FADE */
@keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
    .container_box {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 10px;
        background: #e8edf0;
        padding: 15px;
    }

    .menu-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 8px;
        border-radius: 10px;
    }

    /* Make last button centered */
    .menu-btn:last-child {
        grid-column: span 2;
    }

    .right-panel {
        width: 100%;
    }

    .steps {
        flex-direction: column;
    }
     .step{width: 100%;}
    .step::after {
        display: none;
    }
}

  /*.head_a {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    text-decoration: none;
    color: gray;
    border: 2px solid #4db8ff;
    color: #4db8ff;
    border-radius: 4px;
    transition: 0.3s;
  }

.head_a:hover {
    background: #fff;
    color: #000;
  }*/


  .pretty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pretty-list .li-list {
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #e8edf0;
  border-radius: 8px;
  font-size: 15px;
  color: #444;
  position: relative;
  transition: all 0.25s ease;
}

/* Decorative bullet */
.pretty-list .li-list::before {
  content: "✔";
  color: #4f46e5;
  font-weight: bold;
  margin-right: 10px;
}

/* Hover effect */
.pretty-list .li-list:hover {
  background: #eef2ff;
  transform: translateX(5px);
}


.address-card {
  max-width: 380px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/*.address-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #1f2937;
  border-left: 4px solid #4f46e5;
  padding-left: 10px;
}
*/
.address-card .office_time {
  font-style: normal;
  line-height: 1.6;
  color: #374151;
}
/*######################################## IEC MEMBERS ##########################################*/
.team-section {
    padding: 0 4%;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 35px;
    color: #222;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.team-card .memb-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.team-card .memb-h3 {
    margin-top: 12px;
    font-size: 16px;
}

.team-card .memb-p {
    font-size: 13px;
    color: #666;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Tablet */
@media (max-width: 1200px) {
    .team-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*######################################### FORM 1 ###########################################*/
.form_1 {
  /*background: #eef3f9;*/
  background: #f4f4f4;
  padding: 30px;
  /*margin-top:100px;*/
}
.no-grid {
  display: block;      /* or flex */
  grid-column: 1 / -1; /* span full width (optional) */
}
/* Wrapper */
.form-wrapper {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.f1_head {
  text-align: center;
  margin-bottom: 5px;
}
.f1_p {
  text-align: center;
  margin-bottom: 30px;
  color:gray;
}

/* Grid Form */
.app-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Fields */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-age{
    display: flex;
  flex-direction: row;
}

.form-age .f1_label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-age .f1_input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  width:70%;
}
.form-radio{
    font-weight: 600;
    padding: 1%;
    margin-top: 2%;
}
.form-group .f1_label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group .f1_input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* Full width rows */
.full-width {
  grid-column: span 2;
}

/* Button */
.form1_btn {
  padding: 14px;
  font-size: 16px;
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.form1_btn:hover {
  background: #005fd1;
}

.document-container {
    max-width: 1000px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.document-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.document-list {
    display: flex;
    flex-wrap: wrap;   /* key line */
    gap: 15px 30px;    /* row gap / column gap */
}

 .document-item {
    font-size: 15px;
    display: flex;
    align-items: flex-start;   /* aligns checkbox to top when text wraps */
    max-width: 100%;
}

.document-item input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

   .document-name {
    font-size: 15px;
    white-space: normal;       /* allow wrapping */
    word-break: break-word;    /* break long words */
    overflow-wrap: break-word;
    line-height: 1.4;
}

.styled-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #4f46e5; /* checkbox color */
  cursor: pointer;
}
.section-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.edit-btn {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.edit-btn:hover {
    background-color: #007bff;
    color: #fff;
}


@media (max-width: 600px) {
    
  .form_1 {
    padding: 15px;
  }

  .form-wrapper {
    padding: 25px;
  }

  .app-form {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}


/*######################################## TEMPLETE LINK ###########################################*/
 .center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:100px;
}
  .download-box {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  border: 1px solid #dcdcdc;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  max-width: 800px;
}
.templet_box{
 display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #dcdcdc;
  padding: 16px 20px;
  border-radius: 8px;
  gap:20px;
  margin-top:1%;
}

.download-info .t_head {
  margin: 0 0 4px;
  font-size: 16px;
}

.download-info .tp {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.download-btn {
  text-decoration: none;
  padding: 8px 14px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
}

.download-btn:hover {
  background-color: #1e40af;
}
.download-info .ad {
  margin: 1%;
  padding: 2px;
  font-size: 13px;
  color: #666;
}

/*################################# APPLICATION LOGIN ##################################*/
#mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

/* Popup */
#loginBox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 300px;
    z-index: 101;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.log_h2{
padding:5px;
}
.log_input{
    border:1px solid gray;
border-radius: 5px;
padding:10px;
width: 100%;

}
.log_btn{
    border:1px solid gray;
    background: white;
    color: black;
    padding: 10px 18px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
}
.log_btn:hover {
    background: gray;
}

/*################################### LOGIN ######################################*/
   /*.log-body {
        margin: 0;
        min-height: 100vh;
        background: #eaf6ff;
        display: flex;
        justify-content: center;
        align-items: center;
    }*/
    .log-form{
        display: flex;
        min-height: 90vh;
        justify-content: center;
        align-items: center;
    }
    .login-card {
        width: 90%;
        max-width: 420px;
        padding: 35px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .log-h2 {
        text-align: center;
        color: #333;
        margin-bottom: 8px;
    }

    .log-p {
        text-align: center;
        color: #777;
        font-size: 14px;
        margin-bottom: 28px;
    }

    .field {
        margin-bottom: 20px;
        position: relative;
    }

    .log-label {
        font-size: 14px;
        color: #555;
        margin-bottom: 6px;
        display: block;
    }

    .log-input {
        width: 100%;
        padding: 14px 45px 14px 15px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 15px;
    }

    .log-input:focus {
        outline: none;
        border-color: #777;
        box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
    }

    .eye-icon {
        position: absolute;
        right: 15px;
        top: 40px;
        width: 22px;
        height: 22px;
        cursor: pointer;
        fill: #666;
        transition: 0.3s;
    }

    .eye-icon:hover {
        fill: #333;
    }

    .btn_log {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 10px;
        background: #007bff;
        /*background: linear-gradient(135deg, #4db8ff, #1e90ff);*/
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn_log:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        background: #0056b3;
    }

    @media (min-width: 992px) {
        .login-card {
            max-width: 480px;
        }
    }

/*######################################## COMMITTEE MEMBERS #######################################*/

.committee-section {
    padding: 40px 20px;
    text-align: center;
}

.committee-section .com_head {
    margin-bottom: 30px;
    color: #222;
}

.committee-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.member-card .com_memb {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.member-info {
    text-align: left;
}

.member-info .com_name {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.member-info .com_role {
    margin: 5px 0;
    font-size: 14px;
    color: #002261;
}

.member-info .com_term {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {
    .committee-grid {
        grid-template-columns: 1fr;
    }

    .member-card .com_memb {
        width: 90px;
        height: 90px;
    }

    .member-info .com_name {
        font-size: 16px;
    }

    .member-info .com_term {
        font-size: 12px;
    }
}

/*################################# ORGANOGRAM ################################*/

/* Header */
.or-header {
  background: linear-gradient(135deg, #2c3e50, #4b6cb7);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

/*.or-header p {
  margin-top: 5px;
  opacity: 0.9;
}
*/
/* Organogram layout */
.organogram {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.level {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: white;
  padding: 18px 25px;
  border-radius: 10px;
  min-width: 180px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

/* Top role highlight */
.card.top {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #2c3e50;
}

/* Connector line */
.line {
  width: 3px;
  height: 30px;
  background: #4b6cb7;
  margin: 12px 0;
  border-radius: 2px;
}

/*########################## FINAL REVIEW ###################################*/
    .container-review {
        max-width: 750px;
        margin: auto;
        background: #fff;
        padding: 35px 40px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .review_h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .section {
        margin-bottom: 25px;
        padding: 20px;
        background: #f7f7f7;
        border-radius: 6px;
        border: 1px solid #e2e2e2;
    }

    .section .review_h3 {
        margin-top: 0;
        color: #34495e;
        font-size: 17px;
        margin-bottom: 15px;
        font-weight: 600;
        border-bottom: 1px solid #cfd8e3;
        padding-bottom: 6px;
    }

    #review_row {
        margin-left:1px;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .review_label {
        width: 35%;
        font-weight: 600;
        color: #555;
    }

    .value {
        width: 65%;
        color: #2c3e50;
        word-break: break-word;
    }

    .files {
        font-style: italic;
        color: #555;
        margin-bottom: 6px;
    }

    .final_submit {
        display: block;
        width: 100%;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        background-color: #007bff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 20px;
        transition: 0.3s;
    }

    .final_submit:hover {
        background-color: #0056b3;
    }

    .note {
        font-size: 0.88em;
        color: #666;
        text-align: center;
        margin-top: 12px;
    }

    @media (max-width: 600px)
    {
        .label, .value
        {
            width: 50%;
        }
        .label
        {
            margin-bottom: 4px;
        }
    }
/*########################### ALREADY UPLOADED FILE SHOW ####################*/
.uploaded-file {
        background: #f0f0f0;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .uploaded-file a {
        color: #007BFF;
        text-decoration: none;
    }

    .uploaded-file a:hover {
        text-decoration: underline;
    }


    /*#################################### ALREADY APPLIED ########################################*/
     .container-pre-appli {
            max-width: 900px;
            margin: auto;
        }

        .pre_h2 {
            margin-bottom: 15px;
            font-size:25px;
            color: #333;
        }

        /* Applied Applications Section */
        .applications {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }

        .app-table {
            width: 100%;
            border-collapse: collapse;
        }

        .app-table .stage2_th,
        .app-table .stage2_td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        .app-table .stage2_th {
            background: #f0f2f5;
        }

        .view_old_appl {
            background: #007bff;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
        }

        .view_old_appl:hover {
            background: #0056b3;
        }
@media (max-width: 600px) {
            .app-table .stage2_th, .app-table .stage2_td{
                font-size: 14px;
            }
        }

/*####################### VUEW RESULT ##############################*/
.review_student_box
{
  flex: 1.5;
  /*background: linear-gradient(180deg, #ffffff, #f8fafc);*/
  border-radius: 18px;
  padding: 22px;
  /*box-shadow: 0 15px 35px rgba(30, 58, 138, 0.18);*/
}
.review_box_h3 {
  color: #1e3a8a;
}
 .review_box_area {
  width: 100%;
  height: auto;
  padding: 10px;
  margin-top: 12px;
  border-radius: 12px;
  /*border: 1px solid #c7d2fe;*/
  background: none;
  border:none;
  resize: none;
  color: #4A4645;
}

/*########################### PASSWORD #############################################*/
   .pass_page {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 24px;
}

.pass_page .pass_page_h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.pass_card {
    background: #ffffff;
    padding: 24px;
    border-radius: 4px;
}

.pass_card .pass_card_h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1e3a8a;
}

/* Material Input */
.md-field {
    position: relative;
    margin-bottom: 28px;
    max-width: 360px;
}

.md-field .md_input {
    
    width: 100%;
    padding: 10px 4px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    background: transparent;

    color: #3c4043;          
    font-weight: 500;        
    letter-spacing: 0.2px;   
    transition: color 0.2s ease;
}

.md-field .md_input:focus {
    outline: none;
}

.md-field .md_label {
    position: absolute;
    top: 10px;
    left: 4px;
    font-size: 16px;
    color: #757575;
    pointer-events: none;
    transition: 0.2s ease;
}

.md-field .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

/* Floating label */
.md-field .md_input:focus ~ .md_label,
.md-field .md_input:valid ~ .md_label {
    top: -10px;
    font-size: 12px;
    /*color: #1a73e8;*/
}

.md-field .md_input[readonly] ~ .md_label {
    top: -10px;
    font-size: 12px;
}
.md-field .md_input:focus ~ .bar {
    width: 100%;
}

.actions {
    margin-top: 32px;
}

.pass_button {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.pass_button:hover {
    background: #1558c0;
}

