@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap');

html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
    touch-action: pan-x pan-y;
}

header {
    position: sticky;
    background: #fff;
    padding: 8px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
}

header .logopic{
    height: 60px;
    width: 60px;
    margin-right: -16rem;
}

header .logo{
    font-weight: bolder;
    font-size: 30px;
    color: black;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 15px;
    font-weight: 500;
    padding: 20px;
    color: black;
    display: block;
    transition: all .50s ease;
}

header .navbar ul li .menubar-booknow-btn{
    display: inline-block;
    padding: 3px 8%;
    font-size: 15px;
    font-weight: 500;
    background-color: #ffffff;
    border: 2px solid #5C59C2;
    color: #5C59C2;
    border-radius: 8px;
    margin-top: .9rem;
    margin-left: 1rem;
}

header .navbar ul li .menubar-booknow-btn:hover{
    text-decoration: none;
    color: #ffffff;
    background-color: #5C59C2;
}


header .navbar ul li a:hover,
header .navbar ul li a.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
}

header .navbar ul li:focus-within>ul,
header .navbar ul li:hover>ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: black;
    cursor: pointer;
    display: none;
}

.connect {
    display: flex;
    align-items: center;
}

.connect a {
    margin-right: 6px;
    margin-left: 6px;
    color: #000;
    font-size: 1.4rem;
    transition: all .50s ease;
}

.contact a i:hover {
    transform: translateY(-3px);
    transition: 0.2s all ease-out;
}

#menu-bar {
    margin-left: 10px;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10001;
    display: none;
}


.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: #000;
}

@media(max-width: 700px) {

    header {
        padding: 20px;
    }

    header label {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
        border-bottom: .5px solid rgba(0, 0, 0, 0.1);
    }

    #menu-bar:checked~.navbar {
        display: initial;
    }

    .hamburger {
        display: block;
    }

    .contact {
        display: none;
    }

    header .navbar ul li .menubar-booknow-btn{
        margin-bottom: 1rem;
    }
}


/* Home Section CSS */

.home {
    padding: 80px 7%;
    display: flex;
    flex-direction: row;
}

.home div {
    flex-direction: column;
}


.home h1 {
    display: block;
    font-size: 3.2rem;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    line-height: 4rem;
    color: #1B1B1B;
}

.home h1 p {
    display: block;
    font-size: 3.2rem;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    color: #5C59C2;
}


.button {
    margin-top: 2rem;
}

.home div .button .get-website-btn {
    display: inline-block;
    padding: 2px 1.5%;
    font-size: 1.3rem;
    font-weight: 500;
    background-color: #5C59C2;
    border: 2px solid #5C59C2;
    color: #fff;
    border-radius: 8px;
    margin-right: 15px;
}

.home div .button .visit-portfolio-btn {
    display: inline-block;
    padding: 2px 1.5%;
    font-size: 1.3rem;
    font-weight: 500;
    background-color: #ffffff;
    border: 2px solid #000;
    color: #000000;
    border-radius: 8px;
}

.home div .button .get-website-btn:hover {
    transform: translateY(-5px);
    transition: 0.4s all ease;
}

.home div .button .visit-portfolio-btn:hover {
    transform: translateY(-5px);
    transition: 0.4s all ease;
}

.bottomline {
    margin-top: 1rem;
    font-size: 22px;
    margin-bottom: 3rem;
}

.rightsidecontent {
    position: absolute;
    display: flex;
    right: 38rem;
    top: 3rem;
}


.rightside {
    position: absolute;
    left: 4rem;
}

.rightside .shapes .circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: #9AD3CC;
}

.rightside .shapes .half-circle {
    width: 50px;
    height: 100px;
    border-radius: 0 100px 100px 0;
    background-color: #9AD3CC;
    position: relative;
    top: 3rem;
}

.rightside .shapes .half-circletwo {
    width: 120px;
    height: 60px;
    border-radius: 100px 100px 0 0;
    background-color: #5C59C2;
    position: relative;
    left: 17rem;
    bottom: 3rem;
}

.rightside .image {
    position: absolute;
    height: 30rem;
    width: auto;
    top: 2rem;
    right: -8rem;
}


/* Pick Card section css */
.pick-card {
    padding: 30px 7%;
    background-color: #F6F6F6;
    background-image: url(Elements/background.png);
    background-size: cover;
}

.pick-card .items {
    display: flex;
    flex-direction: row;
}

.pick-card .items .cards {
    display: flex;
    flex-direction: row;
    padding: 30px 0%;
}


.pick-card .items .cards .card1 {
    margin-right: 50px;
    padding: 20px 4%;
    height: 20rem;
    width: 18rem;
    border-radius: 10px;
    background-color: #C2AB59;
    cursor: pointer;
}

.pick-card .items .cards .card1 h1 {
    font-size: 1.8rem;
    color: white;
    line-height: 2.5rem;
}

.pick-card .items .cards .card1 .img {
    height: 100px;
    width: auto;
}

.pick-card .items .cards .card1 ul {
    font-size: .9rem;
    color: white;
}

.pick-card .items .cards .card1:hover {
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-10px, 0);
    }

    40% {
        transform: translate(10px, 0);
    }

    60% {
        transform: translate(-10px, 0);
    }

    80% {
        transform: translate(10px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}


.pick-card .items .cards .card2 {
    background-color: #1B1B1B;
    margin-right: 50px;
    padding: 20px 4%;
    height: 20rem;
    width: 18rem;
    border-radius: 10px;
    background-color: #5C59C2;
    cursor: pointer;
}

.pick-card .items .cards .card2 h1 {
    font-size: 1.8rem;
    color: white;
    line-height: 2.5rem;
}

.pick-card .items .cards .card2 .img {
    height: 100px;
    width: auto;
}

.pick-card .items .cards .card2 ul {
    font-size: .9rem;
    color: white;
}

.pick-card .items .cards .card2:hover {
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-10px, 0);
    }

    40% {
        transform: translate(10px, 0);
    }

    60% {
        transform: translate(-10px, 0);
    }

    80% {
        transform: translate(10px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

.pick-card .items .text {
    right: 6rem;
    margin-top: 2rem;
}

.pick-card .items .text .heading {
    text-align: right;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 87%;
    color: #1B1B1B;
    font-size: 3rem;
}

.pick-card .items .text .heading span {
    text-align: right;
    font-weight: 600;
    line-height: 87%;
    color: #5C59C2;
    font-size: 3rem;
}

.pick-card .items .text .subheading {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    text-align: right;
    color: #858282;
    margin-top: 1rem;
}

.pick-card .items .text .check-pricing {
    display: inline-block;
    padding: 2px 1.5%;
    font-size: 1.3rem;
    font-weight: 500;
    background-color: #5C59C2;
    border: 2px solid #5C59C2;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 10rem;
    margin-left: 20rem;
    margin-top: 1rem;
}

.pick-card .items .text .check-pricing:hover {
    transform: translateY(-5px);
    transition: 0.4s all ease;
}



/* Service section css */

.services {
    padding: 30px 4%;
    margin-bottom: 5rem;
}

.services .text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .text h1 {
    font-size: 3rem;
}

.services .text h2 {
    font-size: 1.1rem;
    color: #858282;
    padding: 0px 6%;
    text-align: center;
    margin-bottom: 3rem;
}


.services .service-cards .for-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.services .service-cards .shadow {
    background-color: #5C59C2;
    box-shadow: #5C59C2 0px 15px;
    border-radius: 15px;
    height: fit-content;
    margin-right: 15px;
    margin-left: 15px;
    width: auto;
    justify-content: space-between;
}

.services .service-cards .shadow:hover {
    transform: translateY(8px);
    transition: 0.35s all ease;
}


.services .service-cards .card {
    background-color: #ffffff;
    padding: 10px 6%;
    border-radius: 15px;
    height: 17rem;
    width: fit-content;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    max-width: 22rem;
}

.services .service-cards .card:hover {
    transform: translateY(-18px);
    transition: 0.3s all ease;
}

.services .service-cards .card .img {
    margin-top: .3rem;
}

.services .service-cards .card h1 {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin-bottom: .7rem;
    margin-top: .3rem;
}

.services .service-cards .card h2 {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio section CSS */

.portfolio {
    padding: 120px 8%;
    background-color: #F6F6F6;
    background-image: url(Elements/portfolio-background.png);
    background-size: cover;
}

.portfolio .text {
    display: flex;
    flex-direction: column;
    max-width: 30rem;
}

.portfolio .text h1 {
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: 1rem;
}

.portfolio .text h2 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    color: #858282;
    margin-bottom: 1rem;
}

.portfolio .text .visit-portfolio-btn2 {
    display: inline-block;
    padding: 2px 1.5%;
    font-size: 1.3rem;
    font-weight: 500;
    background-color: #5C59C2;
    border: 2px solid #5C59C2;
    color: #fff;
    border-radius: 8px;
    margin-right: 320px;
}

.portfolio .text .visit-portfolio-btn2:hover {
    transform: translateY(-10px);
    transition: 0.5s all ease;
}

/* Happy Customers CSS */

.container {
    padding-top: 60px;
    margin-bottom: 1rem;
}

.container h1 {
    text-align: center;
    padding: 20px;
    font-size: 3rem;
}

.container h2{
    font-size: 1.1rem;
    color: #858282;
    padding: 0px 14%;
    text-align: center;
    margin-bottom: 2rem;
}

.container .slick-slide {
    margin: 0 20px;
}

.container .slick-slide img {
    width: 100%;
}

.container .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}

.container .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.container .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.container .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.container .slick-slide img {
    display: block;
}

.container .slick-initialized .slick-slide {
    display: block;
}

/* FAQ Section CSS */

/* Style the buttons that are used to open and close the accordion panel */

.faqsection {
    padding: 40px 10%;
    margin-bottom: 4rem;
}

.faqsection h1{
    text-align: center;
    padding: 20px;
    font-size: 3rem;
}
.faqsection .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 2%;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .faqsection .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .faqsection .panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    font-size: 1rem;
    padding: 10px 4%;
  }

  .faqsection .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .faqsection .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

/* Footer Section CSS */

.footer {
    position: relative;
    width: 100%;
    background: #000;
    min-height: 100px;
    padding: 40px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  }

.gotopbtn{
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: #5C59C2;
    border-radius: 50px;
    color: #F6F6F6;
    bottom: 40px;
    right: 20px;

    text-align: center;
    line-height: 55px;
    font-size: 30px;
  }

.whatsapp-btn{
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: #0cb837;
    border-radius: 50px;
    color: #F6F6F6;
    bottom: 100px;
    right: 20px;

    text-align: center;
    line-height: 55px;
    font-size: 30px;
  }

  
  