* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  height: 100%;
  background-color: #0a0a14;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}

.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: linear-gradient(rgba(30, 30, 50, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 50, 0.3) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: -2;
}

.light-effect {
  position: fixed;
  top: -200px;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(64, 80, 255, 0.2) 0%,
    rgba(64, 80, 255, 0) 70%
  );
  z-index: -1;
  opacity: 0.7;
  transform: rotate(-30deg);
}

main {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 95px;
}

.mobilenav {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 8rem;
}

.mobilenav .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
}

.mobilenav .logo .wrongbars {
  font-size: 2.4rem;
  cursor: pointer;
}

.mobilenav .mobilesubnav {
  width: 100%;
  color: white;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobilenav .mobilesubnav .ul a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.mobilenav .mobilesubnav .ul {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header Styles */
header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 120px;
  max-width: 1200px;
  border: 1px solid white;
  border-radius: 50px;
  margin: auto;
  margin-top: 20px;
}

header .bars {
  display: none;
  font-size: 1.6rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-square {
  width: 90px;
  height: 90px;
  background-image: url("./images/designs & logo's/brandingjester_logo.png");
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-weight: 600;
}

.logo-text span:last-child {
  font-weight: 400;
  font-size: 0.9em;
}

nav {
  padding: 14px 50px;
  border-radius: 15px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

nav a:hover,
nav a.active {
  opacity: 1;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary {
  color: black;
  background-color: #ffd700;
}

.btn-primary:hover {
  background-color: #4f46e5;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Main Content */
.container {
  width: 100%;
  height: 100%;
  --color: rgba(56, 56, 56, 0.3);
  background-color: #191a1a;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    );
  background-size: 335px 335px;
  mix-blend-mode: screen;
  backdrop-filter: blur(50px);
}

.beta-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 40px;
  backdrop-filter: blur(5px);
}

.sparkle {
  font-size: 1.1rem;
}

.hero {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/* changes */

.hero h2 {
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 10px;
}
.hero .highlight,
.static-text,
h2 {
  display: inline-block;
  transition: all 0.5s ease;
}
.hero .static-text {
  color: #ffd700;
  -webkit-text-stroke: 1px black;

  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
.animate-out-up {
  opacity: 0;
  transform: translateY(-50px);
}
.animate-out-down {
  opacity: 0;
  transform: translateY(50px);
}
.animate-in-up {
  opacity: 1;
  transform: translateY(0);
}
.animate-in-down {
  opacity: 1;
  transform: translateY(0);
}

/* changes end */

h1 {
  margin-top: 0px;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.cta-section svg {
  transform: rotateZ(-38deg);
}

.btn-get-started {
  background-color: #1f1f1f;
  color: rgb(227, 227, 227);
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s;
}

.btn-get-started:hover {
  background-color: #4f46e5;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #190a1c;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar1 {
  background-image: url("./images/designs & logo's/company logos/logo6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.avatar2 {
  background-image: url("./images/designs & logo's/company logos/logo7.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
.avatar3 {
  background-image: url("./images/designs & logo's/company logos/logo8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 7;
}

.trust-indicator p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  margin-bottom: 0;
  line-height: 1.4;
}

.hero .paragraph {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0px 0 0px;
}

.hero .paragraph p {
  font-size: 1.35rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
}

/* Highlight styles for important words */
.hero .paragraph p .highlight {
  position: relative;
  display: inline-block;
  color: #ffd700;
  font-weight: 600;
  z-index: 1;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.hero .paragraph p .highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 215, 0, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
}

.hero .paragraph p .highlight:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.hero .paragraph p .highlight:hover::before {
  background: rgba(255, 215, 0, 0.25);
  transform: skewX(-15deg) scale(1.05);
}

/* Special highlight for years of experience */
.hero .paragraph p .highlight-years {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  z-index: 1;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.hero .paragraph p .highlight-years::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.3),
    rgba(168, 85, 247, 0.3)
  );
  z-index: -1;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
}

.hero .paragraph p .highlight-years::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hero .paragraph p .highlight-years:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero .paragraph p .highlight-years:hover::before {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.4),
    rgba(168, 85, 247, 0.4)
  );
  transform: skewX(-15deg) scale(1.05);
}

.hero .paragraph p .highlight-years:hover::after {
  transform: scaleX(1);
}

/* Glowing effect for important words */
@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
}

/* ///////////////hero page end\\\\\\\\\\\\\\\\\\\\\\\ */

.logo_scroll_block {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.logo_scroll_block .clients {
  font-family: "Jost";
  letter-spacing: 2px;
  text-align: center;
  color: white;
  position: relative;
  display: inline-block;
}

.logo_scroll {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: logoScroll 20s linear infinite;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-130px * 8 - 60px * 8));
  }
}

/* Add gradient fade effect on sides */
.logo_scroll_block::before,
.logo_scroll_block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo_scroll_block::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 20, 1),
    rgba(10, 10, 20, 0)
  );
}

.logo_scroll_block::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(10, 10, 20, 1),
    rgba(10, 10, 20, 0)
  );
}

.logo_scroll .logos {
  height: 90px;
  width: 130px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.logo_scroll .logos:hover {
  transform: scale(1.1);
  z-index: 1;
}

.logo_scroll .logo1 {
  background-image: url("./images/designs & logo's/company logos/logo1.png");
}
.logo_scroll .logo2 {
  background-image: url("./images/designs & logo's/company logos/logo2.png");
}
.logo_scroll .logo3 {
  background-image: url("./images/designs & logo's/company logos/logo3.png");
}
.logo_scroll .logo4 {
  background-image: url("./images/designs & logo's/company logos/logo4.png");
}
.logo_scroll .logo5 {
  background-image: url("./images/designs & logo's/company logos/logo5.png");
}
.logo_scroll .logo6 {
  background-image: url("./images/designs & logo's/company logos/logo6.png");
}
.logo_scroll .logo7 {
  background-image: url("./images/designs & logo's/company logos/logo7.png");
}
.logo_scroll .logo8 {
  background-image: url("./images/designs & logo's/company logos/logo8.png");
}
.logo_scroll .logo9 {
  background-image: url("./images/designs & logo's/company logos/logo9.png");
}
.logo_scroll .logo10 {
  background-image: url("./images/designs & logo's/company logos/logo10.png");
}
.logo_scroll .logo11 {
  background-image: url("./images/designs & logo's/company logos/logo11.png");
}
.logo_scroll .logo12 {
  background-image: url("./images/designs & logo's/company logos/logo12.png");
}
.logo_scroll .logo13 {
  background-image: url("./images/designs & logo's/company logos/logo13.png");
}
.logo_scroll .logo14 {
  background-image: url("./images/designs & logo's/company logos/logo14.png");
}
.logo_scroll .logo15 {
  background-image: url("./images/designs & logo's/company logos/logo15.png");
}
.logo_scroll .logo16 {
  background-image: url("./images/designs & logo's/company logos/logo16.jpg");
}

/* ///////////////////////////updatedservice\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.services-container {
  width: 100%;
  padding: 2rem 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-box {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  border: 2px solid white;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.includes {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
}

.includes h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.features-list li i {
  color: #fff;
  font-size: 0.9rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-more {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: #8b5cf6;
  transform: translateX(5px);
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(3px);
}

.dot-container {
  display: flex;
  gap: 0.3rem;
}

.single-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-box:hover .single-dot {
  background: #6366f1;
}

@media (max-width: 1280px) {
  .service-list {
    gap: 1.5rem;
  }

  .service-box {
    min-width: 280px;
  }
}

@media (max-width: 980px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    max-width: 100%;
    width: 100%;
  }
}

/* //////////////////////////////updatedserviceend\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.service {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 50px;
  margin-bottom: 50px;
}

.service .headblock .head {
  font-size: 3.5rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  color: white;
  letter-spacing: 2px;
}

.service .headblock {
  display: flex;
  justify-content: center;
}

/* Portfolio Section Styles */
.portfolio {
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Jost", sans-serif;
  color: white;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.portfolio-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Update transition delays to be shorter */
.portfolio-item:nth-child(1) {
  transition-delay: 0.05s;
}
.portfolio-item:nth-child(2) {
  transition-delay: 0.1s;
}
.portfolio-item:nth-child(3) {
  transition-delay: 0.15s;
}
.portfolio-item:nth-child(4) {
  transition-delay: 0.2s;
}
.portfolio-item:nth-child(5) {
  transition-delay: 0.25s;
}
.portfolio-item:nth-child(6) {
  transition-delay: 0.3s;
}

.portfolio-content {
  width: 450px;
  background: rgba(20, 20, 35, 0.9);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-content .img {
  height: 250px;
  width: 100%;
  background-color: #d5b614;
  padding: 8px 10px 0px 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.portfolio-content .img .actual_img {
  height: 100%;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.portfolio-content .img .one {
  background-image: url("./images/designs & logo's/krupacorp.png");
}
.portfolio-content .img .two {
  background-image: url("./images/designs & logo's/temp project img/golden lady img.png");
}
.portfolio-content .img .three {
  background-image: url("./images/designs & logo's/temp project img/img1.png");
}
.portfolio-content .img .four {
  background-image: url("./images/designs & logo's/temp project img/img5.png");
}
.portfolio-content .img .five {
  background-image: url("./images/designs & logo's/temp project img/golden lady img.png");
}
.portfolio-content .img .six {
  background-image: url("./images/designs & logo's/sikkole img.png");
}
.portfolio-content .img .seven {
  background-image: url("./images/designs & logo's/snapdrive img.png");
}
.portfolio-content .img .eight {
  background-image: url("./images/designs & logo's/newwave consultancy img.png");
}
.portfolio-content .img .nine {
  background-image: url("./images/designs & logo's/happet img.png");
}

.portfolio-content .img .actual_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-overlay {
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-content {
  transform: scale(1.05);
}

.project-category {
  color: #ffd700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.project-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.project-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px 0 0px;
}

.project-link {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.project-link:hover {
  transform: translateX(10px);
}

.portfolio-overlay .footer_project {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-overlay .footer_project .dot-container {
  margin-top: 0px;
  gap: 7px;
}

.portfolio-overlay .footer_project .dot-container .single-dot {
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ////////////////////quotation\\\\\\\\\\\\\\\\\\\\\\ */

.ten {
  padding: 80px 0;
}

.ten .team-heading {
  padding: 50px 0px;
  text-align: center;
}

.ninee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  border-radius: 15px;
  overflow: hidden;
  width: 450px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.price-card .one {
  background: yellow;
  color: black;
  padding: 35px;
  text-align: center;
}

.price-card .one h1 {
  color: black;
  font-size: 1.7rem;
  margin: 0;
  font-weight: 700;
}

.price-card .tow {
  padding: 25px;
}

.choose-package {
  width: 100%;
  padding: 12px;
  border: 1px solid white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.choose-package:hover {
  background: #63f;
}

.package-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-btn {
  padding: 15px;
  background: black;
  color: white;
  border: 1px solid rgb(79, 79, 79);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.package-btn:hover {
  background: rgb(26, 26, 26);
}

.price-display {
  margin-top: 25px;
  text-align: center;
}

.price-display span:first-child {
  font-size: 1.1rem;
  opacity: 0.8;
}

.price-display #price {
  font-size: 2.5rem;
  font-weight: 700;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  margin-top: 25px;
}

.footer a {
  text-decoration: none;
  width: 100%;
}

.foot {
  width: 100%;
  padding: 10px 18px;
  background: #6366f1;
  border: 1px solid white;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.foot:hover {
  border: 1px solid white;
}

/* /////////////////////Testimonials\\\\\\\\\ */

.testimonials-section {
  width: 100%;
  background: transparent;
  padding: 90px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-main-title {
  font-size: 3.5rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  color: white;
}

.testimonials-carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 30px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  animation: logoScroll 60s linear infinite;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.07);
  min-width: 450px;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover,
.testimonial-card.active {
  box-shadow: 0 8px 40px 0 rgba(99, 102, 241, 0.13);
}

.testimonial-card .cardprofile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cardprofile .testimonial-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid #009688;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.testimonial-name {
  font-weight: 700;
  font-size: 1.18rem;
  color: #111;
  display: block;
}
.testimonial-role {
  color: #009688;
  font-size: 1rem;
  margin-top: 5px;
  display: block;
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-text {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.card_footer {
  margin-top: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_footer .dot-container {
  margin-top: 0px;
}

/* //////////////founders\\\\\\\\\\\\\ */

/* .founders {
  width: 100%;
  position: relative;
  padding: 100px 0;
}

.founders .founder_block {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.founders .founder_block .head_block .head {
  font-size: 3.5rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.founders .founder_block .head_block {
  display: flex;
  justify-content: center;
}

.founders .founder_block .head_block .head::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, transparent);
}

.founders .founder_block .founders_sub_block {
  display: flex;
  align-items: center;
  padding: 10px 100px;
  justify-content: space-between;
}

.founders .founder_block .founders_sub_block .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.founders .founder_block .founders_sub_block .founder1 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.founders .founder_block .founders_sub_block .founder1 .founder1_img {
  height: 200px;
  width: 200px;
  background-image: url("./designs & logo's/co-founder-srinivas.png");
  border-bottom-right-radius: 130px;
}
.founders .founder_block .founders_sub_block .founder1 .founder1_content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.founders
  .founder_block
  .founders_sub_block
  .founder1
  .founder1_content
  .founder_name {
  font-size: 2.1rem;
}
.founders
  .founder_block
  .founders_sub_block
  .founder1
  .founder1_content
  .position {
  font-size: 1.2rem;
  color: gray;
}

.founders .founder_block .founders_sub_block .founder2 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.founders .founder_block .founders_sub_block .founder2 .founder2_img {
  height: 200px;
  width: 200px;
  background-image: url("./designs & logo's/co-founder-venu.png");
  border-bottom-right-radius: 130px;
}
.founders .founder_block .founders_sub_block .founder2 .founder2_content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.founders
  .founder_block
  .founders_sub_block
  .founder2
  .founder2_content
  .founder_name {
  font-size: 2.1rem;
}
.founders
  .founder_block
  .founders_sub_block
  .founder2
  .founder2_content
  .position {
  font-size: 1.2rem;
  color: gray;
}

.founders .founder_block .founders_sub_block .img:hover {
  transform: scale(1.1);
} */

/* ===================== Team Section Styles ===================== */
.team-section {
  width: 100%;
  background: transparent;
  padding: 100px 0 80px 0;
  display: flex;
  flex-direction: column;
}

.team-title {
  color: #fff;
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.team-title .highlight {
  color: #ffd700;
  font-family: "Jost", serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0;
}

.team-desc {
  color: #ccc;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.team-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.team-cards .teama,
.team-cards .teamb {
  display: flex;
  align-items: center;
  gap: 15px;
}

.teama .team-card {
  width: 500px;
  height: 360px;
}

.teama .team-card .img {
  width: 100%;
}

.team-card {
  background: linear-gradient(180deg, #ffffff 40%, #000000 100%);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.13);
  /* height: 360px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: 0 8px 40px 0 rgba(99, 102, 241, 0.13);
  transform: translateY(-6px) scale(1.03);
}

.team-card .img {
  width: 260px;
  height: 360px;
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.8);
  border-bottom: 6px solid #19191f;
}

.team-info {
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  padding: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: 0;
}

.team-name {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  text-align: center;
}

.team-highlight {
  color: #baff1a;
  font-weight: 500;
  margin-left: 4px;
}

.team-role {
  color: #bdbdbd;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.team-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.team-socials a {
  color: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.team-socials a:hover {
  color: #ffd700;
  transform: scale(1.01);
}

/* /////////////////////////////////////faq\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

/* FAQ Section */
.faq-section {
  font-family: "Jost", sans-serif;
  padding: 130px 180px 40px 180px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #ccc;
}

/* FAQ Category */
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual FAQ Item */
.faq-item {
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
}

/* Icon inside Button */
.toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #555;
  border-radius: 50%;
}

/* FAQ Answer */
.faq-answer {
  margin-top: 0.5rem;
  color: #ccc;
  display: none;
}

/* ///////////////////////////////////get in touch page css\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

section.contact-form {
  width: 100%;
  padding: 150px 80px;
  text-align: center;
}

.contact-form h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: white;
  position: relative;
  display: inline-block;
}

.contact-form p {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 60px;
}

/* .form-group {
  margin-bottom: 40px;
  position: relative;
}

.form-group label {
  position: absolute;
  top: 0;
  left: 0;
  color: #777;
  font-size: 1.2rem;
  pointer-events: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: #fff;
  font-size: 1.2rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #fff;
}

.send-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.send-button button {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.send-button button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
} */

.contact-info {
  margin-top: 80px;
  display: flex;
  padding-top: 30px;
}

.contact-email {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-email:first-child {
  padding-right: 20px;
}

.contact-email:last-child {
  padding-left: 20px;
}

.contact-email:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #444;
}

.contact-email a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.contact-email a:hover {
  color: #ffd700;
}
.contact-form .numblock {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px 170px;
}

.contact-form .numblock .info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form .numblock .info .logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .numblock .info .logos .icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form .numblock .info .logos .icons a i {
  font-size: 30px;
  color: white;
}
.contact-form .numblock .info .logos .icons a i:hover {
  color: #ffd700;
}

.contact-form .numblock .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .contact-form h1 {
    font-size: 3rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-email {
    padding: 10px 0 !important;
  }

  .contact-email:first-child::after {
    display: none;
  }
}

.brand-footer {
  background: #101018;
  color: #f5f5f7;
  padding: 60px 0 20px 0;
  font-family: "Jost", sans-serif;
  border-top: 2px solid #ffd700;
}

.footer-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
  gap: 40px;
  padding: 0 80px;
}

.footer-about {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  font-family: "Jost", sans-serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 2px;
  background-image: url("./images/designs & logo's/brandingjester_logo.png");
  background-position: center;
  background-size: cover;
  width: 80px;
  height: 80px;
}

.footer-about p {
  margin-bottom: 25px;
  color: #bdbdbd;
  font-size: 0.8rem;
}

.footer-social a {
  color: white;
  margin-right: 18px;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ffd700;
}

.footer-links,
.footer-contact {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #ffd700;
}

.footer-contact p {
  margin-bottom: 12px;
  color: #bdbdbd;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: white;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #888;
  font-size: 0.95rem;
  border-top: 1px solid #222;
  padding-top: 18px;
}

/* /////////////////////////////////////////responsiveness\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

/* Responsive Styles */

@media (max-width: 1280px) {
  /* //////navbar\\\\\\ */

  header {
    padding: 15px 60px;
    max-width: 1000px;
  }

  .logo-square {
    width: 80px;
    height: 80px;
  }

  nav ul {
    gap: 40px;
  }

  nav a {
    font-size: 1.07rem;
  }

  /* /////hero\\\\\ */

  .hero h2 {
    font-size: 2.7em;
  }

  .hero .paragraph {
    padding: 2.5rem 0px 0 0px;
  }

  .hero .paragraph p {
    font-size: 1.25rem;
    gap: 7px;
  }

  /* /////////////////////////////////logo\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

  .logo_scroll {
    gap: 80px;
  }

  .logo_scroll .logos {
    height: 80px;
    width: 120px;
  }

  /* /////////////portfolio/////////////// */

  .section-title {
    font-size: 3.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 50px;
    padding: 0 100px;
  }

  /* ///////////////////////////service////////////// */

  .service-list {
    gap: 50px;
    width: 100%;
  }

  .service-box {
    flex: 0 1 calc(25% - 20px);
    min-width: 370px;
  }

  .testimonials-carousel-wrapper {
    overflow: hidden;
  }
  .testimonial-card {
    min-width: 430px;
  }

  .testimonials-main-title {
    font-size: 3.5rem;
  }

  /* //founders */

  /* .founders .founder_block .head_block .head {
    font-size: 3.4rem;
  }

  .founders .founder_block .founders_sub_block {
    display: flex;
    padding: 10px 70px;
  }

  .founders .founder_block .founders_sub_block .founder1 .founder1_img,
  .founders .founder_block .founders_sub_block .founder2 .founder2_img {
    height: 180px;
    width: 180px;
  }

  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .founder_name,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .founder_name {
    font-size: 2rem;
  }
  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .position,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .position {
    font-size: 1rem;
  } */

  /* faq */

  .faq-section {
    padding: 100px 120px 40px 120px;
  }

  .faq-header h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
  }

  /* contact */

  .contact-form .numblock {
    margin-top: 50px;
    padding: 20px 80px;
  }

  .contact-form .numblock .phone {
    gap: 12px;
    font-size: 1.2rem;
  }

  .team-title {
    font-size: 3rem;
  }

  .team-title .highlight {
    font-size: 1em;
  }

  .team-desc {
    font-size: 1rem;
  }

  .team-cards {
    gap: 30px;
  }

  .team-cards .teama {
    gap: 20px;
  }

  /* .teama .team-card{
    width: 500px;
    height: 360px;
  } */

  .teama .team-card .img {
    width: 100%;
  }

  .team-cards .teamb {
    gap: 10px;
  }

  .teamb .team-card .img {
    width: 240px;
    height: 360px;
  }
}

@media (max-width: 1140px) {
  header {
    padding: 13px 50px;
    max-width: 900px;
  }

  nav ul {
    gap: 35px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero h2 {
    font-size: 2.4em;
  }

  .hero .paragraph {
    padding: 2.5rem 0px 0 0px;
  }

  .hero .paragraph p {
    font-size: 1.2rem;
    gap: 7px;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .logo_scroll_block .clients {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 25px;
    padding: 0 30px;
  }

  .portfolio-content {
    width: 430px;
    gap: 5px;
  }

  .portfolio-overlay .footer_project .dot-container .single-dot {
    width: 9px;
    height: 9px;
  }

  .ten .team-heading {
    font-size: 2.8rem;
  }

  .ninee {
    gap: 30px;
    max-width: 1000px;
  }

  .price-card {
    width: 400px;
  }

  .price-card .one h1 {
    font-size: 1.5rem;
  }

  .contact-form .numblock {
    padding: 20px 50px;
  }

  .contact-form .numblock .phone {
    gap: 9px;
    font-size: 1.12rem;
  }

  .testimonials-carousel-wrapper {
    max-width: 1000px;
  }

  .testimonial-card {
    min-width: 390px;
  }

  .testimonials-header .testimonials-main-title {
    font-size: 3rem;
  }

  .cardprofile .testimonial-avatar {
    width: 90px;
    height: 90px;
  }
  .testimonial-name {
    font-size: 1.1rem;
  }
  .testimonial-role {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  /* .founders .founder_block .founders_sub_block {
    display: flex;
    padding: 10px 50px;
  }

  .founders .founder_block .founders_sub_block .founder1 .founder1_img,
  .founders .founder_block .founders_sub_block .founder2 .founder2_img {
    height: 170px;
    width: 160px;
  }

  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .founder_name,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .founder_name {
    font-size: 1.5rem;
  }
  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .position,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .position {
    font-size: 1rem;
  } */

  .faq-section {
    padding: 100px 80px 40px 80px;
  }

  .faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .footer-container {
    gap: 20px;
    padding: 0 30px;
  }

  .footer-about {
    flex: 1 1 300px;
    min-width: 250px;
  }

  .team-cards .teama {
    gap: 20px;
  }

  .teama .team-card {
    width: 430px;
    height: 360px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .team-cards .teamb {
    gap: 10px;
  }

  .teamb .team-card .img {
    width: 260px;
    height: 380px;
  }

  .team-cards {
    gap: 20px;
  }

  .teamb .team-card .img {
    width: 220px;
    height: 340px;
  }

  .team-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 980px) {
  header {
    padding: 13px 40px;
    max-width: 780px;
  }

  nav ul {
    gap: 33px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 2.3em;
  }

  .hero .paragraph {
    padding: 2.5rem 0px 0 0px;
  }

  .hero .paragraph p {
    font-size: 1.1rem;
    gap: 7px;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .btn-get-started {
    padding: 6px 18px;
    font-size: 0.9rem;
  }

  .logo_scroll_block .clients {
    font-size: 2.5rem;
  }

  .service-list {
    gap: 50px;
    width: 100%;
  }

  .service-box {
    flex: 0 1 calc(75% - 20px); /* Adjust the percentage based on how many boxes you want per row */
    min-width: 370px; /* Minimum width of the box */
  }

  .section-title {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    gap: 20px;
    padding: 0 20px;
  }

  .portfolio-content {
    width: 370px;
    gap: 5px;
  }
  .portfolio-overlay .footer_project .dot-container .single-dot {
    width: 7px;
    height: 7px;
  }

  .project-title {
    font-size: 1.4rem;
  }

  .portfolio-overlay {
    padding: 25px;
  }

  .ten .team-heading {
    font-size: 2.5rem;
  }

  .ninee {
    gap: 20px;
    max-width: 900px;
  }

  .price-card {
    width: 350px;
  }

  .price-card .one h1 {
    font-size: 1.3rem;
  }
  .choose-package {
    font-size: 0.8rem;
  }

  .package-btn {
    font-size: 0.8rem;
  }

  .testimonials-carousel-wrapper {
    max-width: 900px;
  }

  .testimonial-card {
    min-width: 450px;
  }

  .testimonials-header .testimonials-main-title {
    font-size: 3rem;
  }

  .cardprofile .testimonial-avatar {
    width: 90px;
    height: 90px;
  }
  .testimonial-name {
    font-size: 1.1rem;
  }
  .testimonial-role {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .contact-form .numblock {
    padding: 20px 40px;
  }

  .contact-form .numblock .phone {
    gap: 9px;
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.75rem;
  }

  .founders .founder_block .founders_sub_block {
    display: flex;
    padding: 10px 30px;
  }

  .founders .founder_block .founders_sub_block .founder1 .founder1_img,
  .founders .founder_block .founders_sub_block .founder2 .founder2_img {
    height: 170px;
    width: 140px;
  }

  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .founder_name,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .founder_name {
    font-size: 1.3rem;
  }
  .founders
    .founder_block
    .founders_sub_block
    .founder1
    .founder1_content
    .position,
  .founders
    .founder_block
    .founders_sub_block
    .founder2
    .founder2_content
    .position {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 100px 50px 40px 50px;
  }

  .faq-header h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
  }

  .faq-header p {
    font-size: 0.7rem;
    padding: 0 8rem;
  }

  section.contact-form {
    padding: 150px 50px;
  }

  .contact-form h1 {
    font-size: 3rem;
    margin-bottom: 35px;
  }

  .send-button button {
    padding: 13px 30px;
    font-size: 1.3rem;
  }

  .footer-container {
    padding: 0 20px;
  }
  .footer-about {
    min-width: 200px;
  }
  .footer-links {
    flex: 1 1 220px;
    min-width: 150px;
  }

  .footer-contact {
    flex: 1 1 220px;
  }

  .team-cards .teama {
    gap: 20px;
  }

  .teama .team-card {
    width: 350px;
    height: 340px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .team-cards .teamb {
    gap: 10px;
  }

  .team-cards {
    gap: 20px;
  }

  .teamb .team-card .img {
    width: 200px;
    height: 320px;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-role {
    font-size: 0.85rem;
  }
}

@media (max-width: 860px) {
  header {
    padding: 13px 40px;
    max-width: 700px;
  }

  .btn-primary {
    font-size: 0.9rem;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 2em;
  }

  .hero .paragraph {
    padding: 2.3rem 0px 0 0px;
  }

  .hero .paragraph p {
    font-size: 1rem;
    gap: 7px;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .btn-get-started {
    padding: 6px 18px;
    font-size: 0.9rem;
  }

  .logo_scroll_block .clients {
    font-size: 2.3rem;
  }

  .service .headblock .head {
    font-size: 2.3rem;
  }

  .service-list {
    gap: 40px;
  }

  .service-box {
    flex: 0 1 calc(78% - 20px); /* Adjust the percentage based on how many boxes you want per row */
    min-width: 390px; /* Minimum width of the box */
  }

  .section-title {
    font-size: 2.3rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
  }

  .portfolio-content {
    width: 330px;
    gap: 5px;
  }
  .portfolio-overlay .footer_project .dot-container .single-dot {
    width: 5px;
    height: 5px;
  }

  .ten .team-heading {
    font-size: 2.2rem;
  }

  .ninee {
    gap: 15px;
    max-width: 900px;
  }

  .testimonial-card {
    min-width: 350px;
  }

  .contact-form .numblock {
    padding: 20px 20px;
  }

  .contact-form .numblock .phone {
    gap: 9px;
    font-size: 1rem;
  }

  .cta-section {
    margin-top: 50px;
    margin-bottom: 85px;
  }

  .avatar {
    width: 30px;
    height: 30px;
  }

  .hero p {
    font-size: 0.7rem;
  }

  .hero .para {
    padding: 0 15rem;
  }

  .feature-card {
    min-width: 250px;
    max-width: 300px;
  }

  .footer-container {
    padding: 0 20px;
  }
  .footer-about {
    min-width: 200px;
  }
  .footer-links {
    flex: 1 1 190px;
    min-width: 150px;
  }

  .footer-contact {
    margin-top: 30px;
    flex: 1 1 220px;
  }

  .testimonials-header .testimonials-main-title {
    font-size: 2.3rem;
  }

  .team-cards .teama {
    gap: 20px;
  }

  .teama .team-card {
    width: 270px;
    height: 320px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .team-cards .teamb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* width: 100%; */
  }

  .teamb .team-card {
    width: 270px;
    height: 320px;
  }

  .teamb .team-card .img {
    width: 100%;
  }

  .team-cards .teama,
  .team-cards .teamb {
    align-items: center;
    gap: 20px;
  }

  .team-card {
    height: 290px;
  }
  .team-name {
    font-size: 1.4rem;
  }

  .team-title .highlight {
    font-size: 0.9em;
  }

  .team-desc {
    font-size: 0.8rem;
  }

  .team-cards {
    gap: 15px;
  }

  .team-cards .teama,
  .team-cards .teamb {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 13px 30px;
    max-width: 600px;
  }

  nav {
    display: none;
  }

  .cta-buttons {
    display: none;
  }

  header .bars {
    display: block;
  }

  .cta-section {
    margin-top: 50px;
    margin-bottom: 35px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero h2 {
    font-size: 2.2em;
  }

  .hero .paragraph {
    padding: 2.8rem 0px 0 0px;
  }

  .btn-get-started {
    padding: 6px 18px;
    font-size: 0.9rem;
  }

  .logo_scroll_block .clients {
    font-size: 2.1rem;
  }

  .service .headblock .head {
    font-size: 2.1rem;
  }

  .service-list {
    gap: 30px;
  }

  .service-box {
    flex: 0 1 calc(85% - 20px); /* Adjust the percentage based on how many boxes you want per row */
  }

  .section-title {
    font-size: 2.1rem;
  }

  .testimonials-header .testimonials-main-title {
    font-size: 2.1rem;
  }

  .btn-get-started {
    font-size: 0.95rem;
  }
  .btn-get-started svg {
    height: 30px;
    width: 30px;
  }

  .logo_scroll {
    gap: 50px;
  }

  .logo_scroll .logos {
    height: 60px;
    width: 100px;
  }

  .portfolio-grid {
    gap: 20px;
    padding: 0 20px;
  }

  .portfolio-content {
    width: 100%;
    gap: 5px;
  }
  .portfolio-overlay .footer_project .dot-container .single-dot {
    width: 5px;
    height: 5px;
  }

  /* .founders .founder_block {
    gap: 4rem;
  } */

  .faq-section {
    padding: 60px 10px;
  }

  .faq-header h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
  }

  .faq-header p {
    font-size: 0.7rem;
    padding: 0 8rem;
  }

  .testimonial-card {
    min-width: 320px;
  }

  .team-cards {
    gap: 20px;
  }

  .team-cards .teama {
    gap: 20px;
  }

  .teama .team-card {
    width: 270px;
    height: 320px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .team-cards .teamb {
    gap: 10px;
  }

  .teamb .team-card .img {
    width: 100%;
  }

  .team-cards .teama,
  .team-cards .teamb {
    align-items: center;
    gap: 20px;
  }

  .team-card {
    height: 290px;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .team-socials a {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

}

@media (max-width: 680px) {
  .cta-section {
    margin-top: 40px;
    margin-bottom: 35px;
  }

  .logo_scroll {
    gap: 40px;
  }

  .logo_scroll .logos {
    height: 70px;
    width: 110px;
  }

  .contact-form h1 {
    font-size: 2.7rem;
    margin-bottom: 25px;
  }

  .send-button button {
    padding: 10px 25px;
    font-size: 1.3rem;
  }

  /* footer .footer_block {
    flex-direction: column;
    gap: 20px;
  }

  .footer_block .icons_block .icon {
    font-size: 1.6rem;
  } */

  .portfolio-grid {
    gap: 50px;
  }

  .portfolio-content {
    width: 80%;
    gap: 5px;
  }

  .project-title {
    font-size: 1.7rem;
  }

  .portfolio-overlay {
    padding: 35px;
  }

  .testimonial-card {
    min-width: 30%;
  }

  .testimonials-carousel {
    gap: 25px;
    align-items: center;
  }

  .team-cards {
    gap: 15px;
  }

  .team-cards .teama,
  .team-cards .teamb {
    gap: 15px;
  }

  /* .team-card {
    height: 290px;
  } */

  .teama .team-card {
    width: 270px;
    height: 320px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .teamb .team-card .img {
    width: 100%;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .team-socials a {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin-top: 0px;
  }

  .team-info {
    background: linear-gradient(0deg, rgba(1, 1, 1, 0.3) 60%, transparent 100%);
    padding: 32px 0 30px 0;
    gap: 0px;
    bottom: 0;
  }

  .team-title {
    font-size: 2.3rem;
  }

  .team-title .highlight {
    font-size: 0.9em;
  }

  .team-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 590px) {
  header {
    padding: 13px 30px;
    max-width: 500px;
  }

  .cta-section {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .hero .paragraph p {
    font-size: 0.8rem;
  }

  .portfolio-grid {
    margin: auto;
    gap: 20px;
    padding: 0 20px;
  }
  .portfolio-item {
    margin-left: 40px;
  }

  /* .portfolio-item:nth-last-child(1){
    margin-bottom: 50px;
  } */

  .portfolio-content {
    width: 400px;
    gap: 5px;
  }

  .logo_scroll {
    gap: 40px;
  }

  .logo_scroll .logos {
    height: 60px;
    width: 100px;
  }

  .faq-header h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .faq-header p {
    font-size: 0.7rem;
    padding: 0 5rem;
  }

  .contact-form h1 {
    font-size: 2.5rem;
    margin-bottom: 23px;
  }

  .send-button button {
    padding: 10px 25px;
    font-size: 1.2rem;
  }

  .contact-form .numblock {
    padding: 0px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .contact-form .numblock .phone {
    gap: 9px;
    font-size: 1rem;
  }

  .teama .team-card {
    width: 220px;
    height: 300px;
  }
  .teamb .team-card {
    width: 220px;
    height: 300px;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .teamb .team-card .img {
    width: 100%;
  }

  .team-cards {
    gap: 20px;
  }

  .team-cards .teama,
  .team-cards .teamb {
    gap: 20px;
  }
}

@media (max-width: 510px) {
  header {
    padding: 13px 30px;
    max-width: 470px;
  }

  .portfolio-grid {
    gap: 30px;
    padding: 0 5px;
  }

  .portfolio-item {
    margin-left: 20px;
  }

  .portfolio-item:nth-last-child(1) {
    margin-bottom: 0px;
  }

  .portfolio-content {
    width: 370px;
    gap: 5px;
  }

  .service-list{
    max-width: 1400px;
  }

  .service-box {
    min-width: 300px;
    max-width: 100%;
    padding: 1.4rem;
  }

  .ten .team-heading {
    font-size: 2rem;
  }

  .footer-container {
    padding: 0 50px;
  }

  .footer-about {
    margin-bottom: 30px;
  }

  .founders_sub_block {
    flex-direction: column;
    gap: 60px;
  }

  .testimonial-card {
    min-width: 25%;
  }

  .testimonials-carousel {
    gap: 25px;
    align-items: center;
  }

  .team-cards {
    gap: 15px;
  }

  .team-cards .teama,
  .team-cards .teamb {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 13px 15px;
    max-width: 370px;
  }
  .cta-section {
    margin-top: 30px;
    margin-bottom: 20px;
    gap: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .portfolio-item {
    margin-left: 10px;
  }

  .portfolio-item:nth-last-child(1) {
    margin-bottom: 0px;
  }

  .portfolio-content {
    width: 360px;
    gap: 5px;
  }

  .faq-header h1 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
  }

  .faq-header p {
    font-size: 0.75rem;
    padding: 0 2rem;
  }
  .send-button button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .feature_web_block .head_block .head {
    font-size: 1.5rem;
    line-height: 10px;
  }

  .team-cards {
    flex-direction: column;
    gap: 30px;
  }

  .team-cards .teama,
  .team-cards .teamb {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .team-card {
    width: 100%;
  }

  .teama .team-card .img {
    width: 100%;
  }

  .teamb .team-card .img {
    width: 100%;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-role {
    font-size: 0.75rem;
  }

  .team-socials {
    gap: 12px;
  }

  .team-socials a {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 390px) {
  .portfolio-item {
    margin-left: 0px;
  }

  .portfolio-item:nth-last-child(1) {
    margin-bottom: 0px;
  }

  .portfolio-content {
    width: 290px;
    gap: 5px;
  }

  .service-box {
    flex: 0 1 calc(95% - 20px); /* Adjust the percentage based on how many boxes you want per row */
    min-width: 290px; /* Minimum width of the box */
    max-width: 100%; /* Ensure it doesn't exceed the container width on small screens */
  }

  .contact-form .numblock {
    padding: 20px 0px;
  }

  .contact-form .numblock .phone {
    gap: 15px;
  }

  .team-card {
    height: 260px;
  }

  .teama .team-card .img {
    width: 230px;
    height: 260px;
  }

  .teamb .team-card .img {
    width: 230px;
    height: 260px;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .team-socials {
    gap: 12px;
  }

  .team-socials a {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-bottom: 7px;
  }
}

