*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px 20px;
  position: relative;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.logo {
  width: 30px;
  margin-right: 5px;
}
.brand-name {
  font-size: 1.5rem;
  color: #006eb6;
}
.brand-name-2{
    color: black;
}
.navbar-right {
  list-style: none;
  display: flex;
  gap: 10px;
}
.navbar-right li a {
  color: black;
  text-decoration: none;
  font-size: 14PX;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-right li a:hover {
  color: #006eb6;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  z-index: 1001;
}
.navbar-right li a:hover {
  background-color: #006eb6;
  color: #fff;
}
.navbar-right li a.active {
  background-color: #006eb6;
  color: #fff;
}
.main{
    position: relative;
}
.main_mobile{
    position: relative;
    display: none;
    z-index: 100;
}
.main_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.main_text>h1{
    font-size: 50px;
    color: #fff;
}
.main_text>button{
    border: 2px solid white;
    background: none;
    width: 25%;
    margin-top: 20px;
    padding: 10px 0;
}
.main_text>button>a{
    text-decoration: none;
    font-size: 20px;
    color: white;
}
.main_text>button:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.hero{
    background-image: url(./images/lift\ side.jpg);
    position: relative;
    margin-top: -5px;
    background-repeat: no-repeat;
    background-position: center left;
    background-attachment: fixed;
    background-size: 50% auto;
    text-align: right;
}
.hero_two{
    background-image: url(./images/lift\ side\ 2.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
    background-size: 50% auto;
    text-align: left;
}
.hero_inner{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    text-align: left;
}
.hero_two_inner{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    text-align: left;
}
.hero_inner>h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 30px;
    margin: 20px 0;
}
.hero_card{
    width: 90%;
    margin: auto;
    border: 1px solid #33333365;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.hero_card:hover{
    transform: scale(1.02);
    transition: all ease-in-out .3s;
}
.hero_card_img>img{
    width: 100%;
}
.hero_card_img{
    width: 40%;
}
.hero_card_text{
    width: 60%;
    padding-left: 10px;
}
.hero_card_text>h4{
    font-size: 23px;
    margin-top: 3px;
}
.hero_card_text>p{
    font-size: 14px;
    margin-top: 10px;
}
.sec_pak{
    width: 100%;
    position: relative;
    height: 100vh;
    background-image: url(./images/pakistan.png);
    background-repeat: no-repeat;
    background-position: center;
}
.sec_pak_inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 0 15%;
}
.sec_pak_inner>h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 40px;
    color: #fff;
}
.sec_pak_inner>button{
    border: 2px solid white;
    background: none;
    width: 30%;
    margin-top: 20px;
    padding: 10px 0;
}
.sec_pak_inner>button>a{
    text-decoration: none;
    font-size: 20px;
    color: white;
}
.sec_pak_inner>button:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.faq_heading{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 30px;
    margin: 20px 0;
}
 .faq-container {
    width: 90%;
    margin: 30px auto;
}
.faq-item {
    border-bottom: 1px solid #ccc;
}
.faq-question {
    background-color: #feeee8;
    padding: 20px;
    margin: 20px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar_a{
    
}
    .faq-question:hover {
      background-color: #f6d0c2;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 10px;
      background-color: #fff;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }
    .faq-answer.active {
      max-height: 250px; 
      padding: 10px;
    }
    .faq-icon {
      font-size: 18px;
      transition: transform 0.3s ease;
    }
    .faq-question.active .faq-icon {
      transform: rotate(180deg);
    }
    .faq_btn{
        width: 100%;
        margin: 10px 0 30px;
        background: none;
        border: none;
    }
    .faq_btn>a{
        border: 1px solid #333;
        padding: 10px;
        text-decoration: none;
        font-size: 16px;
        color: #333;
    }
    .faq_btn>a:hover{
        background-color: #333;
        color: #fff;
        transform: scale(1.05);
        transition: all ease-in-out .3s;
    }
    footer{
        width: 100%;
        text-align: center;
        background-image: url(./images/footer.png);
    }
    .footer>p{
        font-size: 16px;
        padding: 20px 0;
        color: whitesmoke;
        opacity: 0.7;
        border-top: 1px solid white;
    }
    .whatsapp{
        position: fixed;
        bottom: 5px;
        right: 5px;
        z-index: 500;
        transition: all ease-in-out .4s;
    }
    .whatsapp:hover{
        transform: scale(1.1);
    }
    .whatsapp>svg{
        width: 50px;
        height: 60px;
    }
    .about_us_main{
        width: 100%;
        padding: 50px 15%;
        background-color: #feeee8;
    }
    .about_us_main>p{
        margin: 20px 0;
    }
    .projects_main{
        width: 90%;
        margin: 50px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .elevators_main{
        width: 75%;
        margin: 50px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .project_col{
        width: 30%;
        overflow: hidden;
        margin: 20px 0;
        background-color: #f1f1f1;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    .elevator_col{
        width: 31%;
        margin: 20px 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    .elevator_col>img{
        width: 100%;
    }
    .project_col:hover img {
        transform: scale(1.03);
    }
    .project_col>img{
        object-fit: cover;
        transition: transform 0.5s ease;
        transform-origin: center center;
    }
    .project_col>p{
        font-size: 16px;
        text-align: center;
    }
    .project_headings{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-align: center;
        font-size: 50px;
        color: #333;
    }
    .contact_headings{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-align: center;
        font-size: 40px;
        color: #333;
        margin: 20px 0;
    }
    .contact_main{
        width: 100%;
        margin: 50px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .contact_col{
        width: 30%;
        padding: 30px 20px;
        background-color: #f1f1f1;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: left;
    }
    .contact_col>img{
        width: 40px;
    }
    .contact_col>span{
        font-weight: 700;
        font-size: 17px;
    }
    .contact_col>span>p{
        font-weight: 300;
        color: #333;
        font-size: 14px;
        margin-top: 3px;
    }
/* responsive */
@media (max-width:1200px) {
    .hero_card_text>h4{
        font-size: 20px;
        margin-top: 1px;
    }
    .hero_card_text>p{
        font-size: 12px;
        margin-top: 8px;
    }
}
@media (max-width:992px) {
    .contact_col>span>p {
        font-size: 11px;
        margin-top: 3px;
    }
    .projects_main {
        margin: 30px auto;
    }
    .project_col>p {
        font-size: 14px;
    }
     .footer>p{
        font-size: 13px;
    }
    .hero_card_text>h4 {
        font-size: 16px;
        margin-top: 0px;
    }
    .hero_card_text>p {
        font-size: 10px;
        margin-top: 4px;
    }
    .sec_pak_inner>button {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .contact_col{
        width: 35%;
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    .contact_headings{
        font-size: 30px;
    }
    .elevators_main {
        width: 85%;
        margin: 30px auto;
    }
    .project_headings {
        font-size: 35px;
    }
    .projects_main {
        justify-content: space-evenly;
    }
    .project_col {
        width: 43%;
    }
    .faq_btn>a {
        border: 1px solid #fff;
        background-color: #feeee8;
        padding: 10px 20px;
        font-size: 18px;
        color: #333;
    }
    .whatsapp>svg{
        width: 70px;
        height: 70px;
    }
    .faq_heading {
        color: #fff;
        font-size: 50px;
    }
    .hero_two_inner {
        width: 80%;
    }
    .hero_two {
        background-position: center;
        background-size: 100% 100%;
        text-align: center;
    }
     .hero{
        background-image: none;
        margin-top: 0px;
        text-align: center;
    }
    .hero_inner{
        width: 90%;
    }
    .hero_card_text>h4 {
        font-size: 20px;
        margin-top: 2px;
    }
    .hero_card_text>p {
        font-size: 12px;
        margin-top: 7px;
    }
    .sec_pak{
        height: 60vh;
    }
    .sec_pak_inner>h2 {
        font-size: 22px;
    }
    .sec_pak_inner>button{
        width: 200px;
    }
    .sec_pak_inner>button>a {
        font-size: 16px;
    }
    .navbar-right {
        position: absolute;
        z-index: 200;
        top: 80px;
        right: 0;
        background-color: #f1f1f1;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .navbar-right.active {
        max-height: 400px;
    }
    .navbar-right li {
        text-align: center;
        padding: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .navbar-right>li{
        border-bottom: 1px solid #3333338a;
    }
    .main_mobile{
        display: block;
    }
    .main{
        display: none;
    }
    .main_text>h1{
        font-size: 37px;
    }
    .main_text>button>a{
        font-size: 17px;
    }
    .main_text>button {
        width: 35%;
    }
}
@media (max-width:586px) {
     .contact_col{
        width: 60%;
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    .project_col>p {
        font-size: 12px;
    }
    .projects_main {
        margin: 20px auto;
        width: 100%;
    }
    .hero_card_text>h4 {
        font-size: 15px;
    }
    .hero_card_text>p {
        font-size: 11px;
        margin-top: 3px;
    }
    .hero_inner{
        width: 100%;
    }
    .footer>p{
        font-size: 10px;
    }
}
@media (max-width: 500px){
    .project_col {
        width: 45%;
    }
    .whatsapp>svg{
        width: 55px;
        height: 55px;
    }
     .contact_col{
        justify-content: left;
        width: 70%;
    }
     .contact_headings{
        font-size: 25px;
    }
    .elevator_col {
        width: 47%;
    }
    .project_col>p {
        font-size: 10px;
    }
    .about_us_main {
        padding: 40px 10%;
    }
    .about_us_main>p{
        font-size: 14px;
    }
    .hero_two_inner {
        width: 95%;
    }
    .faq_heading {
        font-size: 37px;
    }
    .faq-container{
        font-size: 14px;
    }
    .sec_pak_inner>h2 {
        font-size: 17px;
    }
    .sec_pak_inner>button {
        width: 150px;
        padding: 5px 0;
        margin-top: 15px;
    }
    .sec_pak_inner>button>a {
        font-size: 13px;
    }
    .main_text>h1 {
        font-size: 28px;
    }
    .main_text>button {
        width: 43%;
        margin-top: 12px;
        padding: 7px 0;
    }
    .main_text>button>a {
        font-size: 14px;
    }
    .logo {
        width: 23px;
    }
    .brand-name {
        font-size: 1.2rem;
    }
     .navbar-right {
        top: 68px;
    }
}
@media (max-width:400px) {
    .project_col>p {
        font-size: 9px;
    }
    .hero_card_text>h4 {
        font-size: 13px;
    }
    .hero_card_text>p {
        font-size: 10px;
    }
}





