/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&family=Montserrat+Alternates:wght@600;700&display=swap');

/* Global Reset + Defaults */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s linear;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.1); 
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.header .logo img {
    width: 25%;
    height: auto;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    font-size: 2rem;
    font-weight: 500;
    color: #000000 !important;
    text-decoration: none;
}

.header .navbar ul li a:hover {
    color: #3687ec;
}

.header .navbar ul li a.active {
    color: #3687ec !important;
    font-weight: 600;
}

.header .fa-bars {
    color: #000;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* Hero Section */
.home {
    min-height: 70vh;
    width: 100%;
    background: url(../images/img1.png) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

/* Stylish Hero Heading */
.home h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 5.5rem;
  letter-spacing: 0.1rem;
  background: linear-gradient(90deg, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 2px rgba(0,191,255,0.5); /* soft, subtle glow */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.home h2 {
  animation: fadeIn 1.5s ease-in forwards;
}

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



/* Subtle animated gradient glow */
@keyframes textglow {
    0% { text-shadow: 0 0 10px #00bfff, 0 0 20px #002e5f; }
    100% { text-shadow: 0 0 20px #002e5f, 0 0 40px #00bfff; }
}

/* Career Heading Section */
.career-heading {
    text-align: center;
    padding: 4rem 2rem;
}

.heading {
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #002e5f;
    position: relative;
    letter-spacing: .2rem;
    font-weight: 600;
}

.career-heading p {
    font-size: 2rem;
    color: #333;
    max-width: 800px;
    margin: 1rem auto 0 auto;
    line-height: 1.6;
}

/* Decorative Heading Borders */
.heading::before, 
.heading::after {
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #002e5f;
    border-left: .4rem solid #002e5f;
}

.heading::before {
    top: 5.8rem;
    left: -2rem;
}

.heading::after {
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

/* Buttons */
.row .btn,
.communicate .btn {
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.row .btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #002e5f;
}

.communicate .btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #00bfff;
}

/* Career Form Section */
.career {
    width: 80%;
    height: auto;
    margin: 5rem auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
}

.career-form {
    margin-top: .5rem;
    width: 100%;
    height: auto;
    flex: 50%;
    text-align: left;
}

.career-form-txt, .career-form-experience, .career-form-email, .career-form-phone {
    margin-left: 2rem;
    width: 96.5%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 1.5rem;
}

.career-form-txt::placeholder,
.career-form-experience::placeholder,
.career-form-email::placeholder,
.career-form-phone::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.radio-class {
    margin-left: 1rem;
    width: 110%;
    margin-top: -2rem;
    height: 40px;
    color: #000;
    margin-bottom: 5rem;
    padding: 15px;
}

.radio {
    margin-top: .75rem;
    font-size: 1.5rem;
    margin-right: 9.5rem;
}

.career-form-txtarea {
    margin-left: 2rem;
    width: 96.5%;
    height: 130px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.career-form-txtarea::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.career-form-btn {
    margin-left: 2rem;
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.career-form-btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #002e5f;
}

/* Footer */
.footer {
    position: relative;
    padding: 0 0 30px 0;
    background: #333;
}

.footer .footer-top {
    background: #002e5f;
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #ffffff;
    padding: 7px 0;
}

/* Back To Top */
.back-to-top {
    position: fixed;
    display: none;
    background-color: #00bfff;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top i:hover {
    color: black;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    html { font-size: 50%; }
    .home h2 { font-size: 4rem; }
    .career-heading p { font-size: 1.6rem; }
}

/* Footer Styles */
.footer {
    position: relative;
    padding: 0;
    background: #333;
    color: #fff;
}

.footer .footer-top {
    background: #002e5f;
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

.footer .footer-top h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.footer .footer-top .footer-links ul li:last-child {
    border-bottom: none;
}

.footer .footer-top .footer-links ul li i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #00bfff;
}

.footer .footer-top .footer-links ul a,
.footer .footer-top .footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer-top .footer-links ul a:hover {
    color: #00bfff;
    padding-left: 5px;
}

.footer .footer-top .footer-contact p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer .footer-top .social-links {
    margin-top: 20px;
}

.footer .footer-top .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .footer-top .social-links a:hover {
    background: #00bfff;
    transform: translateY(-3px);
}

.footer .footer-top .footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer .footer-top .footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.4rem;
    outline: none;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    background: #00bfff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #0086b3;
}

/* Copyright */
.footer .copyright {
    text-align: center;
    padding: 20px 0;
    background: #222;
    color: #fff;
    font-size: 1.3rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    background: #00bfff;
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 24px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

.back-to-top:hover {
    background: #0086b3;
    color: #fff;
    transform: translateY(-3px);
}
/* Make header navigation items bold */
.header .navbar ul li a {
    font-weight: 700 !important; /* This makes the text bold */
    color: #000000 !important;
}

/* Optional: Make active link even more prominent */
.header .navbar ul li a.active {
    font-weight: 800 !important;
    color: #3687ec !important;
}

