@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Work+Sans:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}
.pac-container:after {
  /* Disclaimer: not needed to show 'powered by Google' if also a Google Map is shown */

  background-image: none !important;
  height: 0px;
}

:root {
  --main: #00a2dd;
  --heading: rgb(0 10 45);
  --para: #777;
  --para-tint: #e4e4e4;
  --white: #f6f6f6;
  --black: #212529;
  --helper: #8490ff;
  --overlay: #3e64ff;
  --helper-tint: #f3f4ff;
  --bg: rgb(249 249 255);
  --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
  --gradientSupport: -webkit-linear-gradient(
    0deg,
    rgb(132 144 255) 0%,
    rgb(98 189 252) 100%
  );
  --shadow: 0px 0px 20px 0px rgb(132 144 255 / 20%);
  --shadowSupport: 0 20px 20px 0 rgb(132 144 255 / 30%);
  --pure-black: #000000;
  --icon-bg: rgba(144, 172, 209, 0.2);
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}
h1 {
  color: var(--heading);
  font-size: 6rem;
  font-weight: 600;
}
h3 {
  font-size: 1.8rem;
  font-weight: 400;
}
p {
  color: var(--para);
  line-height: 1.6;
  font-size: 1.7rem;
}
a {
  text-decoration: none;
  color: var(--pure-black);
}
li {
  list-style: none;
}
input, select, textarea{
  background-color: var(--bg);
}
input::-webkit-input-placeholder {
  font-size: 15px;
  line-height: 3;
}
.id{
  visibility: hidden;
  position: absolute;
  display:none;
}
/* ===========================================
Header Section Start
======================================= */

.header {
  padding: 0 4.8rem;
  height: 8rem;
  /* background-color: var(--pure-black); */
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pure-black);
  /* color: var(--white); */
}
.header .logo span {
  color: var(--main);
  font-weight: 800;
}
.header .logo .dot {
  font-weight: 1200;
}
.navbar-lists {
  display: flex;
  gap: 4rem;
}
.navbar-link:link,
.navbar-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  /* color: var(--white); */
  color: var(--pure-black);
  transition: color 0.3s linear;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
}
.navbar-link:hover,
.navbar-link:active {
  /* color:#19e68c; */
  color: var(--main);
  font-weight: 800;
}
.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
  border: none;
}
.mobile-nav-icon[name="close"] {
  display: none;
}

/* placeholder */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  /* color:    red; */
  font-size: 15px;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  /* color:    red; */
  font-size: 15px;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  /* color:    red; */
  font-size: 15px;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  /* color:    red; */
  font-size: 15px;
}

/* <!-- ======================================== 
          Our Main Hero Section Start  
    ========================================  --> */

.section-hero {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 600px;
}
/* .card-overlay {
        background: rgba(0, 0, 0, 0.4);
        height:600px;
    } */
.hero-heading {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  /* color:var(--overlay); */
  color: var(--pure-black);
  text-transform: uppercase;
  font-weight: 700;
}

.hero-heading-secondary {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  /* color:var(--white); */
  color: var(--pure-black);
  font-weight: 700;
}
.hero-form {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.search-box {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: 80px;
}
.search-box .hidden {
  visibility: hidden;
}

.hero-services {
  height: 50px;
  padding: 10px;
  width: 250px;
  /* border-top-left-radius: 25px;
  border-bottom-left-radius: 25px; */
}
.location-bar {
  height: 50px;
  padding: 10px;
  width: 400px;
}
.search-btn {
  height: 50px;
  /* border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-color:whitesmoke; */
  padding: 10px;
  width: 100px;
}

/* <!-- ======================================== 
Our reusable code section  
========================================  --> */

  .section {
  padding: 9rem 0;
  }
  .grid {
  display: grid;
  gap: 9rem;
  }
  .container {
  max-width: 130rem;
  margin: 0 auto;
  }
  .grid-one-column {
  grid-template-columns: 1fr;
  }
  .grid-two-column {
  grid-template-columns: repeat(2, 1fr);
  }
  .grid-three-column {
  grid-template-columns: repeat(3, 1fr);
  }
  .grid-four-column {
  grid-template-columns: repeat(4, 1fr);
  }
  .btn {
  background: var(--gradientSupport);
  border: none;
  padding: 1.6rem 3.2rem;
  color: var(--white);
  font-size: 1.8rem;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  }
  .btn:hover,
  .btn:active {
  /* box-shadow: 0 2rem 2rem 0 rgb(132 144 255 / 30%); */
  box-shadow: var(--shadowSupport);
  }

  .common-heading {
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: 6rem;
  text-transform: capitalize;
  position: relative;
  }
  .common-heading::before {
  content: "";
  position: absolute;
  top: 110%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--main);
  }
  .common-heading::after {
  content: "";
  position: absolute;
  top: 118%;
  left: 1.5rem;
  min-width: 20rem;
  height: 0.3rem;
  background-color: var(--main);
  }

/* <!-- ======================================== 
Our Hero Main Section Start  
========================================  --> */

.section-hero-main {
  background-color: var(--bg);
}
.section-hero-main-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-top-data {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--main);
}
.hero-main-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 4.4rem;
}
.hero-main-para {
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  max-width: 60rem;
}
.hero-main-img {
  max-width: 80%;
  margin-left: 15%;
  margin-right: 15%;
}

/* <!-- ======================================== 
          Our bio Section Start  
    ========================================  --> */

.bio-img {
  position: absolute;

  display: inline;
  justify-content: center;
  align-items: center;
}

.bio-img img {
  align-items: center;
  height: 100%;
  /* width: 80%;
  box-shadow: -1rem -1rem 0 0 var(--pure-black);
  display: inline-block; */
}

.section-bio-data .grid{
 gap:2rem;
}
.section-bio-data .common-heading{
  margin-bottom: 3rem;
  color:var(--white)
}
.section-bio-data{
  background-image: url("../images/image6.jpg");
}
.bio-data{
  background-color: rgba(255, 255, 255, 0.5);
  /* opacity: 0.5; */
  padding: 5rem;
}
.bio-data p{
  color: var(--white);
  font-weight: 500;
}

/* ======================================== 
    Our portfolio Section Start  
========================================   */
.banner{
  display: flex;
  flex-direction: row;
}
.dbanner{
  width: 100%;
}
.advert-form{
  position: absolute;
  display:flex;
  flex-direction: row;
}
.banner-preview .grid{
  gap:0rem;
}
.banner-preview h4{
  color:var(--bg);
  font-size: 2.5rem;
  background-color: #000000;
  font-weight: 400;
  text-align: center;
}

.banner-preview{
  margin-top: 1rem;
  background-color:var(--para-tint);
  text-transform: capitalize;
  background-color: var(--bg);
  border: 1px solid var(--pure-black);
  box-shadow: var(--shadow);
  align-items: center;
}
.previewing{
  display: grid;
  justify-content: center;
  align-items: center;
}
#bannerpreviewdiamond{
  width:90rem;
}
#bannerpreviewgold{
  width:90rem;
}
#bannerpreviewsilver{
  width:90rem;
}
.info .comp{
  font-size: 2.6rem;
  font-weight:800;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--pure-black);
  color: var(--white);
}
.info p{
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--pure-black);
  text-align: center;
}
.desc p{
  font-size: 1.5rem;
  color: var(--pure-black);
}


.desc pre{
font-size: 1.7rem;
}
#bannerpreviewsilver .info pre a:hover{
  color:purple;
}
#bannerpreviewsilver .info pre a{
  color:blue;
}
#bannerpreviewsilver .info pre{
  font-size: 1.4rem;
font-weight: 400;
}

.section-portfolio {
  background: var(--bg);
  transition: all 0.7s linear;
}


.p-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-top: 6.4rem;
  margin: 6.4rem 0;
}

/* ======================================== 
          Our Work Counter Section Start  
    ======================================== */

.section-work-data {
  background: var(--gradientSupport);
  text-align: center;
  transition: all 0.7s linear;
  color: var(--white);
}
.counter-numbers {
  font-size: 4.8rem;
}
.section-work-data p {
  color: var(--white);
  text-transform: capitalize;
}

/* <!-- ======================================== 
Our services Section Start  
========================================  --> */
/* <!-- ---------------------------------------------
  Advertise section
  ----------------------------------------------- --!> */
.section-advertise{
  margin-bottom:10rem;
  margin-top: -18rem;
}
.advertise{
  margin-top: 5rem;
}
.gap{
  gap:1;
  margin-top: 5rem;
}
.advert-heading{
      text-align: center;
      font-size: 3rem;
      font-weight: 300;
      color: var(--para);
      text-transform:uppercase;
    }
    .adverting{
      border: 1px solid black;
      align-items: center;
      text-align: center;
    }
    .pricing-heading{
      text-align: center;
      /* color:red; */
      font-size:2rem;
      padding:2rem;
      font-weight: 200;
    }
    .diamond .advert-heading{
      background-color: var(--main);
      color:var(--white);
      padding:1.5rem;
      box-shadow: var(--shadow);
      border-bottom:1px solid var(--main);
      font-size: 4rem;
    }
    .gold .advert-heading{
      background-color: rgba(0,0,0,.87);
      color:var(--white);
      font-size: 3.5rem;
      padding:1rem;
    }
    .silver .advert-heading{
      background-color: rgba(0,0,0,.87);
      color:var(--white);
      padding:1rem;
    }
    /* .bronze .advert-heading{
      background-color: rgba(0,0,0,.87);
      color:var(--white);
      padding:0.5rem;
    } */
    .diamond{
      box-shadow: var(--shadowSupport);
      height:45rem;
      width:40rem;
    }
    .gold{
      box-shadow: var(--shadowSupport);
      height:40rem;
      width:35rem;
    }
    .silver{
      box-shadow: var(--shadowSupport);
      height:35rem;
      width:30rem;
    }
    /* .bronze{
      box-shadow: var(--shadowSupport);
      height:30rem;
      width:25rem;
    } */
    .a{
      background-color: var(--bg);
    }
    .pricing-item{
      font-size: 1.5rem;
      padding:1rem;
      font-weight: 100;
    }
    .buy{
      background-color: var(--main);
      padding:10px;
      margin:auto;
      margin-top:2rem;
      display: block;
      width: 60%;
      font-size: 15px;
      border: 2px solid var(--main);
      color:var(--white);
      border-radius: 4px;
      cursor:pointer;
      box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
      color: #000;
      background-color: #fff;
      text-transform: uppercase;
    }
    .buy i{
      float: left;
      font-size: 15px;
      color:var(--white);
    }
    .buy:hover{
      background-color: var(--main);
      transition: all 0.3s ease 0s;
      box-shadow: var(--shadow);
      color:var(--white);
      transform: translateY(-7px);
      font-weight: 600;
      border:var(--pure-black) 2px solid;
  }
  

.section-services {
  transition: all 0.7s linear;
}
.section-services p {
  max-width: 60rem;
}
.section-services .grid {
  margin-top: 10rem;
  row-gap: 10rem;
}
.service-box {
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: 5px;
  padding: 6.4rem 3.4rem;
  transition: all 0.2s linear;
}

.service-box:hover,
.service-box:active {
  transform: translateY(-3rem);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--icon-bg);
  border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--heading);
  animation: water-wave 3s linear infinite;
}
.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  background: transparent;
  border: 1px solid var(--pure-black);
  animation: water-wave 3s linear infinite;
}

@keyframes water-wave {
  0% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }
  50% {
    border-radius: 3% 97% 15% 85% / 72% 0% 100% 28%;
  }
  100% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }
}

.service-box h3 {
  text-transform: capitalize;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

/* <!-- ======================================== 
          Our Swiper Section Start  
          ========================================  --> */

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 9rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-client-msg {
  padding: 5rem 8rem;
  background: var(--white);
  border-radius: 1rem;
  text-align: left;
  box-shadow: var(--shadow);
  position: relative;
}
.swiper-client-msg::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  border: 5rem solid var(--white);
  border-color: transparent;
  border-top-color: var(--helper-tint);
}
.swiper-client-data {
  align-items: center;
  margin-top: 3.2rem;
  gap: 3.2rem;
}
.swiper-slide img {
  max-width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 0.5rem solid var(--helper-tint);
}
.swiper-client-msg p::before {
  content: "\f10d";
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced3ff;
}
.swiper-client-msg p::after {
  content: "\f10e";
  position: absolute;
  bottom: 0;
  right: 4rem;
  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced3ff;
}
/* <!-- ======================================== 
          Our freelancing Section Start  
          ========================================  --> */

.section-freelancing {
  background-image: url("/images/image9.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  position: relative;
  transition: all 0.7s linear;
  text-align: center;
}
/* .section-freelancing .overlay{
      position: absolute;
      top:0; 
      left:0; 
      width: 100%;
      height:100%;
      background-color: var(--overlay);
      opacity: 0.7;
    } */
.section-freelancing .container {
  position: relative;
}

.section-freelancing h2 {
  font-size: 5.4rem;
}
.section-freelancing span {
  color: #a0f669;
}
.section-freelancing h2,
.section-freelancing p {
  color: var(--white);
  margin-bottom: 1.8rem;
}

/* <!-- ======================================== 
          Our Contact Us Section Start  
    ========================================  --> */

.section-contact-main {
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 9rem;
  transition: all 0.3s linear;
}
.section-contact-main .grid {
  gap: 3.2rem;
}
.section-contact-main form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.section-contact-main input,
.section-contact-main textarea {
  padding: 1.5rem 2rem;
  border: solid 0.1rem #c9c9c9;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: work sans-serif;
  width: 100%;
}
.section-contact-main input[type="submit"] {
  max-width: 30%;
  border: none;
}

/* <!-- ======================================== 
          Our Footer Section Start  
    ========================================  --> */

.section-footer {
  background: var(--heading);
  transition: all 0.7s linear;
}
.section-footer h3 {
  color: var(--white);
  margin-bottom: 4rem;
}
.f-about p {
  color: #adadad;
}
.f-links ul,
.f-services ul,
.f-address address {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  justify-content: center;
}
.f-links li,
.f-links a,
.f-services li,
.f-services a {
  font-size: 1.8rem;
  color: #adadad;
  text-transform: capitalize;
}
.f-links span,
.f-services span,
.f-address span {
  margin-right: 1rem;
}
.f-address p,
.f-address p a {
  font-style: normal;
  color: #adadad;
}
.f-social-icons {
  margin: 5rem 0;
  text-align: center;
  color: #adadad;
}
.f-social-icons .icons {
  width: 4rem;
  height: 4rem;
  background-color: var(--icon-bg);
  display: inline-block;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--heading);
  animation: water-wave 3s linear infinite;
  cursor: pointer;
}
.f-credits p {
  text-align: center;
  color: #adadad;
}
.section-footer a:hover,
.section-footer a:active {
  color: var(--white);
}

/* <!-- ======================================== 
          Our ScrollTop Section Start  
    ========================================  --> */
.scrollTop-style {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 1;
}
.scroll-top {
  width: 4rem;
  height: 4rem;
  background: var(--helper);
  display: inline-block;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--white);
  animation: water-wave 3s linear infinite;
  cursor: pointer;
}

/* <!-- ======================================== 
          Our Media Section Start  
    ========================================  --> */

/* 1500px */
/* px to em=px/16 */
@media (max-width: 95em) {
  .container {
    max-width: 130rem;
    padding: 0 3.2rem;
  }
}

/* 1200px */
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
  .container {
    max-width: 110rem;
  }
  .grid {
    gap: 4.8rem;
  }
  .section-portfolio .gap{
    gap: 0;
  }
   /* hero main section  */
   .section-hero-main .grid-two-column {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .section-hero-main-data {
    align-items: center;
  }
  .hero-main-para {
    text-align: center;
    margin-top: 2rem;
  }
  .section-hero-main img {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }
  .header .logo {
    width: 50%;
  }
}

/* 980px */
@media (max-width: 61em) {
  html {
    font-size: 50%;
  }
  .header {
    position: relative;
  }
  .hero-heading {
    line-height: 40px;
  }
  .mobile-navbar-btn {
    display: block;
    z-index: 9999;
    border: 3px solid var(--pure-black);
    color: var(--pure-black);
  }
  .mobile-nav-icon {
    width: 5rem;
    height: 5rem;
    color: var(--pure-black);
  }
  .navbar-lists li{
    padding: 3rem 45rem;
  }
  .navbar-lists li a{
  width: 30rem;
  }
  .header .logo {
    width: 80%;
  }

  .navbar {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    
    transform: translateX(100%);
    transition: all 0.5s linear;
    
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
  .navbar-lists {
    flex-direction: column;
    align-items: left;
    border-top: 2px solid var(--pure-black);
  }
  .navbar-lists li{
  border-bottom: 2px solid var(--pure-black);
  }
  .navbar .navbar-lists .navbar-link:link,
  .navbar .navbar-lists .navbar-link:visited {
    font-size: 4.2rem;
    color: var(--pure-black);
  }
  .active .navbar {
    transform: translateX(0%);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
  .active .mobile-navbar-btn .mobile-nav-icon[name="menu"] {
    display: none;
  }
  .active .mobile-navbar-btn .mobile-nav-icon[name="close"] {
    display: block;
  }
  .section-services .grid-three-column {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-services .grid {
    gap: 6rem;
  }
  .advertise{
    justify-content: center;
    align-self: center;
    display: flex;
    flex-direction: column;
  }
  .advertise .grid{
    margin-top: 5rem;
    align-items: center;
    margin-left: 25%;
  }
  .advertise .grid-three-column{
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 780px */
@media (max-width: 49em) {
  /* .container {
    max-width: 71rem;
  } */
  .header .logo {
    width: 80%;
  }
  .mobile-nav-icon {
    width: 3rem;
    height: 3rem;
  }
  .navbar-lists {
    flex-direction: column;
  }
  .navbar .navbar-lists .navbar-link:link,
  .navbar .navbar-lists .navbar-link:visited {
    font-size: 3.8rem;
  }
  .hero-form {
    width: 80%;
    left: 70px;
  }
  .hero-services {
    height: 50px;
    padding: 10px;
    width: 160px;
  }
  .location-bar {
    height: 50px;
    padding: 10px;
    width: 250px;
  }
  .search-btn {
    height: 50px;
    padding: 10px;
    width: 100px;
  }
  
  /* services section  */
  .section-services .grid-three-column {
    grid-template-columns: 1fr;
  }
  
  /* freelacing section  */
  .section-freelancing {
    background-image: url("/images/image9.jpg");
    background-repeat: no-repeat;
    background-size: 200%;
    background-attachment: fixed;
    position: relative;
    transition: all 0.7s linear;
    text-align: center;
  }
  
  /* portfolio section  */
  .section-portfolio .grid-three-column {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-portfolio .advertise{
    justify-content: center;
    align-items: center;
  }
  .banneru .gap{
    margin: 0rem 20rem;
  }
  .banner{
    display: flex;
    flex-direction: column; 
  }#bannerpreviewdiamond{
    width:298px;
  }
  #bannerpreviewgold{
    width:298px;
  }
  #bannerpreviewsilver{
    width:298px;
  }

  /* work data section  */
  .counter-numbers {
    font-size: 2.8rem;
  }
  
  /* footer section  */
  .section-footer .grid-four-column {
    grid-template-columns: 1fr 1fr;
  }
}

/*600px to 350px section */
@media (max-width: 37.5em) {
  
  
  /* common code section  */
  .container{
    max-width: 90rem;
  }
  .btn{
    font-size:2.8rem;
    font-weight: 500;
    padding: 1rem 2.2rem;
  }
  .header {
    padding: 0 3.2rem;
  }
  .header .logo{
    width: 80%;
    font-size: 3rem;
    font-style:bold;
  }
  .navbar .navbar-lists .navbar-link:link,
  .navbar .navbar-lists .navbar-link:visited {
    font-size: 4.2rem;
  }
  html {
    font-size: 35%;
  }
  html p {
    font-size: 2.8rem;
  }


  /* hero section  */
  .hero-heading-secondary {
    font-size: 2.8rem;
  }
  .hero-form {
    width: 65%;
    left: 70px;
  }
  .hero-heading{
    font-size: 4.5rem;
  }
  .hero-services {
    height: 40px;
    padding: 5px;
    width: 130px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .location-bar {
    height: 40px;
    padding: 5px;
    width: 170px;
  }
  .search-btn {
    height: 40px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 5px;
    width: 60px;
  }
  

  /* main hero section  */
  .hero-top-data {
    font-weight: 800;
    font-size: 3.5rem;  
  }

  /* Portfolio Section */
  .advertise h2{
    font-size: 3.2rem;
  }
  .advertise li{
    font-size: 2.2rem;
  }
  .previewing .dbanner .comp{
    font-size: 3.2rem;
  }
  .previewing .dbanner p, pre{
    font-size: 2rem;
  }

  /* biodata section  */
  .bio-stats h4 {
    margin-bottom: 1rem;
    font-size: 3rem;
  }


  /* services section  */
  .section-services p {
    max-width: 100rem;
  }


  /* work-data section  */
  .counter-numbers {
    font-size: 2.8rem;
  }
  .section-work-data .grid-four-column{
    grid-template-columns: repeat(2 , 1fr);
  }


  /* freelancing section  */
  .section-freelancing h2,
  .section-freelancing p {
    color: var(--para);
    margin-bottom: 1.8rem;
  }

  /* contact us section */
  .section-contact-main {
    max-width: 36rem;
  }
  .section-contact-main input::placeholder,
  .section-contact-main textarea::placeholder {
    font-size: 2rem;
  }
  .contact-container .grid-two-column{
    grid-template-columns: 1fr;
  }

  /* footer section  */
  .section-footer .f-about, 
  .section-footer .f-address{
    grid-column: 1/-1;
  }
  .section-footer h3 {
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }

  .f-links li,
  .f-links a,
  .f-services li,
  .f-services a {
    font-size: 2.2rem;
  }
}

/* 450 px */

@media (max-width: 28.5em) {
  .container{
    max-width: 70rem;
  }
  
  .hero-main-heading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
}
.advertise h2 {
  font-size: 2.2rem;
}
.advertise .grid{
  margin-top: 5rem;
  align-items: center;
  margin-left: 15%;
  margin-right: 15%;
}
}

/*<!-- ======================================== 
          Creating a Sticky Responsive Navbar Section Start  
    ========================================  --> */

.sticky .header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--bg);
  box-shadow: var(--shadow);
}
.sticky .section-hero-main {
  margin-top: 10rem;
}
/* Loading Overlay Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it is on top of all other elements */
}

.loading-spinner {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.matrix-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: 15px;

}


.matrix-item {

  border: none;

  padding: 10px;

  text-align: left;

  font-size: 1.5em; /* Increases text size */

  font-family: "Work Sans", sans-serif;

  white-space: pre-wrap; /* Preserves formatting as written */

}
