/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&family=Righteous&display=swap');

*{
    margin: 0;
    padding: 0;
    scroll-behaviour: auto;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-2);
}

/* Variables */
:root{
    --green-color: #1c8644;
    --bg-blue: #001b54;
    --container-color-2: #212121;
    --font-family-2: "Righteous", sans-serif;
}

/* Custom Scroll Bar */
html::-webkit-scrollbar {
    width: 0.75rem;
    background: #193165;
}

html::-webkit-scrollbar-thumb{
    border-radius: 4rem;
    background: var(--bg-blue);
    border: 1px solid black;
}

body{
    background: #1A1A1A;
    color: white;
    font-family: var(--font-family-2);
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

.heading h1{
    font-size: 3.125rem;
    text-align: center;
    position: relative;
}

section{
    padding: 3rem 0 2rem;
}

.container{
    max-width: 1400px;
    margin: auto;
    width: 100%
}

ul{
    list-style-type: none;
    color: var(--text-color);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-blue);
    box-shadow: 0 1px 4px hsl(0deg 4% 15% / 10%);
    z-index: 100;
    border-bottom: 5px solid #193165;
}

header ul{
    position: relative;
    background: var(--bg-blue);
}

header ul li{
    position: relative;
    list-style: none;
    float: left;
    background: var(--bg-blue);
}

header ul li a{
    color: white;
    font-size: 0.875rem;
    padding: 5px 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: var(--bg-blue);
}

.logo img{
    width: 55px;
    border-radius: 50%;
    border: 2px solid black;
    margin-left: 1rem;
}

.navbar{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.navbar ul li{
    display: inline;
    padding: 7px;
}

.nav-link{
    position: relative;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white-color);
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.3s ease;
}

.nav-link:hover{
    transform: scale(1.15);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid white;
  transition: all 0.3s linear;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-icons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav-icons .bx{
    color: var(--bg-color);
    font-size: 20px;
}

.menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
    padding: 17px 17px;
    background: #212121;
    border: 2px solid #373737;
    border-radius: 0.5rem;
}

.menu-icon div{
    display: block;
    background: white;
    height: 3px;
    width: 30px;
    transition: 0.3s;
}

.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2{
    opacity: 0;
}

.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}

#book{
    border: 2px solid #303030;
    box-shadow: 6px 6px 0px rgb(0, 0, 0, 5);
    background: #1A1A1A;
    padding: 20px 20px;
    margin-top: -20px;
    border-radius: 10px;
    transition: 0.3s;
    transition: all 0.3s linear;
}

#book:hover{
  transform: scale(1.1);
  background: #303030;
}

.home{
    position: relative;
    padding-top: 16rem;
    height: 700px;
}

.home-content{
    display: flex;
    flex-direction: columns;
    position: relative;
    justify-content: center;
}

.home-text{
    position: relative;
    z-index: 4;
    margin-top: 14%;
}

.home-text h1{
    font-size: 7rem;
    line-height: 6.8rem;
    font-weight: 800;
}

.home-text p{
    font-size: 2rem;
    font-weight: 500;
}

.home-img{
    position: relative;
    max-width: 600px;
    width: 90%;
    height: 100%;
    z-index: 4;
    border-radius: 1.5rem;
    border: 1px solid var(--bg-blue);
    box-shadow: 0 4px 8px 0 var(--bg-blue), 0 6px 20px 0 var(--bg-blue);
}

/* About Section */
.about{
    height: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 13rem;
}

.about-content{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.about-text{
    display: flex;
    position: relative;
    text-align: center;
    font-size: 1.125rem;
    padding-right: 3rem;
    padding-left: 3rem;
    text-shadow: 4px 4px 2px black;
    color: #F9F6EE;
}

.images{
    position: absolute;
    display: flex;
    flex-direction: columns;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.middle, .left, .right{
    height: 450px;
    border-radius: 25px;
    background-size: cover;
    background-attachment: fixed;
    border: 1px solid #193165;
    box-shadow: 0 4px 8px 0 #193165, 0 6px 20px 0 #193165;
}

.middle{
    background-image: url('/static/images/byte/middle.jpg');
    background-position: center;
    width: 60%;
}

.left{
    background-image: url('/static/images/byte/left.jpg');
    background-position: top;
    margin-top: 6rem;
    width: 16%;
}

.right{
    background-image: url('/static/images/byte/right.jpg');
    background-position: bottom;
    margin-top: 8rem;
    width: 16%;
}

/* Services Section */
.service{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 1100px;
    gap: 5rem;
}

.service-btns{
    display: grid;
    grid-template-columns: repeat(3, 30%);
    justify-content: center;
    gap: 1rem;
}

.overlay .bx, .business-overlay .bx, .archive-overlay .bx{
    color: green;
    font-size: 20px;
    margin-right: 10px;
    margin-left: 1rem;
}

.overlay ul, .business-overlay ul, .archive-overlay ul{
    border-top: 2px solid white;
    text-align: left;
}

.overlay h4{
    margin: 5px 0 20px 0;
}

.box-area{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    place-items: center;
}

.box{
    border-radius: 15px;
    position: relative;
    height: 520px;
    width: 95%;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

#basic{
    border: 2px solid #8d8d8d;
    box-shadow: 0 4px 8px 0 #8d8d8d, 0 6px 20px 0 #8d8d8d;
}

#standard{
    margin-top: 0rem;
    border: 2px solid #dec310;
    box-shadow: 0 4px 8px 0 #dec310, 0 6px 20px 0 #dec310;
}

#premium{
    border: 2px solid black;
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
}

.box img{
    width: 100%;
    height: 523px;
    border-radius: 15px;
    display: block;
}

.box li i, .business-box li i{
    text-shadow: 2px 2px 1px black;
}

.overlay, .business-overlay{
    height: 100%;
    width: 100%;
    background: linear-gradient(transparent, var(--container-color-2) 90%);
    border-radius: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 0.875rem;
}

.overlay h2, .business-overlay h2{
    font-size: 2rem;
    text-shadow: 4px 4px 2px black;
}

.overlay h3, .business-overlay h3{
    text-align: center;
    font-size: 1.75rem;
    text-shadow: 4px 4px 2px black;
}

button, .business-overlay button, .archive-overlay button{
    font-size: 1rem;
    height: 60px;
    width: 70%;
    background: linear-gradient(to bottom, #4dc7d9 0%, var(--bg-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.5s;
    border: 1px solid #193165;
}

button:hover, .business-overlay button:hover, .archive-overlay button:hover{
  transform: scale(1.05);
  background: linear-gradient(to bottom, #4dc7d9 0%, var(--bg-blue) 95%);
  box-shadow: 0 2px 4px 0 #193165, 0 3px 10px 0 #193165;
}

button .send-btn{
  color: white;
}

button .svg-wrapper, .archive-overlay button .archive-svg-wrapper, .business-overlay button .business-svg-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 80%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5rem;
  transition: all 0.3s;
}

button:hover .svg-wrapper {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.5);
}

button:hover svg{
  transform: rotate(45deg);
}

.btn{
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 350px;
    height: 85px;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid #193165;
    border-radius: 10px;
    margin-top: -1.5rem;
}

.archiving-btn button span, .business-btn button span, .hosting-btn span, .website-btn button span, .business-archiving-btn button span{
    font-size: 1.25rem;
}

.btn .animation{
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

.business-btn button .ri-id-card-fill, .archiving-btn .ri-archive-stack-fill, .hosting-btn .ri-server-line, .business-archiving-btn .ri-archive-stack-fill, .website-btn button .ri-window-fill{
    font-size: 3.5rem;
    margin-left: -0.5rem;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

/* Business Cards Section */
.business-btn button, .website-btn button, .archiving-btn button, .hosting-btn button{
    height: 150px;
    width: 100%;
}

.website-btn button{
    background: var(--bg-blue);
    border: 2px solid var(--bg-blue);
    box-shadow: 0 2px 4px 0 var(--bg-blue), 0 3px 10px 0 var(--bg-blue);
}

.business-btn button{
    background: #08427a;
    border: 2px solid #08427a;
    box-shadow: 0 2px 4px 0 #08427a, 0 3px 10px 0 #08427a;
}

.archiving-btn button{
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    box-shadow: 0 2px 4px 0 #1a1a1a, 0 3px 10px 0 #1a1a1a;
}

.business-service{
    height: 750px;
    position: relative;
    padding: 5rem 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-box-area{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    gap: 1rem;
}

.business-box{
    border-radius: 12px;
    position: relative;
    height: 550px;
    width: 465px;
}

.business-box img{
    width: 90%;
    height: 470px;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}

.business-box:nth-child(1){
    background: linear-gradient(#F7E5DA 100%, var(--container-color-2));
    border: 2px solid #F7E5DA;
    box-shadow: 0 2px 4px 0 #F7E5DA, 0 3px 10px 0 #F7E5DA;
}

.business-box:nth-child(2){
    background: linear-gradient(#832B00 100%), var(--container-color-2);
    border: 2px solid #832B00;
    box-shadow: 0 2px 4px 0 #832B00, 0 3px 10px 0 #832B00;
}

.business-overlay button:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px 0 #193165, 0 3px 10px 0 #193165;
    border: 1px solid #193165;
}

.business-overlay button svg, .archive-overlay button svg{
    width: 25px;
    height: 25px;
    fill: white;
    transition: all 0.3s;
}

.business-svg-wrapper{
    background-color: rgba(255, 255, 255, 0.5);
}

.business-overlay button:hover svg{
    transform: rotate(45deg);
}

.business-overlay img{
    width: 50%;
    height: 130px;
    margin-bottom: 1rem;
    border: 2px solid #1a1a1a;
    box-shadow: 0 2px 4px 0 #1a1a1a, 0 3px 10px 0 #1a1a1a;
    margin-right: 0.35rem;
    margin-left: 0.25rem;
}

.business-overlay .business-double{
    display: flex;
    flex-direction: columns;
    gap: 0.25em;
}

.business-contact{
    margin-top: 2rem;
}

.business-contact h2{
    margin-bottom: 1rem;
}

.business-service-btns{
    position: relative;
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
}

.business-archiving-btn button{
    background: var(--container-color-2);
    height: 85px;
}

/* Archive Service Section */
.archive-services{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 1000px;
    gap: 9rem;
}

.archive-content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.archive-card-area{
    border-radius: 12px;
    height: 420px;
    width: 400px;
    background: rgba(0, 27, 84, 0.32);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    box-shadow: 0 2px 4px 0 #193165, 0 3px 10px 0 #193165;
    border: 1px solid #193165;
}

.archive-overlay ul li{
    font-size: 1.05rem;
    text-shadow: 2px 2px 1px black;
}

.archive-overlay h2{
    font-size: 2.5rem;
    text-shadow: 4px 4px 2px black;
}

.archive-overlay h3{
    font-size: 1.65rem;
    text-shadow: 4px 4px 2px black;
}

.archive-overlay{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.archive-overlay button:hover{
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px rgb(0, 0, 0, 5);
}

.archive-overlay button:active{
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.archive-overlay button span{
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.archive-overlay button span a{
    font-size: 1.5rem;
}

.archive-overlay button:hover .archive-svg-wrapper {
    transform: scale(1.09);
    background-color: rgba(255, 255, 255, 0.5);
}

.archive-overlay button:hover svg{
    transform: rotate(45deg);
}

.archive-images{
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    column-gap: 9rem;
    row-gap: 1rem;
}

.archive-images img{
    object-fit: cover;
    object-position: center;
}

.service-top, .service-middle, .service-bottom, .messy-top, .messy-middle, .messy-bottom{
    position: relative;
    height: 200px;
    width: 140%;
    box-shadow: 0 2px 4px 0 #193165, 0 3px 10px 0 #193165;
    border: 2px solid #193165;
    border-radius: 20px;
}

/* Contact Section */
.contact{
    position: relative;
    height: 800px;
    display: flex;
    flex-direction: column;
}

.contact-content{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    gap: 8rem;
    background: rgba(0, 27, 84, 0.32);
    border-radius: 15px;
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    box-shadow: 0 2px 4px 0 #193165, 0 3px 10px 0 #193165;
    border: 1px solid #193165;
}

.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    width: 95%;
    text-align: center;
}

.contact-details{
    display: flex;
    flex-direction: columns;
    align-items: center;
    height: 85px;
    width: 275px;
    background: var(--bg-blue);
    border: 1px solid #193165;
    border-radius: 15px;
}

.contact-details i{
    font-size: 50px;
    margin-right: 10px;
    margin-left: 15px;
}

.details{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.details p{
    font-size: 0.875rem;
}

.connect{
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 2px solid white;
    margin-top: 1rem;
    padding-top: 1rem;
    width: 75%;
    color: white;
}

.connect-socials a i{
    color: white;
    font-size: 30px;
    transition: all 0.3s;
}

.connect-socials a i:hover{
    transform: scale(1.4);
}

.contact-form form{
    font-size: 1rem;
    padding: 30px;
    width: 100%;
    text-align: center;
}

input[type="text"],
input[type="email"],
textArea{
    width: 100%;
    padding: 8px;
    margin: 3px 0 3px;
    border-radius: 10px;
    box-sizing: border-box;
}

.input-data{
    font-size: 1rem;
}

.call, .mail{
    font-size: 1.35rem;
    color: var(--text-color);
    text-decoration: underline;
}

form .fill{
    margin-top: 2rem;
    font-size: 1.1rem;
}

form button{
    justify-content: center;
    background-color: var(--green-color);
    padding: 1rem 3rem;
    border-radius: 10px;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 100%;
    height: 60px;
}

/* Client Section */
.client{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 800px;
}

.client-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    place-items: center;
    align-items: center;
    justify-content: center;
}

.card{
    position: relative;
    width: 110%;
    height: 235px;
    margin-bottom: 1.5rem;
    background-color: var(--text-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid black;
    transition: all 0.3s;
}

.card:hover{
    transform: scale(1.03);
    box-shadow: 0 2px 4px 0 rgb(0, 0, 0, 5), 0 3px 10px 0 rgb(0, 0, 0, 5);
}

#card1, #card4{
    background-color: white;
    border: 2px solid #cccccc;
    box-shadow: 0 2px 4px 0 white, 0 3px 10px 0 white;
}

#card2{
    background-color: #08131f;
    border: 2px solid #202a35;
    box-shadow: 0 2px 4px 0 #08131f, 0 3px 10px 0 #08131f;
}

#card3{
    background-color: black;
    border: 2px solid #191919;
    box-shadow: 0 2px 4px 0 black, 0 3px 10px 0 black;
}

#card5{
    background-color: #242426;
    border: 2px solid #39393b;
    box-shadow: 0 2px 4px 0 #242426, 0 3px 10px 0 #242426;
}

#card6{
    background-color: #ff7a1b;
    border: 2px solid #ff8731;
    box-shadow: 0 2px 4px 0 #ff7a1b, 0 3px 10px 0 #ff7a1b;
}

#card7{
    background-color: #46090f;
    border: 2px solid #582126;
    box-shadow: 0 2px 4px 0 #46090f, 0 3px 10px 0 #46090f;
}

.card svg{
      fill: #333;
      transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border-radius: 3px;
}

svg image{
    height: 100%;
    width: 100%;
}

.card__content{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      background-color: var(--container-color-1);
      transform: rotateX(-90deg);
      transform-origin: bottom;
      transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card__title a{
    margin: 0;
    padding-left: 5px;
    font-size: 2.2rem;
    margin-top: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.card__description{
    margin: 20px 0 0;
    font-size: 0.95rem;
    margin-top: 2rem;
    color: var(--text-color);
    line-height: 1.4;
}

.card__description a{
    color: var(--text-color);
}

/* Testimonials */
.testimonials{
    height: 700px;
}

.testimonials .heading{
    margin-bottom: 8rem;
}

.test-content{
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, auto));
    align-items: center;
    grid-gap: 10px;
    gap: 1.25rem;
}

.test-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 35px;
    margin-bottom: 3.5rem !important;
    background: rgba(0, 27, 84, 0.32);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    gap: 0.5rem;
    box-shadow: 0 2px 4px 2px #193165, 0 3px 10px 2px #193165;
    border: 1px solid #193165;
}

.test-box .test-img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--bg-blue);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 16px hsla(355, 25%, 15%, 0.1);
    position: absolute;
    margin-top: -4rem;
}

.test-box h2{
    font-size: 1.2rem;
    font-family: var(--poppins-font);
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.test-box h2 a{
    border-bottom: 1px solid white;
    color: white;
}

.stars{
    display: flex;
    flex-direction: columns;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.star-png{
    width: 15px;
}

.test-box span{
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 1rem;
    margin-left: 1rem;
}

.test-box p{
    font-size: 1rem;
    font-family: var(--poppins-font);
    columns: var(--text-alter-color);
    margin-top: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.swiper-pagination-bullet{
    width: 8px !important;
    height: 8px !important;
    border-radius: 0.2rem !important;
    background: var(--bg-blue) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active{
    width: 1.5rem !important;
    background: #193165 !important;
}

/* Terms */
.term{
    display: flex;
    flex-direction: column;
    height: 300px;
}

.term-content p{
    position: relative;
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

/* Footer Section */
.footer{
    position: relative;
    display: flex;
    border-top: 5px solid #193165;
    background: var(--bg-blue);
    justify-content: center;
}

.footer-content{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    position: relative;
    gap: 8rem;
}

.footer-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box h1{
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-box a{
    font-size: 1rem;
    color: white;
    text-align: center;
}

.footer-img{
    width: 100px;
    border-radius: 50%;
    border: 4px solid black;
    margin-bottom: 5px;
}

.copyright{
    font-size: 1.3rem;
    height: 50px;
    position: relative;
    background: var(--bg-blue);
}

.copyright-content{
    display: flex;
    flex-direction: columns;
    border-top: 1px solid white;
}

.copyright-content .social{
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-top: 0.5rem;
}

.social{
    display: flex;
    flex-direction: columns;
}

.social .bx{
    padding: 5px;
    background: var(--bg-blue);
    font-size: 35px;
    border-radius: 0.5rem;
    color: white;
    border: 2px solid #303030;
    background: #1A1A1A;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.social .bx:hover{
    background: #303030;
    transform: scale(1.2);
}

.copy{
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ================================================================================================================================================================================================================*/
/* Making Responsive */

@media (max-width: 1450px){

    .container {
        width: 90%;
        margin: 0 auto;
    }

    /* Home Section */
    .home{
        height: 600px;
    }

    .home-text{
        margin-top: 17%;
    }

    /* Services Section */
    .overlay h2, .business-overlay h2{
        font-size: 1.8rem;
    }

    .overlay h3, .business-overlay h3{
        font-size: 1.65rem;
    }

    /* Contact Section */
    .contact{
        gap: 3rem;
    }

    .connect{
        gap: 10px;
    }

    /* Client Section */
    .client{
        gap: 3rem;
        height: 900px;
    }

    .client-content{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(325px, auto));
        place-items: center;
    }

    .card{
        width: 99%;
        height: 235px;
    }

    /* Testimonials */
    .testimonials{
        height: 1150px;
    }

    /* Terms */
    .term{
        gap: 4rem;
        height: 350px;
    }

}

@media (max-width: 1125px){

    /* Footer Section */
    .footer-content{
        gap: 4rem;
    }

}

@media (max-width: 1083px){

    /* Client Section */
    .client{
        gap: 3rem;
        height: 1200px;
    }

}

@media (max-width: 950px){

    /* Header */
    header{
        top: 0px;
    }

    .menu-icon{
        display: flex;
        margin-right: 1rem;
    }

    .navbar{
        position: absolute;
        top: 95%;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 15px;
        border-right: 1px solid black;
        border-left: 1px solid black;
        border-bottom: 1px solid black;
        border-radius: 15px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
        background: var(--bg-blue);
    }

    header ul{
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: var(--bg-blue);
    }

    .open-menu{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
        width: 95%;
    }

    header .nav .navbar ul li ul{
        position: relative;
        left: 0;
        right: 0;
        width: 200px;
        margin-top: 0.5rem;
    }

    .nav-link{
        display: block;
        margin: 0.8rem 0;
    }

    /* Home Section */
    .home{
        height: 500px;
    }

    /* About Section */
    .about{
        height: 650px;
        gap: 9rem;
    }

    .middle, .left, .right{
        height: 400px;
    }

    .middle{
        background-position: center;
        width: 50%;
    }

    .left{
        background-position: top;
        width: 20%;
    }

    .right{
        background-position: bottom;
        width: 20%;
    }

    /* Business Cards Section */
    .business-service{
        height: 650px;
    }

    /* Servies Section */
    .service{
        flex-direction: column;
        height: 1950px;
        gap: 3rem;
    }

    .box-area{
        grid-template-columns: repeat(1, minmax(200px, auto));
    }

    .box{
        height: 490px;
        width: 60%;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }

    #premium{
        margin-top: -0.5rem;
    }

    .box img{
        height: 493px;
    }

    /* Archive Section */
    .service-top, .service-middle, .service-bottom, .messy-top, .messy-middle, .messy-bottom{
        position: relative;
        height: 200px;
        width: 110%;
    }

    .archive-images{
        column-gap: 3rem;
    }

    /* Contact Section */
    .contact-content{
        gap: 3rem;
    }

    .contact-details{
        width: 250px;
    }

    .contact-details i{
        font-size: 35px;
        margin-right: 10px;
    }

    .connect{
        flex-direction: column;
        text-align: center;
    }

    /* Footer Section */
    .footer-content{
        flex-direction: column;
        gap: 2rem;
    }

}

@media (max-width: 850px){

    /* Home Section */
    .home{
        height: 450px;
    }

    .home-text{
        margin-top: 17%;
    }

    .home-text h1{
        font-size: 5rem;
        line-height: 6rem;
    }

    .home-text p{
        font-size: 1.5rem;
    }

    /* Business Cards Section */
    .business-service{
        height: 1100px;
    }

    .business-box-area{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .business-box{
        height: 500px;
        width: 60%;
    }

    .business-box img{
        width: 50%;
        height: 125px;
    }

    /* Testimonials */
    .testimonials{
        height: 1100px;
    }

}

@media (max-width: 744px){

    /* Testimonials */
    .testimonials{
        height: 1700px;
    }

    /* Terms */
    .term{
        gap: 4rem;
        height: 400px;
    }

}

@media (max-width: 722px){

    /* Home Section */
    .home-text{
        margin-top: 13.5%;
    }

    .home-text h1{
        font-size: 4.5rem;
        line-height: 6rem;
    }

    .home-text p{
        font-size: 1.45rem;
    }

    /* About Section */
    .about{
        height: 650px;
        gap: 8rem;
    }

    /* Client Section */
    .client{
        gap: 3rem;
        height: 2200px;
    }

    /* Servies Section */
    .service{
        flex-direction: column;
        height: 2100px;
        gap: 3rem;
    }

    .service-btns{
        grid-template-columns: repeat(1, 60%);
        gap: 2rem;
    }

    .business-btn button, .website-btn button, .archiving-btn button{
        height: 110px;
    }

    .box{
        width: 75%;
    }

    /* Business Cards Section */
    .business-box{
        height: 500px;
        width: 75%;
    }

}

@media (max-width: 620px){

    .heading h1{
        font-size: 3rem;
    }

    /* Contact Section */
    .contact{
        height: 1300px;
    }

    .contact-content{
        flex-direction: column;
        gap: 2rem;
        height: 1150px;
    }

    .contact-form form{
        width: 90%;
        margin-left: -0.75rem;
    }

    .contact-box{
        width: 100%;
    }

    /* About Section */
    .about-text{
        font-size: 1.1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    /* Archive Service Section */
    .archive-services{
        height: 1050px;
    }

    /* Testimonials */
    .testimonials{
        height: 1800px;
    }

    /* Terms */
    .term{
        gap: 4rem;
        height: 450px;
    }

    /* Footer Section */
    .copy{
        font-size: 1rem;
    }

    .copyright-content .social{
        gap: 0.25rem;
    }

    .social .bx{
        font-size: 30px;
        border-radius: 10px;
    }

}

@media (max-width: 500px){

    .heading h1{
        font-size: 3rem;
    }

    /* Home Section */
    .home{
        height: 400px;
    }

    .home-text h1{
        font-size: 3.5rem;
        line-height: 4rem;
    }

    .home-text p{
        font-size: 1.15rem;
    }

    /* About Section */
    .about{
        height: 550px;
        gap: 7rem;
    }

    .images{
        flex-direction: column;
        gap: 2rem;
    }

    .middle, .left, .right{
        height: 125px;
        width: 80%;
        background-position: center;
        background-image: url('/static/images/byte/right.jpg');
    }

    .left{
        margin-top: 0rem;
        margin-left: -3rem;
    }

    .right{
        margin-top: 0rem;
        margin-left: 3rem;
    }

    /* Contact Section */
    .contact{
        height: 1300px;
    }

    .contact-content{
        gap: 2rem;
        height: 1150px;
    }

    .contact-box{
        width: 100%;
    }

    /* Services Section */
    .service{
        height: 2100px;
    }

    .box{
        width: 90%;
    }

    .service-btns{
        grid-template-columns: repeat(1, 70%);
        gap: 2rem;
    }

    /* Business Cards Section */
    .business-service{
        height: 1150px;
    }

    .business-box{
        width: 85%;
    }

    /* Archive Service Section */
    .archive-services{
        height: 1100px;
    }

    .archive-images{
        column-gap: 2rem;
    }

    .archive-card-area{
        width: 90%;
        height: 380px;
    }

    .archive-overlay ul li{
        font-size: 0.875rem;
    }

    .archive-overlay h2{
        font-size: 2rem;
    }

    .archive-overlay h3{
        font-size: 1.45rem;
    }

    /* Testimonials */
    .testimonials{
        height: 2000px;
    }

    /* Terms */
    .term{
        gap: 2rem;
        height: 550px;
    }

    /* Footer Section */
    .copyright{
        height: 80px;
    }

    .footer-box a{
        font-size: 0.875rem;
    }

}

@media (max-width: 400px){

    .heading h1{
        font-size: 2.25rem;
    }

    /* Home Section */
    .home{
        height: 400px;
    }

    .home-text h1{
        font-size: 3rem;
        line-height: 3rem;
    }

    /* About Section */
    .about{
        gap: 5rem;
    }

    /* Contact Section */
    .contact-content{
        height: 1250px;
    }

    /* Services Section */
    .service{
        height: 1950px;
    }

    .box{
        width: 85%;
    }

    .service-btns{
        grid-template-columns: repeat(1, 80%);
        gap: 2rem;
    }

    .overlay h2, .business-overlay h2{
        font-size: 1.6rem;
    }

    .overlay h3, .business-overlay h3{
        font-size: 1.15rem;
    }

    /* Business Cards Section */
    .business-service{
        height: 1000px;
    }

    .business-box{
        width: 85%;
        height: 450px;
    }

    .business-box button{
        margin-top: -1.5rem;
    }

    .box{
        height: 450px;
        width: 95%;
    }

    .business-box{
        width: 90%;
    }

    .business-box button{
        width: 90%;
    }

    .box img{
        height: 453px;
    }

    .box button{
        margin-top: -1rem;
        width: 90%;
        border-radius: 10px;
    }

    .business-overlay .business-double{
        gap: 0rem;
    }

    .business-overlay img{
        height: 100px;
    }

    /* Archive Service Section */
    .archive-services{
        height: 1100px;
    }

    .service-top, .service-middle, .service-bottom, .messy-top, .messy-middle, .messy-bottom{
        height: 170px;
    }

    /* Testimonials */
    .testimonials{
        height: 2100px;
    }

    .test-content{
        grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    }

    /* Terms */
    .term{
        gap: 4rem;
        height: 600px;
    }

    /* Footer Section */
    .copyright{
        height: 95px;
    }

    .copyright-content .social{
        gap: 0.25rem;
    }

    .social .bx{
        font-size: 25px;
        border-radius: 10px;
    }

}

@media (max-width: 350px){

    /* Home Section */
    .home{
        height: 300px;
    }

    /* About Section */
    .about{
        height: 575px;
        gap: 7rem;
    }

    .about-text{
        font-size: 1rem;
        padding-right: 0rem;
        padding-left: 0rem;
    }

    /* Archive Section */
    .archive-services{
        height: 1150px;
    }

    .archive-card-area{
        width: 95%;
    }

    .archive-card-area button{
        width: 90%;
    }

    .archive-images{
        column-gap: 1.5rem;
    }

    /* Testimonials */
    .testimonials{
        height: 2200px;
    }

    /* Terms */
    .term{
        gap: 2rem;
        height: 600px;
    }

}

@media (max-width: 336px){

    /* Testimonials */
    .testimonials{
        height: 2300px;
    }

}


