*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: sans-serif;
}
.container{
    height: 100vh;
    width: 100%;
}
.exitimg{
    background: url(/images/exit.jpg);
    background-repeat: repeat-x;
}
.logo a{
    color: #fff;
    text-decoration: none;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #004274;
    position: relative;
    height: 70px;
    padding: 10px 30px;
}
.logo{
    color: #fff;
}
nav ul{
    display: flex;
    align-items: center;
    gap: 30px;
}
nav ul li{
    list-style-type: none;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
.menu-icon{
    color: #fff;
    font-size: 28px;
}
.menu-icon{
    display: none;
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f2e7e7;
    min-width: 140px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
.scroll {
    display: flex;
    flex-wrap: wrap;
}

.layoff {
    flex: 0 0 40%;
    max-width: 40%;
    margin-right: 10%;
}

.layinfo {
    flex: 0 0 50%;
    max-width: 50%;
}

.layinfo h1 {
    margin-top: 0;
    text-align: center;
    color: #130947;
}
.layinfo p{
    font-size: 1rem;
    line-height: 2;
    text-align: start;
}
.margin{
    background: #E6EEFF;
    margin: 0px 0px 16px;
    padding: 10px;
}
@media screen and (max-width: 776px) {
    .layoff, .layinfo{
        flex-direction: column;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .layoff img{
        width: 100%;
    }
}
.latest {
    display: flex;
    align-items: center;
    padding: 20px;
    background:  rgba(19, 9, 71,0.9);
}

.link {
    margin-bottom: 20px;
}
.item {
    width: 25%;
    color: #130947;
    font-weight: bolder;
  }
  .content {
    display: flex;
    flex-wrap: wrap;
  }
  
  .content > div {
    flex:0 0 50%; 
  }
  .item1{
    color: #4F87FB;
  }

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.cards > div {
    background-color: #f0f0f0;
    border-radius: 8px;
}
  .amazon,.livspace,.wipro,.freshwork{
    padding: 0.5rem;
    margin: 1rem;
    border: 1px solid #060612;
    background: rgba(19, 9, 71,0.9);
}
@media screen and (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .cards > div {
        width: 80%;
    }
}
.faq{
    padding: 10px 12%;
    text-align: center;
    font-size: 18px;
}
.faq h2{
    font-weight: 500;
    font-size: 40px;
}
.accordion{
    margin: 60px auto;
    width:100%;
    max-width: 750px;
}
.accordion li{
    list-style: none;
    width: 100%;
    padding: 5px;
}
.accordion li label{
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255,0.9);
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}
label::after{
    content:'+';
    font-size: 34px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}
input[type="radio"]{
    display: none;
}
.accordion .content{
    background: rgba(255, 255, 255,0.9);
    text-align: left;
    padding:0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}
 .accordion input[type="radio"]:checked+label+.content{ 
    max-height:600px;
    padding: 30px 20px;
}
.accordion input[type="radio"]:checked+label::after{
    transform: rotate(135deg);
} 
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0px;
}

.footer-item {
    flex: 0 0 33.33%; 
    max-width: 33.33%; 
}

.footer-item h3 {
    font-size: 1.2em;
}

.footer-item p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.quick-links {
    list-style-type: none;
    padding: 0;
}

.quick-links li {
    display: inline;
    margin-right: 10px;
}

.quick-links li a {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 620px){
    footer{
        flex-direction: column;
    }
}
@media screen and (max-width: 713px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #004274;
        overflow: hidden;
    }
    nav ul li{
        padding: 10px;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        transition: all 0.5s;
    }
    .exitimg{
      background-repeat: repeat;
    }
    .exitimg img{
        max-width: 100%;
    }
}




