@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500;600;700&family=Poppins:wght@500;600;700;800&family=Rufina:wght@400;700&family=Work+Sans:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:...&display=swap");

  html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      width: 100vw;
      height: 100%;
      box-sizing: border-box;
    }
    *, *::before, *::after {
      box-sizing: inherit;
    }
    img, video, iframe {
      max-width: 100%;
      height: auto;
      display: block;
    }
    #root {
      max-width: 100vw;
      overflow-x: hidden;
    }
* {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
  }

}




:root {
  --heading: rgb(0 10 45);
  --para: #777777;
  --para-tint: #e4e4e4;
  --third: #fff;
  --helper: #8490ff;
  --helper-tint: #f3f4ff;
  --bg: rgb(249 249 255);
  --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
  --shadpw: 0px 0px 20px 0px rgb(132 144 255 / 20%);
}

/* spacing
desktop = 4.8rem */

html {
  font-size: 50%;
  font-family: "Work Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Rufina", serif;
  font-family: "Poppins", sans-serif;
}

h1 {
  color: var(--heading);
  font-size: 6rem;
  font-weight: 600;
}

p {
  color: var(--para);
  line-height: 1.6;
  font-size: 1.8rem;

  /* word-spacing: 0.1rem; */
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}



  .btn {
   background: -webkit-linear-gradient(
    0deg,
    rgb(132 144 255) 0%,
    rgb(98 189 252) 100%
  );

  padding: 1.6rem 3.2rem;
  border: none;
  color: rgb(255 255 255);
  display: inline-block;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.5rem;;

}


.btn:hover {
  box-shadow: 0px 20px 20px 0px rgb(132 144 255 / 30%);
  color: rgb(255 255 255);
}

.section {
  padding: 5rem 0;
}

.container {
  max-width: 100rem;
  margin: 0 auto;
}

.grid {
  display: grid;

  gap: 9rem;
}

.grid-two-col {
  grid-template-columns: repeat(2, 1fr);
}

.grid-three-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid-four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* ===========================================
Header Section Start
======================================= */





.header {
  width: 100%;
  padding: 1rem 2rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  height: 50px;
}

.navbar {
  display: flex;
  gap: 2rem;
}

.navbar-lists {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar-link:hover {
  color: #6c5ce7;
}

.active-link {
  color: #6c5ce7;
  font-weight: 700;
  border-bottom: 2px solid #6c5ce7;
}

.mobile-navbar-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 1rem 2rem;
  }

  .navbar.active {
    transform: translateX(0%);
  }

  .navbar-lists {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-navbar-btn {
    display: block;
    z-index: 1001;
  }
}








.header {
  padding: 0 4.8rem;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 100%;
  top: 0;
  z-index: 999;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);

}

/* Sticky class (on scroll) */
.header.sticky {
  position: sticky;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.header .logo {
  width: 20%;
  height: auto;
}

/* Navbar layout */
.navbar {
  display: flex;
  gap: 2rem;
  position: sticky;
}

/* Nav items */
.navbar-lists {
  display: flex;
  gap: 4.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav links */
.navbar-link:link,
.navbar-link:visited {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #212529;
  transition: all 0.3s;
  font-family: "Poppins", sans-serif;
}

.navbar-link:hover,
.navbar-link:active {
  color: #007bff; /* adjust as needed */
}

/* Mobile menu button */
.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
  border: none;
}

/* Menu icon size */
.mobile-nav-icon {
  width: 3rem;
  height: 3rem;
  color: #212529;
}

/* Responsive: Hide navbar by default on mobile */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 10rem;
    right: 0;
    background-color: #fff;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    display: flex;
  }

  .mobile-navbar-btn {
    display: block;
  }
}




/* ===========================================
Hero  Section Start
======================================= */



.section-hero {
  background: var(--bg);
}

.section-hero-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-top-data {
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 500;
  font-size: 3rem;
  color: var(--helper);
}

.hero-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 4.4rem;
}

.hero-para {
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  max-width: 60rem;
}

.section-hero-image {
 display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 65%;
  z-index: 1;
  box-shadow: 1.5rem 1.5rem 0rem 0rem var(--helper);
}

/* ===========================================
 Bio Data Section Start
======================================= */


.bio-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-image img {
  display: inline-block;
  width:100%;
  box-shadow: -2rem -2rem 0rem 0rem var(--helper);
}

.common-heading {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 6rem;
  text-transform: capitalize;
  position: relative;
}

.common-heading::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--helper);
}

.common-heading::after {
  content: "";
  position: absolute;
  top: 128%;
  left: 1.5rem;
  width: 30%;
  height: 0.3rem;
  background: var(--helper);
}

.bio-data-stats {
  padding: 4.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.bio-progress-bar {
  width: 90%;
  height: 0.8rem;
  /* background: var(--para); */
  background-color: rgb(233 236 239);
  border-radius: 10rem;
  position: relative;
  box-shadow: var(--shadpw);
  /* overflow: hidden; */
}

.bio-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: inherit;
  background: -webkit-linear-gradient(
    0deg,
    rgb(132 144 255) 0%,
    rgb(98 189 252) 100%
  );
  border-radius: 10rem;
}

/* to create the rectangle box  */
.bio-progress-bar span {
  position: absolute;
  top: 1.8rem;
  left: 76%;
  width: 5rem;
  height: 2rem;
  background: var(--helper);
  color: var(--third);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border: none;
  outline: none;
}

/* to create the traingle or caret symbol  */
.bio-progress-bar span::after {
  content: "";
  position: absolute;
  top: -1.6rem;
  width: 0rem;
  height: 0rem;
  border: 0.8rem solid var(--helper);
  border-color: transparent;
  border-bottom-color: var(--helper);
}
.bio-progress-2{
  width: 99%;
}
.bio-progress-3{
  width: 90%;
}
.bio-progress-4{
  width: 85%;
}
.bio-progress-5{
  width: 70%;
}
.bio-progress-bar span{
  left: 74%;
}
.bio-progress-2 span{
  left: 74%;
}
.bio-progress-3 span{
  left: 74%;
}
.bio-progress-4 span{
  left: 73%;
}
.bio-progress-5 span{
  left: 72%;
}
/* ===========================================
 portfolio Section Start
======================================= */


.section-portfolio {
  background-color: var(--bg);
}

.section-portfolio p,
.section-services p {
  max-width: 60rem;
}
.p-btns{
  margin: 2rem auto;
  text-align: center;;
  gap: 2rem;
}

.portfolio-images {
  gap: 3.2rem;
  margin-top: 6.4rem;
}

.img-ovelay {
  position: relative;
  overflow: hidden;
}

.portfolio-images img {
  width: 100%;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.img-ovelay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
    0deg,
    rgb(132 144 255) 0%,
    rgb(98 189 252) 100%
  );
  opacity: 0;
  color: var(--third);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: all 0.3s linear;
  border-radius: 7px;
  /* box-shadow: inset 0 0 0 0.5rem var(--helper-tint); */
}

.img-ovelay:hover > .overlay {
  opacity: 0.8;
  transform: translateY(0);
  cursor: pointer;
}

.img-ovelay .overlay .common-heading {
  margin: 0;
  color: var(--third);
  text-decoration: none;
}


.p-btn-active{
  transform: translateY(-1rem);

}
.portfolio-image-not-active{
  display: none;
}
/* ===========================================
work data Section Start
======================================= */
.section-work-data {
  background: -webkit-linear-gradient(
    0deg,
    rgb(132 144 255) 0%,
    rgb(98 189 252) 100%


  );

  color: var(--third);
  text-align: center;
}

.counter-numbers {
  font-size: 4.0rem;
  font-weight: 700;
}

.section-work-data p {
  color: var(--third);
  text-transform: capitalize;

}
/* =======================================
our services Section Start
======================================= */
.section-services p {
  max-width: 60rem;
}

.section-services .grid {
  margin-top: 10rem;
  row-gap: 10rem;

}

.service-box {
  text-align: center;
  box-shadow: var(--shadpw);
  border-radius: 5px;
  padding: 1.5rem 3.4rem;
  transition: all 0.2s linear;
}

.service-box:hover {
  transform: translateY(-3rem);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  background-color: rgb(144 172 209 / 20%);
  display: inline-block;
  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%);
  border: 1px solid rgba(11, 15, 20, 0.9);
  width: 90%;
  height: 90%;
  border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  background-color: transparent;
  animation: water-wave 5s linear infinite alternate;
}

@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-top: 3rem;
  margin-bottom: 1rem;
}


/* ===========================================
Testimonial Swiper Queries Section
======================================= */
/*
.section-testimonial {
  background-color: var(--bg);
} */

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 10rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */

  /* Center slide text vertically */
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -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;
  margin-bottom: 5rem;
  margin-left:1rem;
}

.swiper-client-msg {
  padding: 5rem 8rem;
  background-color: var(--third);
  border-radius: 10px;
  text-align: left;
  box-shadow: var(--shadpw);
  position: relative;
}

.swiper-client-msg::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  /* width: 5rem;
  height: 5rem; */
  border: 5rem solid var(--third);
  border-color: transparent;
  border-top-color: var(--third);
}

.swiper-client-msg p::before {
  content: "\f10d";
  display: inline-block;
  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 {
  /* display: inline-block */
  content: "\f10e";
  position: absolute;
  bottom: 0%;
  right: 5%;

  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced3ff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-client-data {
  align-items: center;
  justify-items: start;
  justify-content: start;
  gap: 1.4rem;
  margin-top: 3.2rem;
}

.swiper-client-data img {
  max-width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 0.5rem solid #ced3ff;
}

.swiper-client-data p:first-child {
  font-weight: bold;
  color: var(--heading);
}
/* ===========================================
freelancer  Section
======================================= */

.section-freelancer {
  background-image: url("../images/folio/3.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  transition: all 0.7s linear;
}

.section-freelancer .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e64ff;
  opacity: 0.7;
}

.section-freelancer .container {
  position: relative;
}

.section-freelancer h2 {
  font-size: 5.0rem;
  font-weight: 700;
}

.section-freelancer h2 span {
  color: #a0f669;
}

.section-freelancer h2,
.section-freelancer p {
  color: var(--third);
  margin-bottom: 1.8rem;
}
/* ===========================================
contact Section
======================================= */
.react-tel-input .form-control {
  width: 100% !important;
  height: 5.2rem !important;
  padding-left: 48px !important;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-family: inherit;
}

.react-tel-input .flag-dropdown {
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 0.5rem 0 0 0.5rem;
}

.react-tel-input .selected-flag {
  border-right: 1px solid #ccc;
  background-color: #fff !important;
}

small {
  color: red;
  font-size: 1.5rem;
  display: block;
  margin-top: 5px;
}






.section-contact-main {
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 10rem;
  transition: all 0.3s linear;
}

.section-contact-main form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.section-contact-main .grid {
  gap: 2.4rem;
}

.section-contact-main input,
textarea {
  padding: 1.5rem 2rem;
  border: 0.1rem solid #c9c9c9;
  border-radius: 5px;
  width: 100%;
  font-size: 1.6rem;
  font-family: "work sans";
}

.section-contact-main textarea {
  height: 15rem;
}

/* ::placeholder {
  font-size: 1.6rem;
  font-family: "work sans";
} */

.section-contact-main input[type="submit"] {
  border: none;
}
/* ===========================================
Footer Section
======================================= */
Footer Section
/* Base */
/* Base header */
/* Basic Navbar Styles */
.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-item {
  margin-right: 20px;
}

.navbar-link {
  text-decoration: none;
  color: #000;
  padding: 4px;
  font-size: 16px;
  position: relative;
  display: block;
}

/* Highlight Effect */
.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--helper); /* Blue line color */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Add the active class styles */
.nav-link.active::after {
  transform: scaleX(1);
}

/* Optional: Hover effect */
.navbar-link:hover {
  color:var(--helper);
}
.navbar-link:hover::after {
  transform: scaleX(1);
}



.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: white;
  position: relative;
  z-index: 999;
}

/* Logo */
.logo {
  height: 40px;
}

/* Nav links */
.navbar {
  display: flex;
  gap: 2rem;
}

.navbar-lists {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-link.active::after {
  transform: scaleX(1);
}

/* Toggle Button (hidden by default) */
.mobile-navbar-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    display: flex;
  }

  .navbar-lists {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-navbar-btn {
    display: block;
  }
}

.navbar.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 9999;
}







.contact-info p {
  font-size: 2.0rem; /* slightly larger, readable */
  margin: 0.5rem 0;  /* optional spacing between lines */
}



ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem; /* spacing between icon and text */
  margin-bottom: 0.5rem;
}

ul li .material-icons {
  font-size: 1.5rem; /* adjust icon size as needed */
  color: #333;
}

ul li a {
  text-decoration: none;
  color: inherit; /* or set a custom color */
  font-size: 1rem;
  transition: color 0.3s ease;
}

ul li a:hover {
  color: #007bff; /* or any hover color */
}

.section-footer {
  font-size: 1.1rem; /* Increase base font size */
}

.section-footer i {
  font-size: 2.0rem; /* Increase icon size */
  margin-right: 8px; /* Optional spacing */
}

.section-footer a {
  font-size: 1.8rem;
}

.f-social-icons i {
  font-size: 6.0rem;
}


.section-footer {
  background-color: #1b1b1b;
  color: #fff;
  padding: 4rem 2rem;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
}

.categories_item h2 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
}

.categories_item ul {
  list-style: none;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  display: flex;
  align-items: center;  /* Vertically center icon + text */
  gap: 0.5rem;           /* Space between icon and text */
  margin-bottom: 0.75rem;
}

.material-icons {
  font-size: 20px;       /* Adjust size if needed */
  line-height: 1;
}


.categories_item li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.1rem 0;
}

.f-address address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.f-social-icons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.f-social-icons .icons {
  font-size: 2.0rem;
  color: #ffffffcc;
  transition: color 0.3s ease;
}

.f-social-icons .icons:hover {
  color:var(--helper);
}
.section-footer {
  background-color: #111;
  color: white;
  padding: 3rem 1rem;
  font-family: Arial, sans-serif;
}

.container2 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.categories_item {
  flex: 1 1 200px;
}

h3 {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

ul li span {
  margin-right: 0.5rem;
  color:var(--helper);
}

a {
  color: #ddd;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.f-social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.f-social-icons .icons {
  font-size: 2.0rem;
  color:var(--helper);
  transition: transform 0.3s;
}
.fa-brands{
  font-size: 16px;
}

.f-social-icons .icons:hover {
  transform: scale(1.2);
}

.section-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.container2,
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.categories_item {
  flex: 1 1 200px;
}

.categories_item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.categories_item ul {
  list-style: none;
  padding: 0;
}

.categories_item li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.categories_item li span {
  margin-right: 0.5rem;
  color: var(--helper);
}

.categories_item a {
  color: #ccc;
  text-decoration: none;
}

.categories_item a:hover {
  color: var(--helper);
}

.f-social-icons {
  margin-top: 2rem;
  text-align: center;
}

.f-social-icons i {
  margin: 0 1rem;
  color: #ccc;
  font-size: 1.5rem;
}

.f-social-icons a:hover {
  color: var(--helper);
}

.f-credits {
  text-align: center;
  margin-top: 1rem;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .categories {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-social-icons {
    margin-top: 3rem;
  }
}

.section-footer {
  background: var(--heading);
  transition: all 0.7s linear;
}

.section-footer h3 {
  color: var(--third);
  margin-bottom: 4rem;
}

.f-about p {
  color: #adadad;
}

.f-links ul,
.f-services ul,
.f-address address {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  list-style: none;
}

.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 {
  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: rgb(144 172 209 / 20%);
  display: inline-block;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--heading);
  animation: water-wave 3s linear infinite;
  color: var(--third);
}

.f-credits p {
  text-align: center;
  color: #adadad;
}

footer a:hover {
  color: var(--third);
}

/*
===========================================
Scroll Button Section
======================================= */
.scrollTop-style {
  position: fixed;
  bottom: 1rem;
  right: 0.5rem;
  background-color: var( --third);
  color: white;
  padding: 0.4rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}

.scrollTop-style:hover {
  background-color: #555;
}

.scroll-top {
  font-size: 8px; /* smaller icon */
}

/* ===========================================
Media Queries Section
======================================= */



@media (max-width: 94em) {
  .container {
    max-width: 130rem;
  }
  .navbar-lists {
    gap: 3.4rem;
  }
}

/* for widht below 1200px  */
@media (max-width: 75em) {
  .container {
    max-width: 110rem;
  }
  .navbar-lists {
    gap: 3.4rem;
  }
}

/* media queries less then 980px */
@media (max-width: 980px) {
  /* to make all the container with same padding  */
  .container {
    padding: 0 3.2rem;
  }

  html {
    font-size: 56.25%;
  }

  /* when we are in 980px we need to show the menu open icon */
  .mobile-navbar-btn {
    display: block;
    /* background-color: #212529; */
    z-index: 99999;
    border: 3px solid #212529;
    color: #212529;
  }

  .header {
    position: relative;
  }

  .header .logo {
    width: 40%;
    /* height: 3.4rem; */
  }

  .navbar {
    width: 100%;
    height: 100vh;
    background:var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar-lists {
    flex-direction: column;
    align-items: center;
  }

  .navbar .navbar-lists .navbar-link:link,
  .navbar .navbar-lists .navbar-link:visited {
    color: #212529;
    font-size: 3.2rem;
  }

  .active .navbar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 9999;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    display: block;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
    display: none;
  }

  /* hero section  */

  .section-hero h1 {
    line-height: 1.05;
  }

  /* section bidoata  */
  .section-biodata .grid {
    gap: 3rem;
  }

  /* section work  */
  .section-work-data .common-numbers {
    font-size: 3.2rem;
  }

  /* services section  */

  .section-services .grid {
    gap: 6rem;
  }

  .section-services .grid-three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* resume section  */
  .section-resume .grid-two-col {
    grid-template-columns: 1fr;
  }

  .section-resume .grid-two-col img {
    width: 50%;
  }
  .resume-img {
    grid-row: 2;
    transform: translateY(-2rem);
  }

  /* testimonial section  */
  .section-testimonial .grid-three-col {
    grid-template-columns: 2fr;
  }

  .section-footer .grid-four-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Below 780px  */
@media (max-width: 780px) {
  .container {
    max-width: 720px;
  }
  /* hero section  */
  .section-hero .grid-two-col {
    grid-template-columns: 1fr;
  }

  .section-hero-data {
    align-items: center;
  }



  .hero-heading {
    text-align: center;
  }
  .hero-para {
    text-align: center;
    margin-top: 2rem;
  }

  .section-hero img {
    width: 70%;
  }

  /* work section  */
  .section-portfolio .grid-three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .categories_item {
    flex: 1 0 100%;  /* Stack items vertically */
  }
}


/* Below 560px  */
@media (max-width: 35em) {
  .header {
    padding: 0 3.2rem;
  }

  .header .logo {
    width: 60%;
  }

  /* secion .bio-data */

  .section-biodata .grid-two-col {
    grid-template-columns: 1fr;
  }

  .section-biodata .bio-image {
    grid-row: 2;
    margin-top: 3.2rem;
  }

  /* work section  */
  .section-work-data .grid-four-col {
    grid-template-columns: 1fr 1fr;
  }

  /* services section  */
  .section-services .grid-three-col {
    grid-template-columns: 1fr;
  }

}
/* ===========================================
scroll Section start
======================================= */

/* === Scroll To Top Button === */
.scrollTop-style {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #6c5ce7;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.scrollTop-style:hover {
  background-color: #5e54c7;
}

.scroll-top {
  font-size: 1.8rem;
}






.scrolTop-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;
  color: var(--heading);
  position: relative;
  cursor: pointer;
animation: water-wave 3s linear infinite;

}

/*----Footer Section-----*/
.container2 {
  width: 100%;
}

.content {
  width: 94%;
  margin: 0px auto;
  padding: 30px;
}

.categories {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;                /* NEW */
}

.categories_item a {
  color: white;
}

.categories_item {
  flex: 1 0 20%;                 /* NEW */
  margin: 5px;
}
.portfolio-btn {
  border: none;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Optional tweaks for mobile spacing */
.section-testimonial {
  padding: 2rem 1rem;
}

.swiper-client-msg p {
  font-size: 1.7rem;
  line-height: 1.5;
}

.client-data-details p:first-child {
  font-weight: bold;
}

.client-data-details p:last-child {
  font-size: 1.7rem;
  color: #666;
}


.btn-apply {
  display: inline-block;
  margin-top: 1rem;
  background-color: #4f46e5;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-apply:hover {
  background-color: #3730a3;
}


.grid-three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
