


body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background-color);
    -webkit-user-select: none;
    -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  height: 100%;
}

html{
    scroll-behavior: smooth;
}

:root{

    /* Basic colors */

    --background-color: #121212;
    --text-color: #FFFFFF;
    --accent: #ff9800;

    /* Secondary Colors */

    --secondary-background:  #1e1e1e;
    --secondary-text: #7b7b7b;


    /* Highlight Colors */

    --highlight: #03a9f4;
    --hover: #ff5722;

    /* Success, Warning, and Error */

    --success: #4caf50;
    --warning: #ffeb3b; 
    --error: #f44336;


    /* font sizes and lineheights */

    --h1-size: 3rem;
    --h2-size: 2rem;
    --h3-size: 1.9rem;
    --h4-size: 1.6rem;
    --h5-size: 1.3rem;
    --h6-size: 1.1rem;

    --body-text: 1rem;
    --small-text: 0.8rem;

    /* extra background colors */
    --extra-background-1: #FFE8A4;
    --extra-background-2: #CAC6FD;
    --extra-background-3: #D4FFD6;
    --extra-background-4: #60c790;
    --extra-background-5: #ffa26c;
    --extra-background-6: #84a8e7;
    --extra-background-7: #FCCC8A;


    /* font families */

    --font-heading: 'Poppins', sans-serif;
    /* --font-body: 'Roboto', sans-serif; */
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Pacifico', cursive;

    /* box-shadow */

    --box-shadow: rgba(0, 0, 0, 0.771) 0px 5px 15px;

}

/* utilities */

.container{
    max-width: 1300px;
    margin-inline: auto;
    padding: 0 15px;
}

.flex{
    display: flex;
    align-items: center;
}

h1{
    font-size: var(--h1-size);
    color: var(--text-color);
    font-family: var(--font-heading);
    text-transform: capitalize;
    letter-spacing: 1px;
}

h2{
    text-transform: capitalize;
    font-size: var(--h2-size);
    letter-spacing: 1px;
    line-height: 3.5rem;
    /* line-height: 2.2rem; */
}

a{
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-heading);
}

span{
    color: var(--error);
}

ul{
    padding: 0;
}


li{
    list-style: none;

}

.common-heading h2{
    color: var(--text-color);
    font-size: var(--h2-size);
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 2.6rem;
    margin-block: 10px;
}

.common-heading p{
    color: var(--secondary-text);
    font-size: var(--body-text);
    font-family: var(--font-body);
}




/* buttons styles */

.primary-button{
    position: relative;
    padding: 12px 20px;
    background-color: var(--accent);
    border: none;
    font-size: var(--body-text);
    font-weight: 600;
    cursor: pointer;
    border-radius: .2rem;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.primary-button a{
    color:var(--text-color);
    font-family: var(--font-heading);
    letter-spacing: .5px;
}

.primary-button .fa-right-long{
    font-size: 20px;
    margin-left: 5px;
    color: white;
    transition: ease 0.6s;
}

.primary-button:hover .fa-right-long{
    color: var(--background-color);
}

.primary-button::after{
    content: "";
    background-color: var(--text-color);
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: ease 0.6s;
    z-index: -1;
    border-radius: 0.2rem;
}

.primary-button:hover::after{
    width: 100%;
    opacity: 1;
    left: 0;
    visibility: visible;
}

.primary-button:hover a{
    color: black;
    transition: ease 0.6s;
}

.small-text{
    font-size: var(--small-text);
    color: var(--text-color);
    font-family: var(--font-heading);
    padding: 5px 10px;
    border-radius: 0.2rem;
    background-color: var(--highlight);
    cursor: pointer;
}


/* preloader style */

.preloader-wrapper {
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 999;
  position: fixed;
  animation: slideup .7s linear forwards;
  animation-delay: 1.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-wrapper img{
    width: 40%;
}


@keyframes slideup {
  0% {
    transform: translateY(0);
    display: none;
    
  }
  100% {
    transform: translateY(-100%);
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


/* second menu style */

.menu-item{
    position: relative;
}

.menu-item::after{
    content: "";
    width: 1px;
    opacity: 0;
    visibility: hidden;
    height: 3px;
    background-color: var(--text-color);
    left: 0;
    bottom: -8px;
    position: absolute;
    border-radius: 10px;
    transition: .25s linear;
}

.menu-item:hover::after{
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.main-navigation{
    position: relative;
}

.secondary-menu label{
    color: var(--text-color);
    font-size: var(--h5-size);
    background-color: var(--accent);
    padding: 12px;
    border-radius: .2rem;
    cursor: pointer;
    transition: 0.25s linear;
}

.secondary-menu label:hover{
    background-color: var(--background-color);
}

input[type = "checkbox"]{
    display: none;
}

.second-menu-list{
    position: absolute;
    right: -500px;
    opacity: 0;
    visibility: hidden;
    top: 20px;
    z-index: 99999;
    background-color: var(--secondary-background);
    box-shadow: var(--box-shadow);
    height: 94vh;
    position: fixed;
    width: 450px;
    padding: 30px;
    box-sizing: border-box;
    transition: .4s linear;
    border-radius: 20px;
    cursor: pointer;
}

.second-menu-list label{
    width: auto;
    background-color: var(--accent);
    padding: 8px;
}

.second-menu-logo{
    padding-top: 30px;
}

.second-menu-logo img{
    margin-left: -15px;
    width: 240px;
}

.second-menu-list label{
    position: absolute;
    right: 30px;
}

#second-menu:checked ~ .second-menu-list{
    right: 20px;
    opacity: 1;
    visibility: visible;
}


.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img{
    width: 120px;
}

.second-menu-list h3{
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: var(--h6-size);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.second-menu-list p{
    color: var(--text-color);
    font-family: var(--font-body);
    text-transform: capitalize;
    font-size: var(--small-text);
}

.image-gallery{
    margin-top: 20px;
}

.second-social-media{
    margin-top: 20px;
}

.second-social-flex{
    margin-top: 20px;
}

/* secondary navigation menu starts */

.bottom-menu{
    display: none;
}


/* navigation menu style starts */

.navigaiton-container{
    justify-content: space-between;
    padding-block: 15px;
    width: 100%;
}

.nav-logo{
    width: 35%;
}

.nav-logo img{
    cursor: pointer;
    width: 55%;
}

.nav-btn{
    display: inline;
    box-shadow: none;

}

.nav-btn .fa-headset{
    color: var(--text-color);
    font-size: 20px;
    transition: 0.6s ease;
}

.nav-btn:hover .fa-headset{
    color: var(--background-color);
}

.navigation-menu ul li a {
    color: var(--text-color);
    font-size: 16px;
    gap: 20px;
    transition: ease 0.4s;
}

.navigation-menu ul li a:hover{
    color: var(--accent);
}

.navigation-menu ul{
    display: flex;
    gap: 30px;
}

.navigation-menu{
    margin-right: 10px;
}

.secondary-nav{
    cursor: pointer;
}


    /* Overlay - hidden by default */
    .popup-overlay {
      position: fixed;
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      display: none; 
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    /* Pop Banner */
    .popup-banner {
      background:var(--text-color);
      padding: 40px 45px;
      width: 90%;
      max-width: 400px;
      border-radius: 20px;
      text-align: center;
      position: relative;
      box-shadow: var(--box-shadow);
      justify-content: center;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .popup-banner h2 {
      margin: 0;
      font-family: var(--font-heading);
      font-size: var(--h2-size);
    }

    .popup-banner p {
      font-size: var(--body-text);
      font-family: var(--font-body);
      letter-spacing: 1px;
    }

    .popup-banner button {
      background: var(--hover);
      color: #000;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .popup-banner span{
        font-family: var(--font-body);
    }

    .popup-banner .close-btn {
      position: absolute;
      top: 10px; 
      right: 15px;
      background: transparent;
      font-size: 35px;
      border: none;
      cursor: pointer;
    }


/* hero-section starts */

.hero-main-vid{
    position: relative;
}

.hero-main-vid video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    background-blend-mode: overlay;
}

#main{
    overflow: hidden;
}

.waves{
    margin-top: -6px;
    margin-bottom: -6px;
}

.hero-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 88vh;
    text-align: center;
    position: relative;
    transition: 0.4s linear;
}

.hero-btn{
    display: inline;
}

.playbtn{
    margin-top: 40px;
}

.hero-btn .fa-handshake{
    color: var(--text-color);
    font-size: 20px;
    transition: 0.6s ease;
}

.hero-btn:hover .fa-handshake{
    color: var(--background-color);
}

.hero-section h1, .common-banner-section h1{
    position: absolute;
    left: -9999px;
}



.hero-section span{
    font-size: 7rem;
}

.hero-section h2{
    font-size: 5.3rem;
    line-height: 6.8rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 800;
    margin-block: 40px;
    position: relative;
    margin: 0;
}

.primary-button img{
    margin-left: 5px;
    color: #03a9f4;
}


/* second-section starts */

.second-section{
    background-color: var(--secondary-background);
    padding-top: 9rem;
}

.second-container{
    gap: 30px;
}

.left-second{
    width: 40%;
}

.left-second img{
    width: 95%;
    height: 510px;
    object-fit: cover;
    border-radius: 0.2rem;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease;
    /* box-shadow: var(--box-shadow); */
}

.left-second img:hover{
    transform: scale(0.95);
}

.right-second{
    width: 60%;
    position: relative;
    margin-top: 20px;
}

.right-second h2{
    color: var(--text-color);
    font-size: var(--h2-size);
    font-family: var(--font-heading);
    line-height: 2.7rem;
    margin-block: 12px;
    text-transform: uppercase;
}

.right-second p{
    font-size: var(--body-text);
    color: var(--secondary-text);
    font-family: var(--font-body);
    line-height: 1.2rem;

}

.second-icon-box{
    background-color: var(--text-color);
    position: relative;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 0.2rem;
    cursor: pointer;
    transition: ease 0.5s;
    box-shadow: var(--box-shadow);
}

.second-icon-box:hover{
    background-color: var(--accent);
   
}

.second-icon-box:hover h3{
    color: var(--text-color);
}

.second-icon-box:hover p{
    color: var(--text-color);
}

.second-icon-box:hover img{
    background-color: var(--text-color);
}

.second-icon-box img{
    position: absolute;
    width: 30px;
    padding: 10px;
    border-radius: .2rem;
    top: 20px;
    background-color: var(--accent);
    transition: 0.4s ease;
}

.second-icon-box h3{
    margin-left: 3.7rem;
    margin-block: 0;
    font-family: var(--font-heading);
    font-size: var(--h6-size);
    transition: 0.4s ease;
}

.second-icon-box p{
    margin-left: 3.7rem;
    margin-block: 6px;
    font-size: var(--small-text);
    color: var(--secondary-text);
    font-family: var(--font-body);
    transition: 0.4s ease;
    font-weight: 400;
}

/* service section starts */

.service{
    background-color: var(--background-color);
    position: relative;
}

.service-container{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.service-types{
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 15px;
    margin-block: 40px
}

.service-grid span {
    position: absolute;
    left: 20px;
    top: 10px;
    color: var(--text-color);
    font-size: var(--h1-size);
    font-family: var(--font-body);
    opacity: 0.4;
    font-weight: 900;
}

.service-grid{
    background-color: var(--extra-background-1);
    cursor: pointer;
    border-radius: .2rem;
    position: relative;
    transition: 0.25s linear;
    box-shadow: var(--box-shadow);
    padding: 30px 15px;
    min-height: 400px;
}

.service-grid .fa-whatsapp{
    color: var(--text-color);
    font-size: 1.2rem;
    margin-left: 5px;
}

.service-grid:hover{
    background-color: var(--text-color);
    transform: scale(0.97);
}

.service-grid:hover span{
    color: var(--accent);
}

.service-grid img {
    width: 100%;
}

.quote-button{
    width: 100%;
    border-radius: .2rem;
    padding: 10px;
    font-size: var(--small-text);
    background-color: var(--accent);
    border: none;
    box-shadow: none;
}

.quote-button:hover a{
    color: var(--text-color);
}

.quote-button a{
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--body-text);
}

.service-grid h3{
    font-size: 1rem;
    line-height: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--background-color);
}

.service-grid p{
    font-family: var(--font-body);
    color: var(--secondary-background);
    font-size: var(--small-text);
}

.search-engine{
    background-color: var(--extra-background-2);
}

.web-development{
    background-color: var(--extra-background-5);
}

.digital-marketing{
    background-color: var(--extra-background-4);
}


/* our team members details */

.our-expert{
    background-color: var(--secondary-background);
    text-align: center;
}

.team-members{
    display: grid;
    grid-template-columns: 4fr 4fr 4fr 4fr;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.team-social{
    position: absolute;
    right: -40px;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease;
}

.team-social .fa-brands:hover{
    transform: scale(1.1);
    border-radius: 50%;
    background-color: var(--highlight);
}

.team-member-details:hover .team-social{
    right: 20px;
}

.team-social .fa-brands{
    color: var(--text-color);
    background-color: var(--accent);
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 0.2rem;
    transition: 0.4s ease;
}

.team-member-details{
    display: flex;
    flex-direction: column;
    background-color: var(--text-color);
    border-radius: 0.2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.team-member-details h3{
    font-size: var(--h5-size);
    font-family: var(--font-heading);
    margin-top: 15px;
    margin-bottom: 0;
}

.team-member-details p{
    margin-bottom: 15px;
    margin-top: 0;
    font-family: var(--font-body);
    color: var(--secondary-background);
}

.team-member-details img{
    width: 100%;
    transition: .4s ease;
    border-top-right-radius: 0.2rem;
    border-top-left-radius: 0.2rem;
}

.team-member-details:hover img{
    transform: scale(0.95);
    border-radius: 0.2rem;
}

/* video section css */

.video-banner{
    background-color: var(--secondary-background);
}

.video-container video{
    border-radius: 0.2rem;
    cursor: pointer;
}


/* industries stye */

.industries-heading{
    text-align: center;
}

.service-industries{
    padding-bottom: 9rem;
}

.industries-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    gap: 15px;
    margin-top: 40px;
}

.ind{
    background-color: var(--text-color);
    width: 100%;
    text-align: center;
    width: 100%;
    height: 130px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-radius: 0.2rem;
    box-shadow: var(--box-shadow);
    transition: 0.25s linear;
}

.ind:hover{
    background-color: var(--extra-background-1);
    transform: scale(1.06);
}

.ind1:hover{
    background-color: var(--extra-background-2);
    transform: scale(1.06);
}

.ind2:hover{
    background-color: var(--extra-background-3);
    transform: scale(1.06);
}

.ind3:hover{
    background-color: var(--extra-background-4);
    transform: scale(1.06);
}

.ind4:hover{
    background-color: var(--extra-background-5);
    transform: scale(1.06);
}

.ind5:hover{
    background-color: var(--extra-background-6);
    transform: scale(1.06);
}

.ind h4{
    margin: 0;
    font-family: var(--font-heading);
    color: var(--background-color);
    font-weight: 700;
    transition: 0.25s linear;
}

.ind:hover h4{
    color: #9c770a;
}

.ind1:hover h4{
    color: #2d2781;
}

.ind2:hover h4{
    color: #318c36;
}

.ind3:hover h4{
    color: #074d28;
}

.ind4:hover h4{
    color: #833507;
}

.ind5:hover h4{
    color: #0a3071;
}

.ind img{
    /* filter: brightness(0) invert(1); */
    width: 50px;
}

/* Our clients starts */

.client-section{
    text-align: center;
    /* padding-top: 4rem; */
    position: relative;
    overflow: hidden;
}

.logo-container{
    margin-top: 3rem;
}

.logo-container img, .logo-container-right img{
    border: none;
}

.clients-logo{
    position: absolute;
    width: 240px;
    right: calc(230px * 9);
    border: none;
    border: 2px solid white;
    border-radius: 0.2rem;
    animation: slideanimation 40s linear infinite;
    cursor: pointer;
}

@keyframes slideanimation{
    to{
        right: -250px;
    }
}

.logo1{
    animation-delay: calc(40s / 9 * (9 - 1) * -1);
}

.logo2{
    animation-delay: calc(40s / 9 * (9 - 2) * -1);
}

.logo3{
    animation-delay: calc(40s / 9 * (9 - 3) * -1);
}

.logo4{
    animation-delay: calc(40s / 9 * (9 - 4) * -1);
}

.logo5{
    animation-delay: calc(40s / 9 * (9 - 5) * -1);
}

.logo6{
    animation-delay: calc(40s / 9 * (9 - 6) * -1);
}

.logo7{
    animation-delay: calc(40s / 9 * (9 - 7) * -1);
}

.logo8{
    animation-delay: calc(40s / 9 * (9 - 8) * -1);
}

.logo9{
    animation-delay: calc(40s / 9 * (9 - 9) * -1);
}

.logo-container-right{
    padding-block: 8rem;
}

.right-clients-logo{
    position: absolute;
    width: 240px;
    bottom: 90px;
    left: calc(230px * 9);
    border: none;
    border: 2px solid white;
    border-radius: 0.2rem;
    animation: rightslideanimation 40s linear infinite;
    cursor: pointer;
}



@keyframes rightslideanimation{
    to{
        left: -240px;
    }
}

.logo10{
    animation-delay: calc(40s / 9 * (9 - 1) * -1);
}

.logo11{
    animation-delay: calc(40s / 9 * (9 - 2) * -1);
}

.logo12{
    animation-delay: calc(40s / 9 * (9 - 3) * -1);
}

.logo13{
    animation-delay: calc(40s / 9 * (9 - 4) * -1);
}

.logo14{
    animation-delay: calc(40s / 9 * (9 - 5) * -1);
}

.logo15{
    animation-delay: calc(40s / 9 * (9 - 6) * -1);
}

.logo16{
    animation-delay: calc(40s / 9 * (9 - 7) * -1);
}

.logo17{
    animation-delay: calc(40s / 9 * (9 - 8) * -1);
}

.logo18{
    animation-delay: calc(40s / 9 * (9 - 9) * -1);
}




/* portfolio-design css */

.price-page-port{
    background-color: var(--background-color);
}

.port-section{
    background-color: var(--secondary-background);
    overflow: hidden;
    position: relative;
    padding-top: 0;
    
}

.web-port{
    margin-block: 2rem;
    position: absolute;
    right: calc(250px * 16.2);
    animation: rightslide-animation 90s linear infinite;
}

.web-container img{
    width: 500px;
    cursor: pointer;
    border-radius: .2rem;
    box-shadow: var(--box-shadow);
}

@keyframes rightslide-animation{
    to{
        right: -700px;
    }
}

.port1{
    animation-delay: calc(90s / 9 * (9 - 1) * -1);
}

.port2{
    animation-delay: calc(90s / 9 * (9 - 2) * -1);
}

.port3{
    animation-delay: calc(90s / 9 * (9 - 3) * -1);
}

.port4{
    animation-delay: calc(90s / 9 * (9 - 4) * -1);
}

.port5{
    animation-delay: calc(90s / 9 * (9 - 5) * -1);
}

.port6{
    animation-delay: calc(90s / 9 * (9 - 6) * -1);
}

.port7{
    animation-delay: calc(90s / 9 * (9 - 7) * -1);
}

.port8{
    animation-delay: calc(90s / 9 * (9 - 8) * -1);
}

.port9{
    animation-delay: calc(90s / 9 * (9 - 9) * -1);
}

.web-container-right{
    padding-block: 21rem;
}

.web-container-right img{
    width: 500px;
    cursor: pointer;
    border-radius: .2rem;
    box-shadow: var(--box-shadow);
}

.right-web-port{
    margin-block: 2rem;
    position: absolute;
    left: calc(250px * 16.2);
    animation: leftslide-animation 90s linear infinite;
}

@keyframes leftslide-animation{
    to{
        left: -700px;
    }
}

.port10{
    animation-delay: calc(90s / 9 * (9 - 1) * -1);
}

.port11{
    animation-delay: calc(90s / 9 * (9 - 2) * -1);
}

.port12{
    animation-delay: calc(90s / 9 * (9 - 3) * -1);
}

.port13{
    animation-delay: calc(90s / 9 * (9 - 4) * -1);
}

.port14{
    animation-delay: calc(90s / 9 * (9 - 5) * -1);
}

.port15{
    animation-delay: calc(90s / 9 * (9 - 6) * -1);
}

.port16{
    animation-delay: calc(90s / 9 * (9 - 7) * -1);
}

.port17{
    animation-delay: calc(90s / 9 * (9 - 8) * -1);
}

.port18{
    animation-delay: calc(90s / 9 * (9 - 9) * -1);
}

.port-btn{
    margin-top: 40px;
}



/* google review style */

.review-header{
    text-align: center;
}

.swiper {
    width: 100%;
    height: 320px;
    }

    .swiper-slide {
      /* text-align: center; */
      font-size: 18px;
      background: var(--secondary-background);
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 0.2rem;
      cursor: pointer;
      box-sizing: border-box;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      /* height: 100%; */
      object-fit: cover;
    }  


.review-title{
    background-color: var(--secondary-background);
    border-radius: 0.2rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 20px;
    cursor: pointer;
}

.left-title{
    gap: 15px;
}

.left-title img{
    width: 80px;
}

.stars{
    gap: 5px;
}

.stars .fa-star{
    color: var(--accent);
    font-size: var(--h6-size);
}

.rating{
    color: var(--text-color);
    font-size: var(--h6-size);
    font-family: var(--font-heading);
}

.left-title p{
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: var(--small-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.trustindex{
    background-color: var(--success);
    border-radius: 0.2rem;
    color: var(--text-color);
    margin: 0;
}

.trustindex p{
    font-family: var(--font-heading);
    font-size: var(--small-text);
    padding: 8px 15px;
}

/* review contaienr style */

.review-author{
    justify-content: space-between;
}

.author-details{
    gap: 15px;
}

.author-name p{
    color: var(--text-color);
    font-size: var(--h6-size);
    font-family: var(--font-heading);
    margin: 0;
}

.author-name span{
    color: var(--secondary-text);
    font-size: var(--small-text);
    font-family: var(--font-body);
}

.author-img img{
    width: 50px;
    border-radius: 50%;
}

.author-rating{
    margin-top: 20px;
}

.varify img{
    width: 25px;
}

.google-fav img{
    width: 25px;
}

.review-des p{
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: var(--body-text);
}

/* home contact section stars */

.home-contact{
    background-color: var(--secondary-background);
    padding-bottom: 5rem;
}

.right-home-contact .home-cont{
    margin: 0;
}

.home-contact-container{
    justify-content: space-between;
    gap: 50px;
}

.left-home-contact h2{
    font-size: var(--h2-size);
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 2.6rem;
    text-transform: uppercase;
    margin-block: 25px;
    margin-block: 10px;
}

.left-home-contact p{
    font-size: var(--body-text);
    font-family: var(--font-body);
    color: var(--secondary-text);
    margin-block: 5px;
}

.right-home-contact{
    width: 100%;
    box-sizing: border-box;
    background-color: var(--text-color);
    border-radius: 0.2rem;
    padding-inline: 30px;
    padding-bottom: 27px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.right-home-contact h3{
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    margin-block: 25px;
}

.right-home-contact p{
    font-size: var(--body-text);
    font-family: var(--font-body);
    color: var(--secondary-background);
    margin-block: 11px;
}

.home-contact-form{
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.home-contact-form input{
    width: calc(51% - 9px);
    padding: 18px;
    border: none;
    border: 1px solid var(--extra-background-2);
    margin-bottom: 10px;
    border-radius: 0.2rem;
    box-sizing: border-box;
}

.home-contact select{
    width: 100%;
    padding: 18px;
    border: 1px solid var(--extra-background-2);
    margin-bottom: 10px;
    border-radius: 0.2rem;
    box-sizing: border-box;
}

textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid var(--extra-background-2);
    margin-bottom: 10px;
    border-radius: 0.2rem;
    
}


select option{
    color:var(--secondary-text);
    font-family: var(--body-text);
    font-size: var(--small-text);
}

::placeholder{
    color:var(--secondary-text);
    font-family: var(--body-text);
    font-size: var(--small-text);
}

.contact-btn{
    width: 100%;
    transition: 0.4s ease;
    color: var(--text-color);
    box-shadow: none;
}

.contact-btn:hover{
    color:var(--text-color)
}

.contact-btn::after{
    content: "";
    background-color: var(--background-color);
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: ease 0.6s;
    z-index: -1;
    border-radius: 0.2rem;
}

/* Footer-section starts */


.footer-section{
    flex-direction: column;
}

.top-footer{
    width: 100%;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 6rem;
}

.left-top-footer{
    width: 55%;
}

.left-top-footer h2{
    font-size: var(--h1-size);
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 3.1rem;
    margin-block: 10px;
}

hr{
    width: 100%;
}

.left-top-footer p{
    font-size: var(--body-text);
    font-family: var(--font-body);
    color: var(--secondary-text);
    line-height: 1.3rem;
}

.right-top-footer{
    width: 45%;
}

.right-top-footer input{
    border: none;
    background-color: var(--text-color);
    font-family: var(--font-body);
    color: var(--secondary-background);
    padding: 20px;
    border-radius: 0.2rem;
    width: 100%;
}

.right-top-footer input::placeholder{
    font-size: var(--body-text);
}

.sub-btn{
    margin-left: -160px;
    color: var(--text-color);
    transition: 0.3s ease;
    z-index: 0;
    font-size: 1px;
}



.sub-btn::after{
    content: "";
    background-color: var(--background-color);
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: ease 0.6s;
    z-index: -1;
    border-radius: 0.2rem;
}

.middle-footer{
    width: 100%;
    margin-block: 2rem;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
}

.about-footer p{
    font-size: var(--font-body);
    color: var(--text-color);
    font-family: var(--font-heading);
    line-height: 1.3rem;
}


.quick-link-footer h3{
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: var(--h5-size);
}

.explore-footer h3{
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: var(--h5-size);
}

.contact-footer h3{
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: var(--h5-size);
}

.about-footer img{
    width: 80%;
    margin-top: 10px;
    margin-left: -15px;
}

.about-social-media{
    display: flex;
    gap: 10px;
}
.about-social-media .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 1rem;
    padding: 12px;
    background-color: var(--accent);
    border-radius: 0.2rem;
    cursor: pointer;
    transition: 0.4s ease;
}

.about-social-media .fa-brands:hover{
    border-radius: 50%;
    background-color: var(--highlight);
}

.contact-details .fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    width: 1rem;
    height: 1rem;
    padding: 10px;
    border-radius: 0.2rem;
    background-color: var(--error);
    margin-right: 10px;
    cursor: pointer;
    transition: 0.4s ease;
}

.quick-link-footer ul li a{
    line-height: 1.6rem;
    position: relative;
    transition: 0.4s ease;
}

.quick-link-footer ul li a::before{
    content: "";
    height: 100%;
    width: 6px;
    background-color: var(--accent);
    position: absolute;
    left: -10px;
    transition: 0.4s ease;
    visibility: hidden;
}

.quick-link-footer ul li a:hover::before{
    left: 0;
    visibility: visible;
}

.quick-link-footer ul li a:hover{
    padding-left: 15px;
    color: var(--accent);
}

.explore-footer ul li a{
    line-height: 1.6rem;
    position: relative;
    transition: 0.4s ease;
}

.explore-footer ul li a::before{
    content: "";
    height: 100%;
    width: 6px;
    background-color: var(--accent);
    position: absolute;
    left: -10px;
    transition: 0.4s ease;
    visibility: hidden;
}

.explore-footer ul li a:hover::before{
    left: 0;
    visibility: visible;
}

.explore-footer ul li a:hover{
    padding-left: 15px;
    color: var(--accent);
}

.contact-details .fa-solid:hover{
    border-radius: 50%;
    background-color: var(--accent);
}

.contact-details p{
    font-family: var(--font-heading);
    font-size: var(--body-text);
    color: var(--text-color);
    cursor: pointer;
    margin-block: 10px;
}


.bottom-footer p{
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: var(--body-text);
}

.our-footer-location{
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

.copyright-section{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.imp-menu{
    gap: 20px;
}



/* contact page style */

.common-header{
    background: url(../images/contact-page-banner.avif);
    background-color: var(--secondary-background);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}

.common-header h2{
    font-size: var(--h1-size);
    line-height: 4rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-block: 40px;
    position: relative;
}

.common-banner-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 65vh;
    text-align: center;
}

.common-banner-section h2{
    text-transform: uppercase;
    margin: 0;
}

.common-banner-section p{
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: var(--body-text);
}

.contact-container{
    position: relative;
}

.left-contact-form{
    width: 30%;
    height: auto;
    background-color: var(--secondary-background);
    border-radius: 0.2rem;
    padding: 30px;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.left-contact-form h3{
    font-size: var(--h3-size);
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-block: 20px;
}

.contact-container{
    padding-top: 9rem;

}

.contact-address .fa-location-dot{
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 30px;
    color: var(--text-color);
    margin-right: 12px;
}

.contact-address .fa-envelope-open-text{
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 25px;
    color: var(--text-color);
    margin-right: 12px;
}

.contact-address .fa-phone-volume{
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 25px;
    color: var(--text-color);
    margin-right: 12px;
}

.contact-address p{
    font-family: var(--font-body);
    color: var(--text-color);
    font-size: var(--h6-size);
}

.right-contact-form{
    
    background-color: var(--text-color);
    border-radius: 0.2rem;
    padding: 40px;
    height: auto;
}

input:focus{
    border: none;
    outline: none;
}

textarea:focus{
    outline:none;
}

.requirments{
    margin-bottom: 30px;
}

.requirments label{
    background:transparent;
    border: 1px solid var(--secondary-text);
    border-radius: 0.2rem;
    color: var(--secondary-text);
    padding: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: 0.25s linear;
    font-size: var(--small-text);
}

.requirments input[type = "radio"]:checked + label{
    background-color: var(--accent);
    color: var(--text-color);
    border: none;
}

.contact-form-container input{
    margin-block: 4px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background-color: rgb(245, 245, 245);
    border-radius: 0.2rem;
    font-family: var(--font-body);
}

input::placeholder{
    font-family: var(--font-body);
    color: var(--secondary-text);
    letter-spacing: 0.2px;
}

textarea::placeholder{
    font-family: var(--font-body);
    color: var(--secondary-text);
    letter-spacing: 0.2px;
}

.contact-form-container textarea{
    font-family: var(--font-body);
    margin-bottom: 10px;
    margin-top: 5px;
    height: 100px;
    max-width: 100%;
    box-sizing: border-box;
    border: none;
    background-color: rgb(245, 245, 245);
    border-radius: 0.2rem;
}

.contact-form-container{
    margin-left: 250px;
    margin-top: -10px;
}

.contact-form-container h3{
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    color: var(--accent);
}

.left-contact-form .fa-brands{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 12px;
    background-color: var(--accent);
    border-radius: 0.2rem;
    cursor: pointer;
    transition: 0.4s ease;
}

.left-contact-form .fa-brands:hover{
    border-radius: 50%;
    background-color: var(--highlight);
}

.contact-container{
    justify-content: end;
}

/* our location section starts */

.location-details{
    gap: 20px;
}

.our-location{
    width: 300px;
    height: 260px;
    border-radius: 0.2rem;
}

.location-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.our-locations{
    padding-bottom: 9rem;
    background-color: var(--secondary-background);
    padding-top: 50px;
}

.map-box{
    background-color: var(--text-color);
    padding: 15px;
    cursor: pointer;
    border-radius: 0.2rem;
    gap: 20px;
    width: 50%;
    min-height: 300px;
    box-sizing: border-box;
}

.map-box h3{
    font-family: var(--font-heading);
    font-size: var(--h6-size);
    color: var(--error);
}

.map-box h4{
    font-family: var(--font-heading);
    font-size: var(--body-text);
    margin: 0;
}

.map-box p{
    font-family: var(--font-body);
    font-size: var(--body-text);
    color: var(--secondary-text);
    text-transform: capitalize;
}

.map-box span a{
    font-family: var(--font-body);
    font-size: var(--body-text);
    transition: ease .2s;
    color: var(--hover);
    font-weight: 600;
}

.map-box span a:hover{
   font-size: .9rem;
}

.map-box .fa-arrow-right{
    margin-left: 10px;
}



/* ctr section */

.ctr-cont{
    width: 100%;
}

.ctr-section{
    margin-top: -300px;
    background-color: var(--extra-background-4);
    border-radius: .2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 52px;
    margin-bottom: 40px;
    cursor: pointer;
}

.ctr-section h2{
    font-size: 7rem;
    color: var(--text-color);
    margin-block: 70px;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: none;
}

.crt-sub-btn{
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 10px 40px;
    font-family: var(--font-heading);
    font-size: var(--h6-size);
    border-radius: 0.2rem;
    border: none;
    cursor: pointer;
    box-shadow: none;
    transition: 0.4s linear;
}

.crt-sub-btn:hover{
    color: var(--background-color);
    transform: translateY(-10px);
}

/* portfolio section start */

.portfolio-section{
    background-color: var(--background-color);
    /* padding-block: 8rem; */
}

.portfolio{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-grid{
    display: grid;
    grid-template-columns: 4fr 4fr 4fr 4fr ;
    gap: 20px;
    margin-block: 60px;
}




/* portfolio section starts */

.port-banner{
    background-image: url(../images/portfolio-page-banner.avif);
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolio-page{
    padding-top: 9rem;
}



/* faq section starts */

.faq-banner{
    background-image: url(../images/faq-section-banner.avif);
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq-btn{
    color: var(--text-color);
    margin-top: 40px;
    transition: 0.4s ease;
}

.faq-btn:hover{
    color: var(--background-color);
}

.faq-container{
    padding-top: 9rem;
}

.faq-header{
    text-align: center;
}

.faq-question-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
}

.first label{
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--h6-size);
    font-weight: 600;
    /* background-color: #03a9f4; */
    
}


input[type ="radio"]{
    display: none;
}

.first{
    background-color: var(--text-color);
    padding: 20px;
    border-radius: 0.2rem;
    cursor: pointer;
    width: 88%;
    
}

.first p{
    display: none;
    font-family: var(--font-body);
    font-size: var(--body-text);
    color: var(--secondary-text);
}

.first input[type ="radio"]:checked~p{
    display: block;
    
}


/* faqteam style */

.faq-team{
    padding-bottom: 16rem;
}





/* about us page css */


.about-banner{
    background-image: url(../images/about-us-banner.avif);
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}


.about-section{
    padding-top: 9rem;
    background-color: var(--secondary-background);
}



.left-about-cont{
    width: 40%;
    position: relative;
}

.right-about-cont{
    width: 50%;
}

.about-img{
    padding-left: 50px;
}

.about-img img{
   width: 450px;
   height: 550px;
   object-fit: cover;
   transition: 0.2s linear;
   cursor: pointer;
}

.about-img img:hover{
    transform: scale(0.95);
}

.second-about-img{
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 40%;
    padding: 0 10px;
    border-radius: 0.2rem;
    gap: 10px;
    background-color: var(--text-color);
    cursor: pointer;
}

.second-about-img h5{
    font-family: var(--font-heading);
    font-size: .8rem;
    margin-block: 10px;
}


.right-about-cont{
    padding: 40px;
    cursor: pointer;
}

.right-about-cont h2{
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: var(--h2-size);
    line-height: 2.5rem;
    text-transform: uppercase;
}

.right-about-cont p{
    font-family: var(--font-body);
    color: var(--text-color);
    font-size: var(--body-text);
    line-height: 1.5rem;
    margin-bottom: 30px;

}

.right-img-box{
    background-color: var(--text-color);
    margin-bottom: 20px;
    padding: 0 20px;
    border-radius: 0.2rem;
    gap: 10px;
    transition: 0.2s linear;
}

.right-img-box img{
    background-color: var(--text-color);
    padding: 10px;
    border-radius: .2rem;
}

.right-img-box h5{
    font-family: var(--font-heading);
}

.right-img-box:hover{
    background-color: var(--hover);
}

.right-img-box:hover h5{
    color: white;
}

.right-img-box:hover span{
    color: white;
}

.about-our-expert{
    padding-bottom: 9rem;
}


/* service page style */

.service-banner{
    background-image: url(../images/service\ page\ banner.avif);
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-page-section{
    background-color: var(--secondary-background);
}

.why-choose-section img{
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.service-page-cont{
    padding-top: 9rem;
}


.mobile-nav{
    display: none;
}

.why-choose{
    padding-block: 0;
}


/* portfolio page design */

.port-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.port-content img{
    width: 100%;
    border-radius: 0.2rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: 0.2s linear;
}

.port-content img:hover{
    filter: grayscale(100%);
}

.port-pricing{
    background-color: var(--secondary-background);
}



.scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: var(--accent);
      color: #fff;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      font-size: 22px;
      z-index: 999;
    }

    .scroll-top:hover {
      background-color: var(--success);
    }



    /* team member page style */

    .team-member-team{
        padding-block: 9rem;
    }

    .team-banner{
    background-image: url(../images/our-team-banner.avif);
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    }



/* pricing page style */

.pricing-table-section{
    width: 100%;
    background-color: var(--secondary-background);
}

.pricing-banner{
    background-image: url(../images/pricing-page-banner.avif);
    background-position: center;
    background-color: var(--background-color);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper{
    padding-bottom: 20px;
    /* padding-top: 9rem; */

}

.port-wrapper{
    padding-top: 9rem;
}

.pricing-heading{
    text-align: center;
}

.pricing-tabs{
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.tabs-label{
    background-color: transparent;
    margin-bottom: 10px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    justify-content: center;
}

.tabs-label label{
    margin: 10px;
    padding: 10px;
    border-radius: 0.2rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: var(--body-text);
    transition: 0.3s linear;
}

.tabs{
    flex-direction: column;
}

.tab-content{
    font-family: var(--font-body);
    color: var(--text-color);
    display: none;
    margin-top: 20px;
    border-radius:.2rem;
    transition: 0.2s linear;
}

#tab1:checked ~ .content #content1,
#tab2:checked ~ .content #content2{
    display: block;
}

#tab1:checked ~ .tabs-label label[for = "tab1"],
#tab2:checked ~ .tabs-label label[for = "tab2"]{
    color: var(--text-color);
    background-color: var(--accent);
    padding: 10px;
    border-radius: 50px;
    margin: 10px;
}

.pricing-table{
    margin-top: 80px;
    gap: 20px;
    position: relative;
    background-color: var(--text-color);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.pricing-table h3{
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    color: var(--accent);
    margin-bottom: 20px;
}

.prices{
    gap: 10px;
}

.original-price{
    font-size: var(--h6-size);
    font-weight: 500;
    text-decoration: line-through;
}

.discount-price{
    font-size: var(--h2-size);
    font-weight: 600;
}

.discount-price span{
    font-weight: 500;
    font-size: var(--body-text);
    color: var(--secondary-text);
}

.pricing-button{
    width: 80%;
    border: none;
    background-color: var(--background-color);
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s linear;
}

.pricing-button a{
    font-family: var(--font-heading);
}

.pricing-button:hover{
    background-color: var(--accent);
}

.second-pricing-button{
    width: 80%;
    border: none;
    background-color: var(--accent);
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s linear;
}

.second-pricing-button a{
    font-family: var(--font-heading);
    transition: 0.2s linear;
}

.second-pricing-button:hover{
    background-color: var(--text-color);
}

.second-pricing-button:hover a{
    color: var(--background-color);
}

.plan-features h4{
    font-family: var(--font-heading);
    font-size: var(--h5-size);
    margin-block: 15px;
}

.plan-features li{
    font-family: var(--font-body);
    font-size: var(--body-text);
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.6rem;
}

.plan-features i{
    font-size: var(--small-text);
    color:var(--accent);
    margin-right: 7px;
}

.pricing-1{
    width: 29%;
    color: var(--background-color);
    border-radius: 50px;
    cursor: pointer;
}

.pricing-table p{
    font-family: var(--font-body);
    font-size: var(--body-text);
}

.pricing-2{
    width: 29%;
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: 20px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--box-shadow);
    bottom: 8%;
}

.pricing-3{
    width: 29%;
    color: var(--background-color);
    border-radius: 50px;
    cursor: pointer;
}

.popular-btn{
    position: relative;
}

.pop-btn{
    position: absolute;
    right: -20px;
    top: -20px;
    padding: 10px 40px;
    border: none;
    border-radius: 50px;
    background-color: var(--text-color);
    color: var(--background-color);
    cursor: pointer;
    text-align: center;
    transition: 0.2s linear;
}

.pop-btn a{
    font-family: var(--font-heading);
    color: var(--background-color);
    font-weight: 600;
    
}

.pop-btn:hover{
    background-color: var(--success);
}



/* privacy policy style */

.privacy-policy{
    background-color: var(--secondary-background);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 9rem;
}

.privacy-policy-wrapper{
    max-width: 1000px;
    color: var(--text-color);
}

.privacy-policy-wrapper h2, h3, h4{
    font-family: var(--font-heading);
    
}

.privacy-policy-wrapper h2{
    font-size: var(--h4-size);
    line-height: 2.3rem;
}

.privacy-policy-wrapper h3{
    font-size: var(--h5-size);
}

.privacy-policy-wrapper p{
    font-family: var(--font-body);
    line-height: 1rem;
}


.privacy-policy-wrapper li{
    font-family: var(--font-body);
    list-style:circle;
    line-height: 1.7rem;
    margin-left: 40px;
}




/* mobile responsive code */

/* homme page mobile responsive */


@media (max-width: 765px){

    .custom-cursor{
        display: none;
    }

    main video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 95vh;
    background-color: var(--background-color);
    background-blend-mode: overlay;
}

    #main{
        overflow: hidden;
    }

    /* sitemap mobile responsie */

    .level {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .sitemap h1{
        font-size: var(--h4-size);
      }

      .connector {
        display: none;
      }

    .preloader-wrapper img{
        margin-top: -120px;
        width: 100%;
    }

    .primary-button{
        padding: 12px 15px;
    }

    .mobile-nav{
        padding-block: 15px;
        display: flex;
        z-index: 99;
        position: relative;
        display: flex;
        justify-content: space-between;
        position: fixed;
        background-color: #000000b9;
    }

    .mobile-logo{
        width: 55%;
    }


    .mobile-logo img{
        width: 100%;
        margin-left: -15px;
    }


    .mob-navigation-menu{
        padding: 30px;
        padding-bottom: 50px;
        position: absolute;
        background-color: var(--background-color);
        width: 80%;
        top: -100%;
        min-height: 57vh;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.4s linear;
        position: fixed;
        opacity: 0;
        visibility: hidden;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
    }

    .mob-menu-width li a{
        font-size: 1rem;
    
    }

    .mob-navigation-menu ul li:active a{
        color: #000;
    }


    .mob-menu-widh{
        position: relative;
    }

    .mob-menu-width img{
        position: absolute;
        right: 40px;
        bottom: 40px;
        background-color: transparent;
        padding: 10px;
        border-radius: 50%;
        width: 18px;
        box-shadow: var(--box-shadow);
    }

   

    .mobile-hamburger a{
        color: var(--text-color);
        font-family: var(--font-heading);
        font-size: var(--h6-size);
        font-weight: 500;
    }
  

    #open-menu:checked~.mob-navigation-menu{
        top: 50%;
        opacity: 1;
        visibility: visible;
    }
    

    input[type= "checkbox"]{
        display: none;
    }


    .mobile-hamburger .fa-bars{
        color: var(--text-color);
        font-size: var(--h4-size);
    }

    .navigaiton-container{
        display: none;
    }

    .mob-nav-btn a{
        font-size: var(--body-text);
        color: var(--text-color);
    }

    .mob-nav-btn .fa-headset{
        color: var(--text-color);
        font-size: 1rem;
    }

    .mob-nav-btn{
        padding: 8px;
        border-radius: 0.2rem;
        border: none;
        background-color: var(--extra-background-4);
        box-shadow: var(--box-shadow);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }


    .mob-nav-logo img{
        width: 65%;
        margin-left: -10px;
        margin-bottom: 10px;
    }

    .mob-social-media .fa-brands{
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .common-banner-section{
        padding-top: 4.5rem;
    }


    /* bottom menu mobile responsive */

    .bottom-menu{
        position: relative;
        width: 100%;
        display: block;
    }

    .bottom-menu-wrapper{
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        position: absolute;
        bottom: 10px;
        background-color: #000;
        z-index: 98;
        position: fixed;
        padding: 13px;
        border-radius: 50px;
        width: 87%;
        height: 40px;
        gap: 10px;
        box-shadow: var(--box-shadow);
    }

    .bottom-menu-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }


    .bottom-menu-icon img{
        width: 75%;
        padding: 8px;
    }

    .rocket-icon img{
        background-color: var(--success);
        border-radius: 50%;
        padding: 8px;
        width: 30px;
        height: auto;
    }

    .rocket-icon:hover img{
        background-color: var(--hover);
    }

    .bottom-menu-list{
        width: 25%;
        padding: 10px;
    }

    .hero-section{
        padding-block: 1rem;
    }

    .hero-section h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .hero-section span{
        font-size: 2.2rem;
    }

    .bottom-menu-list:hover img{
        background-color:var(--hover);
        padding: 8px;
        border-radius: 50%;
    }
    

    .second-container{
        display: flex;
        flex-direction: column;
        padding-block: 5rem;
    }

    .left-second{
        width: 100%;
    }

    .left-second img{
        margin-top: -180px;
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

    .second-section{
        padding: 0;
    }

   .right-second{
    width: 100%;
   }

   .right-second h2 {
    font-size: 1.3rem;
    line-height: 1.7rem;
   }

   .second-icon-box h3{
    font-size: var(--body-text);
   }

   .second-icon-box p{
    font-size: var(--small-text);
   }

   .service-types{
    grid-template-columns: repeat(1, 1fr);
   }

   .service-grid img{
    width: 80%;
   }

   .portfolio-grid{
    grid-template-columns: repeat(1, 1fr);
   }

   .team-members{
    grid-template-columns: repeat(1, 1fr);
   }

   .home-contact-container {
    display: flex;
    flex-direction: column;
   }

   .home-contact-container.left-home-contact{
    width: 100%;
   }

   .home-contact-container.right-home-contact{
    width: 100%;
   }

   .left-home-contact h2{
    font-size: 1.7em;
    line-height: 2rem;
    letter-spacing: 0;
   }

   .left-home-contact p{
    font-size: var(--body-text);
   }

   .right-home-contact .home-cont{
    margin: 0;
   }

   .home-contact{
    padding-top: 5rem;
    padding-bottom: 10rem;
   }

   .home-contact h3{
    font-size: var(--h4-size);
   }

    .home-contact p{
    font-size: var(--small-text);
   }


   .second-icon-box h3{
    font-size: var(--body-text);
   }

   .second-icon-box p{
    font-size: var(--small-text);
   }


   .service{
    padding-block: 5rem;
   }

   .common-heading h2{
    font-size: 1.4rem;
    line-height: 1.9rem;
    letter-spacing: 0;
   }

   .service-grid h3{
    font-size: 1.2rem;
   }

   .portfolio-section{
    padding-block: 5rem;
   }

   .mob-port{
    display: none;
   }

   .video-banner{
    padding-block: 5rem;
   }

   .video-container h2{
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 0;
   }

   .right-clients-logo{
    width: 165px;
    left: calc(150px * 9);
   }


   .clients-logo{
    width: 165px;
    right: calc(150px * 9);
   }
   .logo-container-right{
    padding-block: 6.5rem;
   }



   /* popup mobile responsive */

   .popup-banner h2{
    font-size: var(--h4-size);
    text-transform: uppercase;
    line-height: 2rem;
    margin-top: 20px;
   }

   .popup-banner p{
    font-size: var(--small-text);
   }

   .popup-banner{
    padding: 40px 20px;
   }

   .popup-overlay{
    width: 94%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
   }

   .popup-banner .close-btn{
    margin: 0;
    right: 0;
   }




   /* review section mobile responsive */

   .review-section{
    padding-block: 5rem;
   }

.review-title{
    flex-direction: column;
    padding: 30px 20px;
}

.left-title{
    flex-direction: column;
}

.left-title img{
    width: 35%;
}

.left-title p {
    font-size: var(--small-text);
    letter-spacing: 0;
    margin: 0;
}

.trustindex p{
    margin-bottom: 0;
}

.review-des p{
    font-size: var(--body-text);
}

.swiper-slide{
    padding: 20px;
}

.swiper{
    height: 370px;
}

.author-img img{
    width: 40px;
}


   /* industries mobile responsive */

   .industries-list{
    grid-template-columns: repeat(2, 1fr);
   }

   .middle-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
   }

   .service-industries{
    padding-bottom: 5rem;
   }

   .ctr-cont{
    width: 100%;
   }

   .ctr-section{
    margin-top: -150px;
   }

   .ctr-section h2{
    font-size: 4.5rem;
    margin-block: 40px;
   }

   


   .explore-footer h3{
    padding: 0;
   }

   .quick-link-footer h3{
    padding: 0;
   }

   .copyright-section{
    flex-direction: column;
    padding-bottom: 20px;
   }

   .bottom-footer{
    text-align: center;
   }
   
   .about-footer img{
    width: 60%;
    margin-left: -10px;
   }

   .imp-menu{
    margin-bottom: 70px;
   }

   /* portfolio section mobile responsive */

   .port-content{
    grid-template-columns: repeat(1, 1fr);
   }

   .wrapper{
        padding-block: 5rem;
    }


   .port-content img{
    width: 100%;
   }

   .port-section{
    padding-block: 4rem;
   }

   .web-port{
    margin-block: 2rem;
    position: absolute;
    right: calc(250px * 12.9);
    animation: rightslide-animation 50s linear infinite;
}

.web-container img{
    width: 400px;
    cursor: pointer;
    border-radius: .2rem;
    box-shadow: var(--box-shadow);
}

@keyframes rightslide-animation{
    to{
        right: -500px;
    }
}

.port1{
    animation-delay: calc(50s / 9 * (9 - 1) * -1);
}

.port2{
    animation-delay: calc(50s / 9 * (9 - 2) * -1);
}

.port3{
    animation-delay: calc(50s / 9 * (9 - 3) * -1);
}

.port4{
    animation-delay: calc(50s / 9 * (9 - 4) * -1);
}

.port5{
    animation-delay: calc(50s / 9 * (9 - 5) * -1);
}

.port6{
    animation-delay: calc(50s / 9 * (9 - 6) * -1);
}

.port7{
    animation-delay: calc(50s / 9 * (9 - 7) * -1);
}

.port8{
    animation-delay: calc(50s / 9 * (9 - 8) * -1);
}

.port9{
    animation-delay: calc(50s / 9 * (9 - 9) * -1);
}

.web-container-right{
    padding-top: 16.5rem;
}

.web-container-right img{
    width: 400px;
    cursor: pointer;
    border-radius: .2rem;
    box-shadow: var(--box-shadow);
}

.right-web-port{
    margin-block: 2rem;
    position: absolute;
    left: calc(250px * 12.9);
    animation: leftslide-animation 50s linear infinite;
}

@keyframes leftslide-animation{
    to{
        left: -500px;
    }
}

.port10{
    animation-delay: calc(50s / 9 * (9 - 1) * -1);
}

.port11{
    animation-delay: calc(50s / 9 * (9 - 2) * -1);
}

.port12{
    animation-delay: calc(50s / 9 * (9 - 3) * -1);
}

.port13{
    animation-delay: calc(50s / 9 * (9 - 4) * -1);
}

.port14{
    animation-delay: calc(50s / 9 * (9 - 5) * -1);
}

.port15{
    animation-delay: calc(50s / 9 * (9 - 6) * -1);
}

.port16{
    animation-delay: calc(50s / 9 * (9 - 7) * -1);
}

.port17{
    animation-delay: calc(50s / 9 * (9 - 8) * -1);
}

.port18{
    animation-delay: calc(50s / 9 * (9 - 9) * -1);
}

   /* about page mobile responsive */

   .about-banner{
    background-position: center;
   }

   .common-header{
    background-position: center;
   }

   .about-section{
    padding-block: 6rem;
    overflow: hidden;
   }

   .about-container{
    flex-direction: column;
   }

   .left-about-cont{
    width: 100%;
    margin-bottom: 80px;
   }

   .about-img{
    padding-left: 0;
   }

   .about-img img{
    width: 100%;
    height: 400px;
   }

   .right-about-cont{
    width: 100%;
    padding: 0;
   }

   .right-about-cont h2{
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: 0;
    text-transform: uppercase;
   }

   .second-about-img{
    width: 55%;
   }

   .common-header h2{
    font-size: var(--h4-size);
    line-height: 2.2rem;
   }

   /* clients logo section */

   .client-section{
    padding-top: 5rem;
   }

   /* contact page mobile responsive */

   .contact-container{
    gap: 20px;
    flex-direction: column;
    padding-block: 5rem;
   }

   .left-contact-form{
    width: 85%;
    position: relative;
   }

   .right-contact-form{
    padding: 20px;
    padding-bottom: 50px;
   }

   input{
    font-size: 1rem;
   }
   
   textarea{
    font-size: 1rem;
   }


   .contact-form-container{
    margin: 0;
   }

   .location-details{
    flex-direction: column;
    padding: 0;
   }


   .map-box{
    flex-direction: column;
    width: 100%;
   }
   
   .our-location{
    width: 100%;
    height: 250px;
    border-radius: 0.2rem;
   }

   .requirments{
    display: flex;
    flex-direction: column;
    gap: 10px;
   }


   /* service page mobile responsive */

   .service-page-cont{
    padding-block: 0;
   }

   .why-choose-section img{
    margin-top: 0;
   }

   /* .why-choose{
    padding-bottom: 7rem;
   } */

   /* FAQ PAGE MOBILE RESPONSIVE */

   .faq-container{
    padding-block: 5rem;
   }

   .about-our-expert{
    padding-top: 5rem;
    padding-bottom: 10rem;

   }


   /* pricing page mobile responsive */

   .pricing-table{
    padding: 20px;
    width: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
   }

   .pricing-1{
    position: relative;
    width: 100%;
   }

   .pricing-2{
    position: relative;
    width: 85%;
    left: 52%;
   }

   .pricing-button{
    width: 100%;
   }

   .pricing-button a{
    font-size: 1rem;
   }
   .tabs-label label{
    font-size: 0.85rem;
   }

  .second-pricing-button{
    width: 100%;
  }

  .second-pricing-button a{
    font-size: 1rem;
  }


  /* privacy policy mobile responsive */

  .privacy-policy{
    padding-inline: 15px;
  }

   
}

  
/* tablet responsive */

@media (min-width: 768px) and (max-width: 1025px) {
  /* Home Page style for tablets */

  .custom-cursor{
    display: none;
  }

  #main{
    overflow: hidden;
  }

   main video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 80vh;
    background-color: var(--background-color);
    background-blend-mode: overlay;
}

  .main-navigation{
    display: none;
  }

  .mobile-nav{
    display: block;
  }

  .preloader-wrapper img{
        margin-top: -150px;
        width: 100%;
    }

  .mobile-nav{
        padding-block: 15px;
        display: flex;
        z-index: 99;
        position: relative;
        display: flex;
        justify-content: space-between;
        position: fixed;
        background-color: #000000b9;
    }

    .mobile-logo{
        width: 50%;
    }


    .mobile-logo img{
        width: 80%;
        margin-left: -15px;
    }


    .mob-navigation-menu{
        padding: 30px;
        padding-bottom: 50px;
        position: absolute;
        background-color: var(--background-color);
        width: 80%;
        top: -100%;
        height: 57vh;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.4s linear;
        position: fixed;
        opacity: 0;
        visibility: hidden;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
    }

    .mob-menu-width li a{
        font-size: 1.2rem;
    
    }

    .mob-navigation-menu ul li:active a{
        color: #000;
    }


    .mob-menu-widh{
        position: relative;
    }

    .mob-menu-width img{
        position: absolute;
        right: 40px;
        bottom: 40px;
        background-color: transparent;
        padding: 10px;
        border-radius: 50%;
        width: 18px;
        box-shadow: var(--box-shadow);
    }

   

    .mobile-hamburger a{
        color: var(--text-color);
        font-family: var(--font-heading);
        font-size: var(--h6-size);
        font-weight: 500;
    }
  

    #open-menu:checked~.mob-navigation-menu{
        top: 50%;
        opacity: 1;
        visibility: visible;
    }
    

    input[type= "checkbox"]{
        display: none;
    }


    .mobile-hamburger .fa-bars{
        color: var(--text-color);
        font-size: var(--h4-size);
    }

    .navigaiton-container{
        display: none;
    }

    .mob-nav-btn a{
        font-size: var(--h4-size);
        color: var(--text-color);
    }

    .mob-nav-btn .fa-headset{
        color: var(--text-color);
        font-size: 1rem;
    }

    .mob-nav-btn{
        padding: 20px 50px;
        border-radius: 0.2rem;
        border: none;
        background-color: var(--extra-background-4);
        box-shadow: var(--box-shadow);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }


    .mob-nav-logo img{
        width: 70%;
        margin-bottom: 10px;
    }

    .bottom-menu{
        display: block;
    }


        .bottom-menu{
        position: relative;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .bottom-menu-wrapper{
        display: flex;
        left: 50%;
        transform: translateX(-50%);
        justify-content: space-between;
        position: absolute;
        bottom: 30px;
        background-color: #000;
        z-index: 98;
        position: fixed;
        padding: 40px 13px;
        border-radius: 50px;
        width: 96%;
        height: 40px;
        gap: 10px;
        box-shadow: var(--box-shadow);
        
    }

    .bottom-menu-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }


    .bottom-menu-icon img{
        width: 50px;
    }

    .rocket-icon img{
        background-color: var(--success);
        border-radius: 50%;
        padding: 8px;
        width: 30px;
        height: auto;
    }

    .rocket-icon:hover img{
        background-color: var(--hover);
    }

    .bottom-menu-icon img:hover{
        background-color: var(--accent);
        padding: 5px;
        border-radius: 20px;
    }

    .bottom-menu-list{
        width: 25%;
        padding: 10px;
    }





    /* hero-section style */

    .hero-section{
        height: 70vh;
    }

     .hero-section h2{
        font-size: 3.5rem;
        line-height: 4.7rem;
    }

    .hero-section span{
        font-size: 5rem;
    }


    /* second setion style */

    .second-container{
        flex-direction: column;
    }

    .second-section{
        padding-top: 0;
        padding-bottom: 5rem;
    }

    .left-second{
        width: 98%;
    }

    .left-second img{
        width: 100%;
        margin-top: -15 0px;
    }

    .right-second{
        width: 98%;
    }

   .common-heading h2{
    font-size: var(--h4-size);
   }

   /* service section style */

   .service{
    padding-block: 5rem;
   }

   .service-types{
    width: 98%;
    grid-template-columns: repeat(2, 1fr);
   }

   /* portfolio-section style */

   .portfolio{
    padding-block: 5rem;
   }

   /* review-section style */

   .review-section{
    padding-block: 5rem;
   }

   /* industries section */

   .industries {
    padding-block: 5rem;
   }

   .industries-list{
    grid-template-columns: repeat(3, 1fr);
   }

   /* home contact section */

   .home-contact-container{
    flex-direction: column;
    margin-bottom: 5rem;
   }

   .left-home-contact{
    width: 98%;
   }

   .right-home-contact{
    box-sizing: border-box;
    width: 98%;
   }

   .ctr-cont{
    width: 98%;
    padding-top: 5rem;
   }

   /* footer section style */

   .middle-footer{
    grid-template-columns: repeat(2, 1fr);
   }

   .copyright-section{
    padding-bottom: 150px;
   }


   /* about page style */

   .about-section{
    padding-top: 0;
   }

   .about-container{
    flex-direction: column;
    gap: 40px;
   }

   .left-about-cont{
    width: 98%;
   }

   .about-img img{
    width: 100%;
    margin-top: -150px;
   }

   .about-img{
    padding-left: 0;
   }

   .right-about-cont{
    width: 98%;
   }

   .why-choose{
    padding-top: 5rem;
   } 

   .wrapper{
    box-sizing: border-box;
    margin: 0;
    width: 100%;
   }


   /* portfolio page style */


   .port-content{
    grid-template-columns: repeat(2, 1fr);
   }

   .landing-wrapper{
    padding-block: 5rem;
}


}

