/* =========================
   ROOT COLORS
========================= */

:root{
  --primary:#004aad;
  --secondary:#0077ff;
  --accent:#ffc107;
  --dark:#002b5b;
  --light:#f5f7fa;
  --white:#ffffff;
  --text:#444;
}

/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--light);
  color:var(--text);
  overflow-x:hidden;
}

/* =========================
   BACKGROUND
========================= */

#hero-bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  z-index:0;
}

#particles-bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;

    background:linear-gradient(
        135deg,
        #004aad,
        #0077ff
    );

    box-shadow:0 4px 20px rgba(0,0,0,.15);
    backdrop-filter:blur(12px);
}

header h1{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    font-size:24px;
    font-weight:700;
    margin:0;
}

header h1 i{
    color:#ffc107;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:25px;
    margin:0;
    padding:0;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    padding:8px 12px;
    border-radius:8px;
}

nav ul li a:hover{
    background:rgba(255,255,255,.15);
    color:#ffc107;
}

.menu-icon{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* =========================
   MOBILE HEADER
========================= */

@media(max-width:768px){

    header{
        padding:12px 15px;
    }

    header h1{
        font-size:18px;
        max-width:80%;
    }

    .menu-icon{
        display:block;
    }

    nav ul{
        position:fixed;
        top:65px;
        right:-280px;

        width:250px;
        height:100vh;

        background:#004aad;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:30px 20px;
        gap:15px;

        transition:.4s ease;
    }

    nav ul.active{
        right:0;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        width:100%;
        padding:12px;
        border-radius:10px;
    }
}
/* =========================
   MOBILE MENU
========================= */

@media(max-width:768px){

  .menu-icon{
    display:block;
  }

  nav ul{
    position:fixed;
    top:70px;
    right:-260px;
    background:var(--primary);
    width:220px;
    height:100vh;
    flex-direction:column;
    align-items:center;
    gap:25px;
    padding-top:40px;
    transition:.4s ease;
  }

  nav ul.active{
    right:0;
  }
}

/* =========================
   MENU OVERLAY
========================= */

#menu-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:998;
}

#menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   HERO SECTION
========================= */
/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:75vh;
    padding:140px 20px 80px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    position:relative;
    z-index:2;
    background:linear-gradient(
        135deg,
        rgba(0,74,173,0.92),
        rgba(0,119,255,0.88)
    );
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    width:100%;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.hero-content h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
}

.hero-content p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:35px;
    color:#f1f5f9;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* REMOVE LINK UNDERLINES */
.hero-buttons a{
    text-decoration:none !important;
}

/* Applicant Button */
.btn-primary{
    background:#ffc107;
    color:#002b5b !important;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    display:inline-block;
    transition:.3s;
}

.btn-primary:hover{
    background:#ffd54f;
    transform:translateY(-3px);
}

/* Company Button */
.btn-secondary{
    background:#fff;
    color:#004aad !important;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    display:inline-block;
    transition:.3s;
}

.btn-secondary:hover{
    background:#f1f5f9;
    transform:translateY(-3px);
}
/* =========================
   GENERAL SECTIONS
========================= */

section{
  padding:70px 20px;
  text-align:center;
  position:relative;
  z-index:2;
}

/* =========================
   MISSION SECTION
========================= */
/* =========================
   MISSION SECTION
========================= */

.mission{
    background:#fff;
    border-radius:20px;
    max-width:950px;
    margin:120px auto 50px auto;
    padding:40px;
    position:relative;
    z-index:2;
}

.mission h2{
    color:#004aad;
    font-size:38px;
    margin-bottom:20px;
    position:relative;
}

.mission h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#ffc107;
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}

.mission p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    max-width:850px;
    margin:auto;
}

/* Mobile */
@media(max-width:768px){

    .mission{
        margin-top:90px;
        margin-left:15px;
        margin-right:15px;
        padding:25px;
    }

}
    .mission h2{
        font-size:28px;
    }

    .mission p{
        font-size:16px;
        line-height:1.8;
    }
}
#mission,
#benefits,
#testimonials,
#contact,
#home{
    scroll-margin-top:90px;
}
/* =========================
   BENEFITS
========================= */

.benefits{
  background:#eef4ff;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px;
}

.benefit{
  background:white;
  flex:1 1 300px;
  padding:60px 15px;
  border-radius:20px;
  transition:0.4s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.benefit:hover{
  transform:translateY(-10px);
}

.benefit i{
  font-size:50px;
  color:var(--secondary);
  margin-bottom:20px;
}

.benefit h3{
  color:var(--primary);
  margin-bottom:15px;
}

.benefit p{
  line-height:1.7;
}

/* =========================
   TESTIMONIALS
========================= */
/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:white;
    padding:70px 20px;
}

.testimonials h2{
    font-size:32px;
    margin-bottom:15px;
    color:var(--accent);
}

.testimonials-subtext{
    max-width:650px;
    margin:0 auto 35px;
    font-size:16px;
}

.testimonial-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.testimonial-box{
    background:rgba(255,255,255,0.12);
    border-radius:16px;
    padding:25px;
    width:100%;
    max-width:280px;
    backdrop-filter:blur(8px);
    transition:0.3s ease;
}

.testimonial-box:hover{
    transform:translateY(-5px);
}

.testimonial-box i{
    font-size:24px;
    color:var(--accent);
    margin-bottom:15px;
}

.testimonial-box p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
    font-style:italic;
}

.testimonial-box h4{
    font-size:16px;
    color:var(--accent);
    margin-bottom:3px;
}

.testimonial-box span{
    font-size:13px;
    opacity:0.85;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}
@media(max-width:768px){

    *{
        max-width:100%;
    }

    img{
        max-width:100%;
        height:auto;
    }

    table{
        display:block;
        overflow-x:auto;
    }

    body{
        overflow-x:hidden;
    }
}
/* Mobile */
@media(max-width:768px){

    .testimonials{
        padding:50px 15px;
    }

    .testimonials h2{
        font-size:26px;
    }

    .testimonial-box{
        max-width:100%;
    }
}

/* =========================
   CTA SECTION
========================= */

.cta{
  background:white;
  color:var(--dark);
  padding:70px 30px;
  border-radius:20px;
  max-width:850px;
  margin:80px auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.cta h2{
  color:var(--primary);
  margin-bottom:15px;
}

.cta p{
  margin-top:10px;
}

.cta a{
  display:inline-block;
  margin-top:20px;
  background:var(--primary);
  color:white;
  padding:14px 35px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.cta a:hover{
  background:var(--secondary);
}

/* =========================
   FOOTER
========================= */
footer{
    position:relative;
    z-index:5;

    background:#002b5b;
    color:#fff;

    text-align:center;
    padding:25px 20px;

    font-size:14px;
    font-weight:500;

    border-top:3px solid #ffc107;
}
/* =========================
   ANIMATION
========================= */

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.fade-in{
  animation:fadeIn 1s ease;
}


.alert{
    position:fixed;
    top:90px;
    right:20px;
    z-index:9999;
    padding:15px 20px;
    border-radius:10px;
    font-weight:600;
    animation:fadeOut 5s forwards;
}

.success-alert{
    background:#dcfce7;
    color:#166534;
}

.error-alert{
    background:#fee2e2;
    color:#991b1b;
}

@keyframes fadeOut{
    0%,80%{
        opacity:1;
    }
    100%{
        opacity:0;
        visibility:hidden;
    }
}