.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--btn-darker);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: var(--black);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 85px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
} 




.offer-badge {
  position: fixed;
  top: 50%;
  right: -110px;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--btn-dark);
  color: #fff;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
}


.offer-badge:hover {
  right: -90px;
  background: var(--primary);
}


@media (max-width: 1024px) {
  .offer-badge {
    display: none;
  }
}

/* ------------------------------------------ header -------------------------------------------------- */


.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  z-index: 100;
  top: 100%;
  left: 0;
  text-align: start;
}

/* Dropdown items */
.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content li a:hover {
  background: var(--btn-dark);
  color: #fff;
}

/* 🔥 Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}



/* 🧠 Responsive tweak */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-content li a {
    color: #fff;
    padding-left: 30px;
  }
}

/* -------------------------------- mobile drop down ------------------------------- */


.has-dropdown {
  position: relative;
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  /* gap: 10px; */
  padding-left: 20px;
  margin-top: 8px;
}

.mobile-dropdown li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.95rem;
  transition: color 0.3s ease;
}

.mobile-dropdown li a:hover {
  color: var(--btn-dark);
}

.mobile-dropdown.show {
  display: flex;
}





/*-------------------------------------------------intor--------------------------------------------------------*/


.intro {
  margin-bottom: 5rem;
  /* 80px */
  background: var(--bg-pirmary);
  border-radius: 0 0 4.375rem 4.375rem;
  /* 0 0 70px 70px */
}


.portfolio-hero {
  margin: 0 1rem;
  /* 16px */
  height: 95dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: elevencoders Sans SemiBold, sans-serif;
  line-height: 8.125rem;
  /* 130px */
  font-size: 7.5rem;
  /* 120px */
  text-align: center;
}

.portfolio-punch {
  font-family: elevencoders Sans SemiBold, sans-serif;
  margin: 0 1rem;
  /* 16px */
  height: 95dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 7.5rem;
  /* 120px */
  text-align: center;
  line-height: 9.375rem;
  /* 150px */
}

.line-wrapper {
  overflow: hidden;
}

.line {
  overflow: hidden;
}

.impor {
  color: var(--primary);
}

.hero-txt-p {
  font-family: elevencoders Medium, sans-serif;
  transform-style: preserve-3d;
  perspective: 1000px;
  font-size: 1.5rem;
  /* 24px */
}

/* -------------------------------------------------main banner---------------------------------------------- */

.hero-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 🖼️ Background Image + Gradient Blend */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../img/main-back.jpg") center center/cover no-repeat;
  background-attachment: fixed;
}

/* ✨ Optional animated gradient overlay (subtle movement) */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  z-index: 1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 🧠 Content Styling */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #facc15, #f97316, #ef4444);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* 🧩 Buttons */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--egg-white);
}

.btn-primary:hover {
  background: var(--egg-white);
  color: var(--black);
}

.btn-secondary {
  color: var(--primary);
  background-color: var(--white);
}


.btn-secondary:hover {
  color: var(--primary);
  background-color: var(--white);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-btns {
    /* flex-direction: column; */
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 12px;
  }
}



/* -----------------------------------------------service ---------------------------------------------------- */


.service-wrapper {
  background-image: url("../../img/service-logo.webp");
  background-repeat: no-repeat;
  background-position: center top;
  padding: 60px 9%;
  text-align: center;
  color: #fff;
  margin-top: 200px;

}



.service-grid {
  padding: 80px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* 🔴 Service Card */

.service-card {
  background-color: var(--egg-white);
  border-radius: 15px;
  border: solid;
  border-color: var(--highlihgt);
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}



.service-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
}

.service-content {
  position: relative;
  z-index: 2;
  color: #000000;
  text-align: left;
  padding: 25px;
}

.service-content img {
  width: 100px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  font-family: elevencoders Sans Medium, sans-serif;
  font-size: 15px;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.btn-read {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-family: elevencoders Sans SemiBold;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-read:hover {
  background: var(--primary);
  color: var(--white);
}

/* 🌐 Responsive Layout */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content h3 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {


  .service-wrapper {
    background-size: 320px auto;
    /* 🔹 make image smaller */
    background-position: center top 30px;
    /* adjust spacing if needed */
    padding: 40px 5%;
    /* less padding for mobile */
    margin-top: 50px;
    /* reduce top margin */
  }


  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 300px;
  }

  .service-content img {
    width: 60px;
  }
}


/*-------------------------------------------------hero--------------------------------------------------------*/

.customer-reviews {
  position: relative;
  z-index: 2;
  margin: 0 1rem;
  /* 16px */
  height: 95dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-pirmary);
  border-radius: 0 0 4.375rem 4.375rem;
  /* 0 0 70px 70px */
}

.fall-box-wrapper {
  justify-content: center;
  align-items: center;
  position: absolute;
  display: flex;
  bottom: 1rem;
  /* 16px */
  z-index: 1;
}

.fall-box span {
  font-family: elevencoders Sans Medium, sans-serif;
  border-radius: 1.5625rem;
  /* 25px */
  padding: 0.875rem 1.5rem;
  /* 14px 24px */
  font-size: 1.375rem;
  /* 22px */
  cursor: grab;
}

.fall-box.-v1 span {
  color: var(--white);
  background: var(--primary);
}

.fall-box.-v2 span {
  background: #ffc29f;
}

.fall-box.-v3 span {
  background: var(--primary-light);
}

.fall-box.-v4 span {
  background: #dbefe8;
}

.fall-box.-v5 span {
  background: #a7ff9f;
}

.fall-box.-v6 span {
  background: #eaeaea;
}

.fall-box.-v7 span {
  background: #df020237;
}

.fall-box.-v8 span {
  background: #ffea9f;
}


.hero-txt-h1 {
  font-family: elevencoders Sans SemiBold, sans-serif;
  transform-style: preserve-3d;
  perspective: 1000px;
  font-size: 7.5rem;
  /* 120px */
}

.hero-txt-p {
  font-family: elevencoders Sans Medium, sans-serif;
  transform-style: preserve-3d;
  perspective: 1000px;
  font-size: 1.5rem;
  /* 24px */
}

.trust-wrapper {
  display: flex;
  margin-top: 3rem;
  /* 48px */
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.trust-img {
  max-width: 100%;
  display: block;
}

.clients-slider {
  gap: 2rem;
  /* 32px */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 12.5rem;
  /* 200px */
  aspect-ratio: 3/1;
  object-fit: contain;
}

.slick-arrow {
  display: none !important;
}

/*-------------------------------------------------select-tabs--------------------------------------------------------*/

.select-tabs {
  padding-top: 5rem;
  background: var(--bg-pirmary);
  border-radius: 0 0 4.375rem 4.375rem;
}

.tab-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* 16px */
}

.btn-tabs {
  font-family: elevencoders Sans Medium, sans-serif;
  padding: 0.875rem 1.5rem;
  /* 14px 24px */
  font-size: 1.375rem;
  /* 22px */
  padding: 0.5em 1em;
  background: var(--primary);
  color: var(--bg-pirmary);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 1.5625rem;
  /* 25px */
  border: none;
}

.layer-one {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--btn-dark);
  border-radius: 1.5625rem;
  /* 25px */
  z-index: -1;
}

.layer-two {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--btn-darker);
  border-radius: 1.5625rem;
  /* 25px */
  z-index: -1;
}

.tab-head {
  height: 3rem;
  background-image: url("../../img/portfolio-head.png");
  background-repeat: no-repeat;
  background-position: center top;
  /* background-size: contain; */
  font-size: 5rem;
  /* 80px */
  font-weight: 600;
  text-align: center;
  padding: 5rem 0;
  /* 80px 0 */
  font-family: elevencoders Sans Medium, sans-serif;
}

.animated-porfolio-wrapper {
  background: var(--black-light);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
}

/*-------------------------------------------------case-studies--------------------------------------------------------*/



.case-studies {
  max-width: 100%;
  padding: 3% 9%;
}

.case-studies .grid-layout {
  margin-left: -3.375em;
  margin-right: -3.375em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4.375em 0 0;
}

.grid-layout .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-layout .img-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.img-reveal {
  overflow: hidden;
  background: var(--secondary);
}

.case-study-img {
  will-change: transform;
  transform: scale(1.25);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.case-studies__card-wrapper {
  padding: 0 3.375em;
}

.case-studies__card-wrapper:nth-child(even) {
  margin: 5em 0 0;
}

.case-studies__card-wrapper--card-content {
  font-family: elevencoders Sans SemiBold, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.625em 0 0 0;
}

.anchor-wrapper {
  display: flex;
}

.case-studies__card-wrapper--card-content .generic--head__subhead {
  font-size: 1.25em;
  text-transform: capitalize;
}

p.s-font {
  font-size: 1.125em;
}

.fw-500 {
  font-weight: 500;
}

.arrow-anchor {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
}

.arrow-anchor.black-col span {
  color: var(--black);
  /* transition: .25s; */
}

.arrow-anchor span {
  color: #000;
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0.75em 0 0;
}

.grid-layout .img-wrapper {
  /* transition: .5s; */
  overflow: hidden;
}

.arrow-anchor .img-wrapper {
  width: 3em;
  height: 3em;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--primary);
  /* transition: .4s; */
}

.arrow-anchor .img-wrapper svg {
  width: 1em;
  transform: rotate(0);
  /* transition: .4s; */
}

.tab-content {
  display: none !important;
}

.active {
  display: grid !important;
}

/*-------------------------------------------------testimonials--------------------------------------------------------*/

.testimonials {
  margin: 0 1rem;
}

.tes-txt-wrapper {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 3.125rem;
  padding: 5rem 3.75rem;
  /* background: var(--egg-white); */
}

.tes-txt-wrapper img {
  width: 9.375rem;
}

svg.svg-convert.svg-converted {
  fill: #fff;
}

/* -----------------------------------faq css ----------------------------------- */



.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  /* background: #fff; */
  padding: 50px;
  border-radius: 20px;
  /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08); */
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

/* Accordion styling */
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 1.05rem;
  color: #333;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--btn-dark);
  color: #fff;
}

.accordion-body {
  background-color: #fff;
  padding: 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}






/*-------------------------------------------------cta--------------------------------------------------------*/


.cta {
  margin: 0 1rem;
  border-radius: 4.375rem;
  background: var(--bg-pirmary);
  overflow: hidden;
  padding: 5rem 0;
  margin-top: 50px;
  margin-bottom: 50px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Image */
.cta-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 2rem;
  object-fit: cover;
}

/* Right Text */
.cta-txt-wrapper {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 31.25rem;
  color: #000;
}

.cta-head-txt {
  font-family: elevencoders Sans SemiBold, sans-serif;
  font-size: 3.375rem;
  line-height: 1.2;
}

.cta-long-txt {
  font-family: elevencoders Sans Medium, sans-serif;
  font-size: 1.25rem;
  line-height: 1.8rem;
  opacity: 0.9;
}

.btn-cta {
  font-family: elevencoders Sans Medium, sans-serif;
  background: var(--primary);
  color: var(--white);
  border-radius: 4.375rem;
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #000;
  color: #fff;
}

.highlight {
  padding: 0 0.3rem;
  border-radius: 4.375rem;
  background: var(--highlihgt);
}

/* 🌐 Responsive */
@media (max-width: 992px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-txt-wrapper {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 0 10px;
  }

  .cta-txt-wrapper p {
    padding: 0;
    margin: 0 auto;
    font-size: 16px;
    line-height: 30px;
  }

  .cta-image img {
    max-width: 350px;
  }
}




/* -------------------------------------------------footer css ---------------------------------------------------------- */

.main-footer {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 100px 60px 100px 60px;
  background-color: var(--highlihgt);
}

.footer-about h4 {
  font-size: 30px;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.5;
  font-family: elevencoders Sans Medium;
}

.quick-links h4 {
  font-size: 27px;
  padding-bottom: 10px;
  font-family: elevencoders Sans SemiBold;
}

.footer-quick-link li {
  list-style: none;
  font-size: 20px;
  cursor: pointer;
}


.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social h4 {
  font-size: 30px;
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
}

.footer-social i {
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  transition: color 0.3s ease;
}



.footer-contact h4 {
  font-size: 27px;
  font-family: elevencoders Sans SemiBold;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-top: 10px;
  font-family: elevencoders Sans Medium;
}

.footer-contact i {
  font-size: 20px;
  color: var(--black);
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  background-color: var(--highlihgt);
  position: relative;
  text-align: center;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1400px);
  height: 1px;
  background-color: var(--black);
}

.footer-bottom p {
  font-size: 16px;
  margin: 0;
  color: var(--black);
}




/* ----------------------------------------------- footer end ---------------------------------------------------- */



/* ----------------------------------------------- about page css ------------------------------------------------- */

.about-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 🖼️ Background image with dark overlay */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../img/main-back.jpg") center center/cover no-repeat;
  background-attachment: fixed;
}

/* 🌈 Animated gradient overlay (SAME as hero-banner) */
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(79, 70, 229, 0.2),
      rgba(147, 51, 234, 0.2),
      rgba(236, 72, 153, 0.2));
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  z-index: 1;
}

/* Text content */
.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.about-content h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content h1 span {
  background: linear-gradient(90deg, #facc15, #f97316, #ef4444);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-banner {
    width: 100%;
    height: 50vh;
  }

  .about-content h1 {
    font-size: 44px;
  }
}


.team-section {
  padding: 80px 9%;
  text-align: center;
  background: #f9fafb;
  color: #111;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.team-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  padding-bottom: 1.5rem;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.team-name {
  margin-top: 0.3rem;
  font-size: 1rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header h2 {
    font-size: 40px;
  }

  .team-header p {
    font-size: 20px;
  }

  .team-card h3 {
    font-size: 20px;
  }

  .team-name {
    font-size: 20px;
  }

}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}






/* ----------------------------------------------- about page end ------------------------------------------------- */




/* ------------------------------------------------- contact page css --------------------------------------------- */

.contact-section {
  position: relative;
  background-color: var(--egg-white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  color: #000000;
  overflow: hidden;
}

/* ✨ Animated Gradient Border */
.contact-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  /* ✅ Border thickness */
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: borderFlow 4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}



@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* Overlay removed */
.contact-overlay {
  display: none;
}

/* 🪟 Contact Form Container */
.contact-container {
  position: relative;
  max-width: 850px;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Form Fields */
.contact-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 0 20px 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  outline: none;
  font-size: 1rem;
  width: 100%;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.contact-form textarea {
  width: 100%;
  margin-top: 20px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777777;
  /* ✅ Dark gray placeholder */
}

/* Submit Button */
.btn-send {
  margin-top: 25px;
  width: 100%;
  background: var(--btn-dark);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 200% auto;
}

.btn-send:hover {
  background-position: right center;
  transform: translateY(-3px);
}

.map-wrapper {
  background: #f8f8f8;
  padding: 60px 20px;
}

.map-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-box i {
  font-size: 24px;
  color: var(--primary, #007bff);
  margin-right: 15px;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #222;
}

.info-text a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--primary, #007bff);
}

.info-text p {
  color: #555;
  font-size: 0.95rem;
}

/* Map Area */
.right-map {
  flex: 1 1 600px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-form .form-group {
    flex-direction: column;
  }

  .map-content {
    flex-direction: column;
  }

  .right-map {
    height: 300px;
  }
}












/* -------------------------------- */




@media (max-width: 1440px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 12px;
  }

  .main-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}



/* 🌐 RESPONSIVE DESIGN UPDATES */

/* ---------- Tablets (max-width: 992px) ---------- */
@media (max-width: 992px) {
  html {
    font-size: 12px;
  }

  .portfolio-hero,
  .portfolio-punch {
    font-size: 4rem;
    line-height: 5rem;
    height: auto;
    padding: 4rem 1rem;
  }

  .hero-txt-h1 {
    font-size: 4rem;
  }

  .customer-reviews {
    height: auto;
    padding: 4rem 1rem;
  }

  .clients-slider {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .client-logo img {
    width: 9rem;
  }

  .case-studies .grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 2rem 0;
  }

  .case-studies__card-wrapper {
    padding: 0;
  }

  .cta-txt-wrapper {
    padding: 10rem 2rem;
    align-items: center;
    text-align: center;
  }

  .faq-head-txt {
    font-size: 4rem;
    line-height: 5rem;
  }

  .faq-box-inner {
    padding: 2rem;
  }

  .faq-head {
    font-size: 1.75rem;
  }

  .faq-body {
    font-size: 1.25rem;
  }
}

/* ---------- Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }

  /* Hero Section */
  .portfolio-hero,
  .portfolio-punch {
    font-size: 3rem;
    line-height: 4rem;
    padding: 3rem 1rem;
  }

  .hero-txt-h1 {
    font-size: 3rem;
  }

  .hero-txt-p {
    font-size: 1.2rem;
    text-align: center;
  }

  /* Customer Reviews */
  .customer-reviews {
    padding: 3rem 1rem;
    height: auto;
    border-radius: 0 0 2rem 2rem;
  }

  .trust-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .clients-slider {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .client-logo img {
    width: 8rem;
  }

  .fall-box-wrapper {
    flex-wrap: wrap;
    bottom: 0;
  }

  .fall-box span {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  /* Tabs */



  .tab-wrapper {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .btn-tabs {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .tab-head {
    background-size: 320px auto;
    background-position: center top 30px;
    padding: 40px 5%;
    margin-top: 50px;

  }

  /* Case Studies (1 by 1 grid) */
  .case-studies .grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .case-studies__card-wrapper {
    margin-bottom: 3rem;
    padding: 0;
  }

  .case-studies__card-wrapper:nth-child(even) {
    margin-top: 0;
  }

  .case-studies__card-wrapper--card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .arrow-anchor span {
    font-size: 1rem;
  }

  .arrow-anchor .img-wrapper {
    width: 2.5em;
    height: 2.5em;
  }

  /* Testimonials */
  .tes-txt-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .tes-txt-wrapper img {
    width: 7rem;
    margin-bottom: 1rem;
  }

  /* CTA */
  .cta-txt-wrapper {
    padding: 8rem 2rem;
    align-items: center;
    text-align: center;
  }

  .cta-head-txt {
    font-size: 2.5rem;
  }

  .cta-long-txt {
    font-size: 1.2rem;
  }

  /* FAQ */
  .faq-head-txt {
    font-size: 3rem;
  }

  .faq-head {
    font-size: 1.5rem;
  }

  .faq-body {
    font-size: 1.1rem;
    margin-left: 0;
  }

  .faq-box-inner {
    padding: 2rem 1rem;
  }

  .main-footer {
    flex-direction: column;

    text-align: start;
    gap: 20px;
    padding: 30px 20px;
  }

  .highlight {
    font-size: 36px;
  }


}

/* ---------- Small Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {
  html {
    font-size: 9px;
  }

  .portfolio-hero,
  .portfolio-punch {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .hero-txt-p {
    font-size: 1rem;
  }

  .case-studies .grid-layout {
    gap: 1.5rem;
  }

  .arrow-anchor span {
    font-size: 0.9rem;
  }

  .cta-head-txt {
    font-size: 2rem;
  }

  .cta-long-txt {
    font-size: 16px;
  }

  .faq-head-txt {
    font-size: 2.5rem;


  }
}