@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
.max-width{
    max-width: 1300px;
    padding: 0 60px;
    margin: auto;
}



/* navbar styling */
.navbar{
    position: fixed;
    margin-top: -1.5%;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 22px 0;
    background: #d4af37;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo .max-width{
    height: 100px;
}
.navbar .logo img{
    margin-left: -25%;
    margin-top: -15px;
    width: 400px;
}
.navbar.sticky{
    margin-top: -2%;
    height: 100px;
}

.navbar.sticky .logo img{
    width: 200px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.navbar .menu{
    margin-left: -20%;
    margin-top: -1%;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: all 0.3s ease;
}
.navbar .menu li i{
    color:#fff;
    margin-left: 25px;
}
.navbar .menu li i:hover{
    color:#d4af37;
    cursor: pointer;
}


/* Dropdown Button */
.navbar .menu .dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .navbar .menu .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .navbar .menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .navbar .menu .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .navbar .menu .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .navbar .menu .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .navbar .menu .dropdown:hover .dropbtn {background-color: #d4af37;}





.navbar .menu li a:hover{
    color: #d4af37;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #d4af37;
    right: 20px;
    bottom: 20px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

/* home section styling */
.home{
    display: flex;
    background: url("images/banner.jpg") no-repeat center;
    background-color: #111111;
    background-size: 83vh;
    background-position: 83%;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color:#d4af37;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: #d4af37;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #d4af37;
    background: none;
}
.home .home-content .points{
    margin-top: 15px;
}

/* all similar content styling code */
section{
    padding: 100px 0;
}
.about, .services, .faq, .contact{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.faq .faq-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: #d4af37;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* services section styling */
.services .title::after{
    content: "what we offer";
}
.services .serv-content .left{
    width: 90%;
}
.services .serv-content .left .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.services .serv-content .left p{
    text-align: justify;
}
.services .serv-content .right{
    width: 90%;
}
.services .serv-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.services .serv-content .right a{
    display: inline-block;
    background: #d4af37;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 15px;
    border-radius: 6px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}
.services .serv-content .right a:hover{
    color: #d4af37;
    background: none;
}
.services .serv-content .right ul{
    margin-left: 25px;
}

/* about section styling */
.about, .contact{
    color: #fff;
    background: #111;
}
.about .title::before,
.contact .title::before{
    background: #fff;
}
.about .title::after,
.contact .title::after{
    background: #111;
    content: "we are unique";
}
.about .about-content .card{
    margin-left: 10%;
    width: 80%;
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.about .about-content .card:hover{
    background: #d4af37;
}
.about .about-content .card .box{
    transition: all 0.3s ease;
}
.about .about-content .card:hover .box{
    transform: scale(1.05);
}
.about .about-content .card i{
    font-size: 45px;
    color: #d4af37;
    transition: color 0.3s ease;
}
.about .about-content .card:hover i{
    color: #fff;
}
.about .about-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* FAQ section styling */
.faq .title::after{
    content: "things to know";
}
.faq .faq-content .column{
    width: 100%;
    text-align: center;
}
.faq .faq-content .column .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.faq .faq-content .column p{
    text-align: justify;
    font-size: 17px;
}
.faq .faq-content .column a{
    display: inline-block;
    background: #d4af37;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 7px 14px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}
.faq .faq-content .column a:hover{
    color: #d4af37;
    background: none;
}
.faq .faq-content .clients{
    margin-top: 25px;
}

/* contact section styling */
.contact .title::after{
    content: "get in touch";
}
.contact .c .column{
    width: calc(30% - 30px);
    margin-top: 25px;
}
.contact .contact-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}
.contact .contact-content .middle .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: -15px;
}
.contact .contact-content .middle{
    margin-left: 5%;
}
.contact .contact-content .middle .menu li{
    font-size: 20px;
    color: #d4af37;
    margin: 10px 0;
}
.contact .contact-content .middle .menu li a{
    color: #fff;
}
.contact .contact-content .middle .menu li a:hover{
    text-decoration: underline;
    color: #d4af37;
}
.contact .contact-content .right .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #d4af37;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #eee;
}
.contact .contact-content .right{
    margin-top: -20px;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .email{
    margin-left: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}
.contact .right form .textarea textarea{
    padding-top: 10px;
    resize: none;
}
.contact .right form .button{
    height: 47px;
    width: 170px;
}
.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    background: #d4af37;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact .right form .button button:hover{
    color: #d4af37;
    background: none;
}
/* footer section styling */

.app-images {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .app-image {
            margin: 0 10px;
            max-height: 100px; /* Set the maximum height for the images */
            /*width: auto;*/
            /*height: auto;*/
        }

footer{
    background: #222;
    padding: 20px 23px;
    color: #fff;
    text-align: center;
}
footer .row i{
    font-size: 35px;
    width: 60px;
    margin-bottom: 20px;
}
footer .row i:hover{
    color: #d4af37;
    transform: scale(1.3);
}
footer span b{
    color: #d4af37;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}
footer .terms{
    margin: 20px 0;
    color: #d4af37;
}
footer .terms a{
    color: #fff;
}
footer .terms a:hover{
    color: #d4af37;
}

/* responsive media query start*/
@media (max-width: 1300px){
    .home .max-width{
        margin-left: 0px;
    }
}
@media (max-width: 991px){
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .max-width{
        padding: 0 50px;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
         padding-bottom: 80px;
        transition: all 0.3s ease;
        overflow: scroll;
    }
    .navbar .menu.active{
        left: 20%;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 800px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        margin-bottom: 20px;
    }
    .faq .faq-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}
@media (max-width: 690px){
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
}
@media (max-width: 500px){
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
}

@media (max-width: 411.2px){
    .navbar .logo a img{
        width: 250px;
        margin-left: -60px;
        margin-top: 20px;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
    }
    .navbar.sticky .max-width{
        margin-top: -20px;
    }
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-1{
        font-size: 22px;
    }
    .home .home-content .text-2{
        font-size: 35px;
    }
    .home .home-content .text-3{
        font-size: 19px;
    }
    .home .home-content .contact{
        font-size: 15px;
    }
    section .title{
        font-size: 32px;
    }
    .services .title::after{
        font-size: 16px;
    }
    .services .serv-content .left .text {
        font-size: 22px;
    }
    .services .serv-content .left p{
        font-size: 15px;
    }
    .services .serv-content .right .text{
        font-size: 22px;
    }
    .services .serv-content .right p{
        font-size: 15px;
    }

    .about .title::after, .contact .title::after{
        font-size: 16px;
    }
    .about .about-content .card i{
        font-size: 30px;
    }
    .about .about-content .card .text{
        font-size: 22px;
    }
    .about .about-content .card p{
        font-size: 15px;
    }
    .about .about-content .card h4{
        font-size: 16px;
    }

    .faq .title::after{
        font-size: 16px;
    }
    .faq .faq-content .column{
        font-size: 15px;
    }
    .faq .faq-content .clients .title2{
        font-size: 22px;
    }
    .faq .faq-content .clients ul{
        font-size: 15px;
    }
}

@media (max-width: 360px){
    .navbar .logo a img{
        width: 250px;
        margin-left: -60px;
        margin-top: 20px;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
    }
    .navbar.sticky .logo{
        margin-top: -15px;
    }
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-1{
        font-size: 22px;
    }
    .home .home-content .text-2{
        font-size: 35px;
    }
    .home .home-content .text-3{
        font-size: 19px;
    }
    .home .home-content .contact{
        font-size: 15px;
    }
    section .title{
        font-size: 32px;
    }
    .services .title::after{
        font-size: 16px;
    }
    .services .serv-content .left .text {
        font-size: 22px;
    }
    .services .serv-content .left p{
        font-size: 15px;
    }
    .services .serv-content .right .text{
        font-size: 22px;
    }
    .services .serv-content .right p{
        font-size: 15px;
    }

    .about .title::after, .contact .title::after{
        font-size: 16px;
    }
    .about .about-content .card i{
        font-size: 30px;
    }
    .about .about-content .card .text{
        font-size: 22px;
    }
    .about .about-content .card p{
        font-size: 15px;
    }
    .about .about-content .card h4{
        font-size: 16px;
    }

    .faq .title::after{
        font-size: 16px;
    }
    .faq .faq-content .column{
        font-size: 15px;
    }
    .faq .faq-content .clients .title2{
        font-size: 22px;
    }
    .faq .faq-content .clients ul{
        font-size: 15px;
    }
    footer span, .terms{
        font-size: 15px;
    }
}

@media (max-width: 375.2px){
    .navbar .logo a img{
        width: 250px;
        margin-left: -60px;
        margin-top: 20px;
    }
    .navbar.sticky{
        margin-top: -20px;
    }
    .navbar.sticky .logo{
        margin-top: -15px;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
    }
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-1{
        font-size: 22px;
    }
    .home .home-content .text-2{
        font-size: 35px;
    }
    .home .home-content .text-3{
        font-size: 19px;
    }
    .home .home-content .contact{
        font-size: 15px;
    }
    section .title{
        font-size: 32px;
    }
    .services .title::after{
        font-size: 16px;
    }
    .services .serv-content .left .text {
        font-size: 22px;
    }
    .services .serv-content .left p{
        font-size: 15px;
    }
    .services .serv-content .right .text{
        font-size: 22px;
    }
    .services .serv-content .right p{
        font-size: 15px;
    }

    .about .title::after, .contact .title::after{
        font-size: 16px;
    }
    .about .about-content .card i{
        font-size: 30px;
    }
    .about .about-content .card .text{
        font-size: 22px;
    }
    .about .about-content .card p{
        font-size: 15px;
    }
    .about .about-content .card h4{
        font-size: 16px;
    }

    .faq .title::after{
        font-size: 16px;
    }
    .faq .faq-content .column{
        font-size: 15px;
    }
    .faq .faq-content .clients .title2{
        font-size: 22px;
    }
    .faq .faq-content .clients ul{
        font-size: 15px;
    }
}

@media (max-width: 320px){
    .navbar .logo{
        width: 50px;
        margin-top: -20px;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
    }
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-1{
        font-size: 22px;
    }
    .home .home-content .text-2{
        font-size: 35px;
    }
    .home .home-content .text-3{
        font-size: 19px;
    }
    .home .home-content .contact{
        font-size: 15px;
    }
    section .title{
        font-size: 32px;
    }
    .services .title::after{
        font-size: 16px;
    }
    .services .serv-content .left .text {
        font-size: 22px;
    }
    .services .serv-content .left p{
        font-size: 15px;
    }
    .services .serv-content .right .text{
        font-size: 22px;
    }
    .services .serv-content .right p{
        font-size: 15px;
    }

    .about .title::after, .contact .title::after{
        font-size: 16px;
    }
    .about .about-content .card i{
        font-size: 30px;
    }
    .about .about-content .card .text{
        font-size: 22px;
    }
    .about .about-content .card p{
        font-size: 15px;
    }
    .about .about-content .card h4{
        font-size: 16px;
    }

    .faq .title::after{
        font-size: 16px;
    }
    .faq .faq-content .column{
        font-size: 15px;
    }
    .faq .faq-content .clients .title2{
        font-size: 22px;
    }
    .faq .faq-content .clients ul{
        font-size: 15px;
    }
    footer span, .terms{
        font-size: 13.5px;
    }
}
@media (max-width: 240px){
    .navbar .logo{
        width: 30px;
        margin-top: -20px;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 10px;
    }
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-1{
        font-size: 15px;
    }
    .home .home-content .text-2{
        font-size: 25px;
    }
    .home .home-content .text-3{
        font-size: 10px;
    }
    .home .home-content .contact{
        font-size: 8px;
    }
    section .title{
        font-size: 23px;
    }
    .services .title::after{
        font-size: 8px;
    }
    .services .serv-content .left .text {
        font-size: 13px;
    }
    .services .serv-content .left p{
        font-size: 8px;
    }
    .services .serv-content .right .text{
        font-size: 13px;
    }
    .services .serv-content .right p{
        font-size: 8px;
    }

    .about .title::after, .contact .title::after{
        font-size: 8px;
    }
    .about .about-content .card i{
        font-size: 20px;
    }
    .about .about-content .card .text{
        font-size: 13px;
    }
    .about .about-content .card p{
        font-size: 8px;
    }
    .about .about-content .card h4{
        font-size: 8px;
    }

    .faq .title::after{
        font-size: 8px;
    }
    .faq .faq-content .column{
        font-size: 8px;
    }
    .faq .faq-content .clients .title2{
        font-size: 13px;
    }
    .faq .faq-content .clients ul{
        font-size: 8px;
    }
}