@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
html{
    scroll-behavior: smooth;
}

body {
    background-color:white;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#progress {
    position: fixed;
    bottom: 30px;
    left: 8px;
    height: 45px;
    width: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
  }
  #progress-value {
    display: block;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #001a2e;
  }

/*** Spinner ***/
#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 9999; /* To make sure it stays on top */
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
  }
  
  #spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner i{
    font-size: 4rem;
    color:#004aad;
  }


header {
    background-color:  white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.items {
    user-select: none;
    height: 65px;
    width: 500px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-shadow: 1px 1px 2px black;
    font-weight: 900;
    letter-spacing: 2px;
}

.items img {
    margin: 0 10px 0 5px;
    height: 76px;
    width: 80px;
    z-index: 1001;
}

.items .cap {
    position: absolute;
    top: -2.5px;         /* Adjust to position above "S" */
    margin-left:5.4rem;
    height: 1.5rem;
    width: 1.5rem;
    z-index: 999;       /* Place cap image behind the text */
}

.items .l1 {
    margin-left: 0.1rem;
    color: rgb(23, 23, 160);
    font-size: 42px;
    position: relative;
    top: -8px;  /* Adjust this value to control the downward shift */
}

.items .l2{
    font-weight: 0;
    position: absolute;
    font-size:75px;
    top:0.1rem;
    margin-left:6.8rem;
    color: #b48415;
}

.items .l5 {
    margin-left: 1.7rem;
    color: rgb(23, 23, 160);
    font-size: 42px;
    position: relative;
    top: -8px;  /* Adjust this value to control the downward shift */
}



.items .symbol {
    left:1.8rem;
    font-size: 35px;
    color: rgb(23, 23, 160);
    font-weight: 900;
    position: relative;
    top:-7px;  /* Adjust this value as needed */
}


.items .np {
    position: absolute;
    letter-spacing: 3.5px;
    top:3.1rem;
    margin-left:10rem;
    z-index: 1000;
    color: #b48415;
        font-size: 25px;
}

.items .wifi{
    color:black;
    top:-1px;
    margin-left:-7px;
    font-size:0.7rem;
    position: absolute;
    z-index: 999; 
}
nav ul {
    display: flex;
    list-style: none;
    margin-top: 2px;
    margin-right: 20px;
  }

.menu-toggle {
    display: none;
}
nav ul li {
    
    margin: auto;
}




nav ul li a {
    color: #004aad;
    padding: 10px;
    font-size: 19px;
    font-weight: 1000;
    text-decoration: none;
}

nav ul li a:hover {
    background-color:  #004aad;
    color:   white;
    text-decoration: none;
}


.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 2rem;
}

/* Left Side: Content */
.content {
    flex: 1;
    padding: 20px;
}

.header1 h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 36px;
    color: #2d3e50;
}



.header1 p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 20px;
    color: #555;
}

.career-intro,.application{
    margin-top:2rem;
}
.career-intro h2, .application h2,.positions h2 {
    text-align: center;
    font-size: 26px;
    color: #2d3e50;
    margin-bottom: 15px;
}
.positions h2,.career-intro h2{
    margin-top: 2rem;
}

.career-intro p, .application p, .positions ul {
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}


.positions {
    text-align: center; /* Center the section content */
}

.positions h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.positions ul {
    
    display: flex; /* Arrange the list items in a single row */
    align-items: center; /* Vertically center the list items */
    gap: 20px; /* Add spacing between the list items */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    list-style: none; /* Remove bullet points */
}

.positions ul li {
    width:13rem;
    color:white;
    text-align: center; /* Keep the text within each list item left-aligned */
    padding: 10px 20px; /* Optional: Add padding around list items */
    background-color: rgb(132, 82, 13); /* Optional: Add a background color */
    border-radius: 8px; /* Optional: Round corners */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
}

/* Right Side: Image and Carousel */
.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
  .application{
    text-align: center;
  }
  .application .email-link {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}

/*end*/

/*end*/
@keyframes phone-ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
  }
#whatsapp-link i {
    position: fixed;
    animation: phone-ring 2s infinite;
    right: 15px;
    bottom: 20px;
    height:47px;
    width:48px;
    text-align:center;
    border-radius:50%;
    background: #25D366;
    color: white;
    font-size: 48px;
    z-index: 999;
    text-decoration: none;
  }
    
  #whatsapp-link i:hover {
    background-color: #20b455;
  }
    
footer{
    
    bottom: 0;
    width: 100%;
    height: 50px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
footer p{
    color: #004aad;
   font-size: larger;
   font-weight: bolder;

}


/* Responsive Layouts */
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center-align text for all elements inside the container */
    }
    .header1 p{
        justify-content: center;
    }

    .positions ul {
        justify-content: center;
    }
    #whatsapp-link i {
        height:42px;
        width:40px;
        font-size: 43px;
    }

   
}

@media (max-width: 900px) {
    nav {
        color:   #004aad;
        width: 300px;
        height: 100%;
        background-color: #002f66;
        position: fixed;
        top: 56px;
        right: -430px; /* Hide the menu off the screen */
        transition: right 0.4s ease;
        z-index: 1100; /* Ensure it floats above other elements */
        margin-top: 20px;
    }
    
    nav ul {
        width:100%;
        display: flex;
        flex-direction: column;
    }
    
    nav ul li {
       padding:40px 20px 5px 5px;
       margin: 0;

    }
   
    
    nav ul li a {

        width:100%;
        margin:50px 10px 50px 10px;
        padding: 0;
        color:white;
        font-size: 25px;
    }
    
    
    
    nav ul li a:hover{
        margin-left:-2px;
        padding:20px 270px 20px 10px;
        color:   #004aad;
        background-color:  white;
    }
    

    
    /* Hamburger icon */
    .menu-toggle {
        display: flex;
        font-weight: 800;
        color: #002f66;
        font-size: 35px;
        cursor: pointer;
        position: fixed;
        top: 7px;
        right: 8px;
        z-index: 1001; 
    }
    
    /* Class to show the nav */
    nav.active {
        right: 0; 
    }

    .header1 h1 {
        font-size: 30px;
    }
    .header1 p, .career-intro p, .application p {
        width:100%;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header1 h1 {
        font-size: 28px;
    }
    
    .career-intro p{
        max-width: 100%;
    }
    .positions ul li{
        width:11rem;
        height:4rem;
    }
    /*end*/

    #whatsapp-link i {
        height:39px;
        width:38px;
        font-size: 40px;
    }
    
    footer{
        height: 50px;
        padding: 1px 0;

    }
    footer p{
        color: #004aad;
        font-size: 20px;
        font-weight: bolder;

    }

}

@media (max-width: 640px) {
        
nav {
    width: 250px;
}


.menu-toggle {
    top: 13px;
    font-size: 30px;
}  

#progress {
    height: 40px;
    width: 40px;
  }
  #progress-value {
    font-size:25px
  }

    .positions ul{
        gap:10px;
    }
    .positions ul li{
        width:7rem;
        height:4rem;
        padding:10px 10px;
    }

   
    footer{
        height: 35px;
    
    }
    footer p{
        font-size: 18px;
    
    }    
    
}

@media (max-width: 475px) {
    header {
        height:54px;
    }

    .items img {
        margin: 0 10px 0 5px;
        height: 50px;
        width: 55px;
    }
    
    .items .cap {
        top: -2.5px;         /* Adjust to position above "S" */
        margin-left:3.8rem;
        height: 1.3rem;
        width: 1.3rem;
    }
    
    .items .l1 {
        margin-left: 0.1rem;
        font-size: 32px;
        top: -5px;  /* Adjust this value to control the downward shift */
    }
    
    .items .l2{
        font-weight: 0;
        position: absolute;
        font-size:56px;
        top:-0.1rem;
        margin-left:5.1rem;
    }
    
    .items .l5 {
        margin-left: 1.3rem;
        font-size: 32px;
        top: -5px;  /* Adjust this value to control the downward shift */
    }
    
    
    
    .items .symbol {
        left:1.3rem;
        font-size: 26px;
        top:-5px;  /* Adjust this value as needed */
    }
    
    
    .items .np {
        letter-spacing: 3.5px;
        top:2.16rem;
        margin-left:7.6rem;
        font-size: 18px;
    }
    
    .items .wifi{
        top:0;
        margin-left:-7px;
        font-size:0.3rem;
        
    }
    
    
nav {
    top:34px;
    width: 180px;
}
nav ul li {
    padding:20px 10px 5px 5px;
    margin: 0;

}

    
nav ul li a {

    width:100%;
    margin:50px 10px 50px 10px;
    padding: 0;
    color:white;
    font-size: 20px;
}



nav ul li a:hover{
    margin-left:-2px;
    padding:12px 150px 12px 10px;
    color:   #004aad;
    background-color:  white;
}
.menu-toggle{
    top:12px;
    font-size: 25px;
}

.header1 h1 {
    font-size: 24px;
}
.header1 p, .career-intro p, .application p {
    width:100%;
    font-size: 16px;
}

.career-intro p{
    margin-left: 0;
}
.positions ul li{
    font-size: 1rem;
    width:6rem;
    height:4rem;
    padding:10px 10px;
}
.email-link{
    font-size: 1rem;
}

footer{
    height: 35px;
    padding: 1px 0;

}
footer p{
    color: #004aad;
    font-size: 15px;
    font-weight: bolder;

}
#whatsapp-link i {
    height:36px;
    width:37px;
    font-size: 37px;
  }

}

@media (max-width: 368px) {
    header {
        height:51px;
    }

    .items img {
        margin: 1px 10px 0 5px;
        height: 50px;
        width: 55px;
    }
    
    .items .cap {
        top: -2.5px;         /* Adjust to position above "S" */
        margin-left:3.8rem;
        height: 1.18rem;
        width: 1.18rem;
    }
    
    .items .l1 {
        margin-left: 0.1rem;
        font-size: 30px;
        top: -6px;  /* Adjust this value to control the downward shift */
    }
    
    .items .l2{
        font-weight: 0;
        position: absolute;
        font-size:53px;
        top:-0.1rem;
        margin-left:5.3rem;
    }
    
    .items .l5 {
        margin-left: 1.3rem;
        font-size: 30px;
        top: -6px;  /* Adjust this value to control the downward shift */
    }
    
    
    
    .items .symbol {
        left:1.4rem;
        font-size: 23px;
        top:-6px;  /* Adjust this value as needed */
    }
    
    
    .items .np {
        letter-spacing: 3.5px;
        top:2.13rem;
        margin-left:7.7rem;
        font-size: 15px;
    }
    
    .items .wifi{
        top:0;
        margin-left:-7px;
        font-size:0.4rem;
        
    }
    
   
   nav {
    top:31px;
    width: 150px;
    }
    nav ul li a {
        font-size:18px;
    }

    .menu-toggle{
        right:15px;
        top:10px;
        font-size: 25px;
        font-weight:1000;
    }

    #progress {
        height: 30px;
        width: 30px;
      }
      #progress-value {
        font-size:20px
      }

    .container {
        padding: 10px;
    }
    .header1 h1 {
        font-size: 20px;
    }
    
    .positions ul li{
        font-size: 0.8rem;
        width:5rem;
        height:4rem;
        padding:5px 5px;
    }
    footer{
        height: 50px;
    
    }
    footer p{
        color: #004aad;
        font-size: 10px;
        font-weight: bolder;
    }
    #whatsapp-link i {
        height:34px;
        width:35px;
        font-size: 35px;
      }
    
}
