* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-weight: 400;
}
a {
  text-decoration: none;
}

br {
  display: block;
}

.text-center {
  text-align: center !important;
}

.mb-5 {
  margin-bottom: 5% !important;
}

.mt-5 {
  margin-top: 5% !important;
}

.mb-2 {
  margin-bottom: 2% !important;
}

.service-icon svg ,.contact-item1 svg ,.feature-card svg{
    fill: #f58327 !important;
}
.service-icon:hover svg {
    fill: #f58327 !important;
}
.contact-item1:hover svg {
  fill: #ffffff !important
}


/* ------------------ container------------------ */
.container {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Common Button */
.hover-icon-btn {
  background: #F58327 !important;
  /* Orange */
  color: #0D0D0D !important;
  /* Black text */
  border-radius: 30px !important;
  /* Pill shape */
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-family: "Unbounded", sans-serif !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  transition: all 0.3s ease-in-out;
}

.hover-icon-btn:hover {
  background: #f58327 !important;
  /* Slightly darker orange */
}
 
.btn-divider {
  width: 1px;
  height: 20px;
  background: #0D0D0D;
  margin: 0 8px;
}

.common-arrow-icon {
  font-size: 20px !important;
  color: #0D0D0D !important;
  transition: transform 0.3s ease-in-out;
}

.hover-icon-btn:hover .common-arrow-icon {
  transform: translateX(4px);
  /* Move arrow right */
}


/* Common Button */
.hover-icon-btn {
  background: #F58327 !important;
  /* Orange */
  color: #0D0D0D !important;
  /* Black text */
  border-radius: 30px !important;
  /* Pill shape */
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-family: "Unbounded", sans-serif !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px;

  transition: all 0.3s ease-in-out;
}

/* .btn-divider {
  width: 1px;
  height: 20px;
  background: #0D0D0D;
  margin: 0 8px;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.3s ease-in-out;
} */

.btn-divider {
    width: 3px;
    height: 26px;
    background: #0D0D0D;
    margin: 0 8px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease-in-out;
}

.btn-divider.show {
  opacity: 1;
  transform: scaleY(1);
}

.common-arrow-icon {
  font-size: 20px !important;
  color: #0D0D0D !important;
  transition: transform 0.3s ease-in-out;
}

.hover-icon-btn:hover .common-arrow-icon {
  transform: translateX(4px);
}

.btn-text {
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-family: "Unbounded", sans-serif !important;
  color: #0D0D0D !important;
}


/* ------------------ NAVBAR ------------------ */
.navbar {
    background: #0a0a0a !important;
    box-shadow: none;
    padding: 10px 0;
    transition: 'background 0.3s ease, backdrop-filter 0.3s ease' ;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1315px;
  width: 100%;
}



.logo-box {
  display: flex;
  align-items: center;
}

.logo-img {
    height: auto;
    width: 100%;
    cursor: pointer;
    max-width: 100px;
}

.nav-container {
  display: flex;
  align-items: center;
  background: rgba(20, 20, 20, 0.9);
  /* softer black */
  border-radius: 160px;
  padding: 6px 25px;
  gap: 20px;
  box-shadow: 0 0px 10px #ffffff;
}

.nav-btn {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 30px;
  padding: 6px 16px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  color: #F58327 !important;
  background: rgba(255, 102, 0, 0.2);
}

.menu-btn {
  display: none !important;
  color: white;
}

.list {
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
}

.blog-content{
  color: #ffffff !important;
}

/* ------------------ BANNER ------------------ */
.banner {
  position: relative;
  height: 1085px;
  background-color: #0A0A0A;
  background-image: url('/assets/images/orange-bg.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 5%;
}

.banner-title img {
  height: 1em;
  width: auto;
  vertical-align: middle;
}

.banner-content {
  z-index: 2;
  color: white;
  margin-bottom: 10px;
}

.banner-title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.2;
}

.highlight-orange {
  background: #f58327;
  padding: 0 5px;
  color: black;
}

.banner-subtitle {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}

.banner-image {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  height: auto;
  z-index: 2;
}

.marquee {
  position: absolute;
  bottom: 22%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 96px;
  font-weight: 400;
  z-index: 1;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  font-family: "Unbounded", sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}



/*---------- Footer---------- */

.map-frame {
    border: 0;
    width: 100%;
    height: 400px;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
  }

  .map-frame:hover {
    filter: grayscale(0%);
  }

.footer {
  background: #0A0A0A;
  color: white;
  padding: 40px 0px 6%;
}

.footer-top {
  background: #151515;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
}
.footer a:hover {
  text-decoration: underline;
}

.footer-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #222;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 14px;
    flex-direction: column;
    width: 100%;
    max-width: 685px;
}
.footer-icon {
  color: #F58327;
}

.footer-menu-title {
    font-weight: 600 !important;
    color: #F58327;
    margin-bottom: 9% !important;
    font-family: "Unbounded", sans-serif !important;
    font-size: 22px !important;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
    margin-bottom: 22px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-menu li:hover {
  color: #F58327;
}

.footer-bottom {
  background: #151515;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-follow {
    font-weight: 600 !important;
    color: #F58327;
    font-family: "Unbounded", sans-serif !important;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons .MuiIconButton-root {
  color: white;
  background: #222;
  border-radius: 8px;
  transition: 'background 0.3s';
}

.social-icons .MuiIconButton-root:hover {
  background: #F58327;
}

.newsletterr {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  flex-direction: row;
}

.newsletter-input {
    flex: 1;
    background: #222;
    border-radius: 38px;
}

.newsletter-input input {
  color: white;
}

.newsletter-btn {
    background: #F58327 !important;
    color: #000 !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-transform: none !important;
     font-family: "Unbounded", sans-serif !important;
}

.newsletter-btn:hover {
  background: #f58327 !important;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #333;
  margin-top: 20px;
}

.footer-copyright {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #aaa;
}

/*------------------ service section -----------------------*/
.services-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.justify-center {
  justify-content: center;
}

.services-section {
  background-color: #0D0D0D;
  padding: 4% 0;
}

.services-header {

  margin-bottom: 48px;
}

.services-btn-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5%;
}

.service-card {
  background-color: #151515 !important;
  border-radius: 16px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px !important;
}

.service-card-content {
  flex: 1;
  
}

.service-icon {
  background-color: #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 16px;
  color: #f58327;
  font-size: 24px;
}

.service-card-title {
  font-weight: 600;
  margin-bottom: 12px !important;
  font-size: 20px !important;
}

.service-card-desc {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

/* Learn More Button */
.learn-more-btn {
  margin-top: auto;
  color: #fff !important;
  font-weight: 500 !important;
  justify-content: flex-start !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  transition: color 0.3s ease-in-out;
  font-family: "Unbounded", sans-serif !important;
}



.arrow-icon {
  font-size: 16px !important;
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
  border: 1px solid #ffffff;
  width: 26px !important;
  height: 26px !important;
}

.service-card:hover .arrow-icon {
  transform: translateX(3px);
  background-color: #F58327;
  border: 1px solid #F58327;
}


/*-------------- brand section-------------------- */
.brands-section {
  background: #0d0d0d;
  text-align: center;
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

.brands-subtitle {
  display: inline-block;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f58327;
  background: #363434ba;
  border-radius: 999px;
}

.brands-title {
  font-size: 40px !important;
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 0px 2px rgb(255 255 255) !important;
  margin-top: 3% !important;
}

.brand-marquee-content {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.brand-logo-box {
  background: #1a1a1a;
  padding: 16px 32px;
  border-radius: 20px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
}


.brand-logo {
width: 160px
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ------------------------stats section-------------------------- */
.stats-section {
  position: relative;
  background: url("/assets/images/sats-bg.svg");
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  background-color: #0A0A0A;
  padding: 10px 0 60px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.8) 10%,
      rgba(245, 131, 39, 0.4) 50%,
      rgba(0, 0, 0, 0.85) 146%);
  z-index: 1;
}

.sats-content {
  display: flex;
  flex-direction: column;
  gap: 32em;
}

.counters-container {
  position: relative;
  z-index: 2;
  margin-top: 50px !important;
}

.counter-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  animation: bounceUpDown 3s ease-in-out infinite;
}

@keyframes bounceUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Alternate direction for even counters */
.counters-container .counter-circle:nth-child(even) {
  animation: bounceDownUp 3s ease-in-out infinite;
}

@keyframes bounceDownUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
    /* goes down */
  }
}

.counter-number {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.counter-label {
  font-size: 14px;
  color: #ddd;
  margin-top: 4px;
}


.features-container {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.feature-card {
  background: rgb(0 0 0 / 14%);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 36px;
  color: #f58327;
  margin-bottom: 15px;
}

.tags-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.tag {
  background: #36343442;
  color: #f58327;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/*========================== case study============================== */

.case-studies-section {
  background: #0b0b0b;
  padding: 60px 0;
  color: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.case-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-image {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.case-card:hover .case-image {
  transform: rotate(0deg) scale(1.04);
}

.case-content {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 0 0 16px 16px;
  flex-grow: 1;
}

/* ============================Stats section ===========================*/
.case-stats {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.stat-box {
  text-align: left;
}

.stat-value {
  font-size: 50px !important;
  font-weight: 600 !important;
  color: #F58327;
  font-family: "Unbounded", sans-serif !important;
}

.stat-label {
  font-size: 13px;
  color: #aaa;
}


/* ---------------------testimonial-------------------------- */

.testimonial-section {
  position: relative;
  background: #0D0D0D;
  padding: 120px 0;
  overflow: hidden;
}

.bg-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(70px, 18vw, 220px) !important;
  font-weight: 800;
  color: #ffffff;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  font-family: "Unbounded", sans-serif !important;
  opacity: 40%;
}

.marquee-container {
  height: 850px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: scrollUp 8s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

.testimonial-card {
  width: 100%;
  max-width: 700px;
  min-height: 285px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
}

.top-glow {
  position: absolute;
  top: -2px;
  left: 20px;
  right: 20px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f58327, #ff4d00, #f58327);
  filter: blur(10px);
}

.stars {
  color: #f58327;
  margin-bottom: 6px;
}

.quote {
  font-size: 40px !important;
  color: #f58327;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 18px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px !important;
  height: 44px !important;
  border: 2px solid #f58327;
}

.name {
  font-weight: 700;
  font-size: 15px;
}

.role {
  font-size: 12px;
  text-transform: uppercase;
  color: #bbb;
}

.fade-overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 3;
  pointer-events: none;
}

.fade-overlay.top {
  top: 0;
  background: linear-gradient(to bottom, #0D0D0D 0%, transparent 100%);
}

.fade-overlay.bottom {
  bottom: 0;
  background: linear-gradient(to top, #0D0D0D 0%, transparent 100%);
}

/* ---------- Video Testimonials ---------- */
.video-testimonials {
  background: #0b0b0b;
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}

.video-card {
  background: #151515;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}
.slick-prev {
    left: -8px;
}
.slick-next {
    right: -8px;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.video-name {
  font-weight: 700;
  font-size: 15px;
  margin-top: 12px;
  color: #fff;
}

.video-role {
  font-size: 13px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-btn-wrapper {
  margin-top: 5% !important;
}


/* ============= Our Specialities ============= */
.spec-section {
  background: #0b0b0b;
  color: #fff;
  padding: 64px 0 84px;
}

.spec-intro {
  display: flex;
  justify-content: flex-end !important;
  margin-bottom: 5% !important;
}

.spec-grid {
  margin-top: 10px;
}

/* ====== Cards (base) ====== */
.spec-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .42);
  background: #151515;
  height: 440px;
}

.media-card,
.ring-card {
  background: #000;
}

.spec-media {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .9) 100%);
}

.media-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
}

.metric-xxl {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 66px;
  line-height: .95;
  letter-spacing: -0.02em;
}

.metric-sub {
  margin-top: 4px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .1em;
}

.metric-caption {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  color: #cfcfcf;
  font-size: 12.5px;
  line-height: 1.55;
}

.stat-card {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-family: "Unbounded", sans-serif !important;
  font-weight: 900;
  font-size: 66px !important;
  line-height: .95;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 8px;
  font-family: "Unbounded", sans-serif;
  color: #eeeeee;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
}

.stat-desc {
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  color: #d8d8d8;
  font-size: 13px;
  line-height: 1.55;
  max-width: 520px;
}

.ring-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .22) 60%, rgba(0, 0, 0, .35) 100%);
}

.orange-card {
  background: #f58327;
  color: #0d0d0d;
  border: none;
  padding: 22px 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.orange-head {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-align: left;
  margin-bottom: 6px;
}

.orange-number {
  justify-self: end;
  font-family: "Unbounded", sans-serif !important;
  font-weight: 900;
  font-size: 112px !important;
  line-height: .86;
  letter-spacing: -0.02em;
  margin-right: 8px;
}

.orange-desc {
  align-self: end;
  font-family: "Inter", sans-serif;
  color: #231f20;
  font-size: 13px;
  line-height: 1.55;
  max-width: 520px;
}


/* --------------------- Blog Section ------------------------ */
.blog-section {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  transition: transform .28s ease, filter .28s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-media {
  position: relative;
  border-radius: 16px 16px 12px 12px;
  overflow: hidden;
}

.blog-cover {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

.blog-overlay {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .85) 100%);
}

.blog-badge {
  position: absolute;
  right: 14px;
  bottom: 72px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7a6;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.blog-meta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.meta-chip {
  height: 22px !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.55) !important;
  color: #eaeaea !important;
  font-size: 11px !important;
  padding: 0 10px !important;
}

.blog-footer {
  background: #151515;
  border-radius: 0 0 16px 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

.blog-card-title {
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.35;
  color: #eaeaea;
  letter-spacing: .01em;
}


/* =======================FAQ Section ======================= */
.faq-section {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(48px, 6vw, 88px) 0;
}

.faq-head {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-accordion {
  background: #141414 !important;
  border-radius: 30px !important;
  margin-bottom: 30px !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  overflow: hidden;
}

.faq-summary {
  min-height: 56px !important;
  padding: 0 10px 0 16px !important;
}

.faq-question {
  font-size: 13.5px;
  color: #e8e8e8;
  letter-spacing: 0.02em;
    font-family: "Unbounded", sans-serif !important;
    transition: transform 0.3s ease, color 0.3s ease;
}
.faq-summary:hover .faq-question {
  transform: translateX(6px); /* slight right movement */
  color: #F58327; /* optional highlight color */
}
.faq-expand {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #f58327;
    box-shadow: 0 6px 16px rgba(245, 131, 39, 0.35);
    transition: transform .25s ease;
}

.faq-expand-icon {
  color: #0d0d0d;
  font-size: 18px;
  transition: transform .25s ease;
}

.faq-accordion.Mui-expanded .faq-expand-icon {
  transform: rotate(180deg);
}

.faq-details {
  padding: 10px 16px 16px 16px !important;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-answer {
  color: #cfcfcf;
  font-size: 13.5px;
  line-height: 1.7;
}

.faq-accordion::before {
  display: none;
}

.faq-accordion:hover {
  border-color: rgba(245, 131, 39, 0.3) !important;
}

/* ======================= Contact Section======================= */
.contact-section {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(48px, 7vw, 96px) 0;
}

.contact-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.contact-title-wrap img {
  width: 100%;
  max-width: 450px;
}

.contact-title {
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(58px, 12vw, 140px) !important;
  position: relative;
}

.lt-white {
  color: #ffffff;
  font-family: "Unbounded", sans-serif !important;
}

.lt-orange {
  color: #f58327;
  font-family: "Unbounded", sans-serif !important;
  position: absolute;
  top: 48%;
}

.contact-card {
  background: #151515;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .06);
}

.contact-label {
  display: block;
  font-size: 14px;
  color: #bfbfbf;
  margin: 10px 8px 6px;
  letter-spacing: .02em;
}

/* Inputs */
.contact-input .contact-input-inner {
  background: #222 !important;
  color: #eaeaea !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
}

.contact-input .MuiOutlinedInput-notchedOutline {
  border-color: #333 !important;
}

.contact-input:hover .MuiOutlinedInput-notchedOutline {
  border-color: #444 !important;
}

.contact-input.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #555 !important;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
  color: #8f8f8f !important;
}

.form-row+.form-row {
  margin-top: 6px;
}

.contact-submit {
  background: #f58327 !important;
  color: #0d0d0d !important;
  font-weight: 700 !important;
  text-transform: none !important;
  border-radius: 12px !important;
  width: 100%;
  height: 38px;
  margin-top: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  margin: 3% 0 2% !important;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(245, 131, 39, .35);
}

/* ===========================About ================================= */
.about-wrap {
  background: #0b0b0b;
  color: #fff;
  padding: 28px 0 64px;
}

/* ===== Welcome banner ===== */
.welcome-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: clamp(220px, 36vw, 523px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
}

.welcome-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(50% 70% at 55% 50%, rgba(245, 131, 39, 0.28) 0%, rgba(245, 131, 39, 0.06) 60%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
}

.welcome-text {
  position: absolute;
  left: 35%;
  bottom: clamp(16px, 4vw, 28px);
  text-align: center;
}

.welcome-line1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 30px);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.welcome-line2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 32px);
  color: #f58327;
  letter-spacing: -0.02em;
  margin-top: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.about-grid {
  margin-top: 28px !important;
}

.about-copy {
  font-size: 24px !important;
  line-height: 1.6 !important;
  color: #888;
}

.about-highlight {
  color: #fff;
}

.about-acc-stack {
  display: grid;
  gap: 12px;
}

.about-acc {
  background: #191919 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  color: #e9e9e9 !important;
}

.about-acc-summary {
  min-height: 46px !important;
  padding: 0 10px 0 14px !important;
  display: flex !important;
  align-items: center !important;
}

.acc-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #dcdcdc;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.acc-title {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
}

.acc-plus {
  margin-left: auto !important;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.about-acc-details {
  padding: 8px 14px 14px !important;
}

.acc-content {
  color: #bfbfbf;
  font-size: 13px;
  line-height: 1.6;
}

/* ------==========---agency-----======================-- */
.gallery-container {
  padding: 40px 20px;
  background-color: #0b0b0c;
  color: #ffffff;
  text-align: center;
}

.gallery-title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-description {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #cccccc;
}

.gallery-grid {
  justify-content: center;
}

.gallery-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  height: 480px;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.gallery-image-wrapper:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-image-wrapper.bw img {
  filter: grayscale(100%);
}


/* ------------------------founder section------------------------------ */
.founder-section {
  background-color: #0b0b0c;
  padding: 80px 0;
  color: white;
}

.founder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-description {
  font-size: 18px;
  line-height: 1.6;
  color: #b4b4b4;
  margin-bottom: 30px;
}

.founder-image-wrapper {
  position: relative;
  margin: 0 auto;
}

.founder-avatar {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.skill-chip {
  background-color: #555454 !important;
  color: white !important;
}

.founder-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.logo-container img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-container img:hover {
  opacity: 1;
}


/* ======================teamsection============================ */
.team-section {
  padding: 60px 20px;
  background: #0d0d0d;
  color: white;
  text-align: center;
}

.team-badge {
  color: #ff9e00;
  font-weight: 600;
  font-size: 14px;
}

.team-heading {
  margin-top: 8px;
  font-weight: 700;
}

.team-subheading {
  color: #aaa;
  margin: 10px auto 50px;
  max-width: 720px;
}

.team-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #1c1c1c;
  text-align: center;
  transition: all 0.3s ease;
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  bottom: -138px;
}

.team-text-top {
  position: absolute;
  top: 10px;
  left: 12px;
  text-align: left;
}

.team-title {

  font-size: 55px;
  font-weight: 700;
  color: #f58327;
  margin: 0;
  font-family: "Unbounded", sans-serif;
}

.team-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  font-family: "Unbounded", sans-serif;
}

.team-card.team-active .team-title {
  color: #fff;
}

.team-orange-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: #f58327;
  z-index: 1;
  border-top-left-radius: 223% 125%;
  border-top-right-radius: 223% 125%;
  transition: all 0.4s ease;
}

.team-info {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.team-name {
  font-weight: 600;
  margin-top: 5px;
}

.team-role {
  color: #ddd;
  margin-bottom: 10px;
}

.team-toggle-btn {
  background: #fff !important;
  color: #000 !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  width: 50px;
  height: 50px;
}

.team-card.team-active .team-toggle-btn {
  background: transparent !important;
  color: #fff !important;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.team-social .MuiIconButton-root {
  background: #fff;
  color: #000;
}

.team-card.team-active .team-social .MuiIconButton-root {
  background: #000;
  color: #fff;
}

/* ==========================values============================== */
.values-section {
  position: relative;
  background-color: #0d0d0d;
  color: white;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-text {
  position: absolute;
  font-size: 15vw;
  font-weight: bold;
  color: white;
  opacity: 0.1;
  z-index: 1;
  user-select: none;
}


.circle-container {
  position: relative;
  width: 80vw;
  max-width: 366px;
  height: 80vw;
  max-height: 366px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  border-radius: 50%;
  z-index: 2;
  overflow: hidden;
  animation: bounce 4s ease-in-out infinite;
}
.circle-container-home {
    background: transparent !important;
    left: 24%;
    border: 1px solid #ffffff40;
    top: 10%;
}


/* Bounce effect for the circle */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.value-img {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 160px;
}
/* -------------------------contact page ----------------------- */
.contact-us-section {
  background-color: #0b0b0b;
  padding: 60px 0;
}

.contact-grid {
  margin-bottom: 20px;
}

.contact-item {
  background-color: #262626;
  padding: 20px;
  border-radius: 16px;
  color: white;
  height: 100%;
}

.label {
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.follow-us .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.follow-us .MuiIconButton-root {
  background-color: #000;
  color: #f58327;
  border: 1px solid #f58327;
  transition: 0.3s;
}

.follow-us .MuiIconButton-root:hover {
  background-color: #f58327;
  color: #000;
}

.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(100%);
}


/* =========================why choose us ======================== */
.why-choose-us {
  background-color: #0d0d0d;
  padding: 40px 0;
}

.heading {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-item1 {
    background-color: transparent;
    padding: 30px;
    border-radius: 8px;
    text-align: center !important;
    transition: all 0.3s ease;
    border: 1px solid #ffffff17;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item1:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.icon-container {
    margin-bottom: 20px;
    border: 1px solid #F58327;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.icon {
  color: #F58327;
  font-size: 40px;
}

.title {
  color: #fff;
  font-weight: bold;
}

.description {
  color: #fff;
  margin-top: 10px;
}


/* ==============what we do====================== */
.what-we-do-section {
  padding: 60px 0;
  background-color: #0b0b0b;
}

.what-we-do-list {
  max-width: 900px;
  margin: 0 auto;
}

.point-title {
  font-weight: 600 !important;
  color: #bbb;
  font-size: 20px !important;
}

.point-description {
  color: #bbb;
  font-size: 16px !important;
  margin-top: 8px;
}

.bullet-list {
  color: #bbb !important;
  font-size: 16px;
  margin: 8px 0 0;
  padding-left: 20px;
  list-style-type: disc;
}

.bullet-list li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ============================work sample =========================== */

.work-samples-wrap {
  background-color: #0c0c0c;
  padding: 80px 0;
  text-align: center;
}


.samples-grid {
  justify-content: center;
}

.sample-card {
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.sample-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}


/* ============================fourstage ===================================== */
.process-wrapper {
  background: #0d0d0d;
  color: white;
  padding: 5rem 1rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffa500;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

.step-divider {
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, #ffa500, transparent);
  margin-top: 0.5rem;
  transform-origin: top;
  transition: all 0.3s ease-in-out;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  flex: 1;
}



/* ===============scrolling testimonial==================== */
.scroll-logos-container {
  overflow: hidden;
  width: 100%;
  background-color: #0d0d0d;
  padding: 1rem 0;
}

.scroll-logos-track {
  display: flex;
  width: max-content;
  animation: scroll-left-logos 25s linear infinite;
  align-items: center;
  gap: 2rem;
}

.logo-image {
    width: 115px;
    height: 83px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: brightness(1);
}

@keyframes scroll-left-logos {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials Scroll */

.scroll-container {
  overflow: hidden;
  width: 100%;
  background-color: #0d0d0d;
  padding: 2rem 0;
  position: relative;
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scroll-left-testimonials 30s linear infinite;
  gap: 2rem;
}

@keyframes scroll-left-testimonials {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scroll-container .testimonial-card {
  background: #1a1a1a;
  border-radius: 10px;
  color: white;
  padding: 1.5rem;
  min-width: 320px;
  max-width: 400px;
  flex: 0 0 auto;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.scroll-container .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.scroll-container .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scroll-container .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.scroll-container .name {
  font-weight: bold;
  font-size: 0.9rem;
}

.scroll-container .title {
  font-size: 0.75rem;
  color: #888;
}


/* ================================projects=============================== */
.project-flex {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  height: 100%;
  flex-direction: row;
}

.project-image {
  width: 100%;
  border-radius: 12px;
  /* transform: rotate(-2deg); */
  transition: transform 0.3s ease;
  max-width: 490px;
}

.case-tag {
  display: flex;
  flex-direction: column;
  gap: 232px;
}



/* =========================blogpage================================== */

/* Page shell */
.seo-page {
  --bg: #0b0b0b;
  --card: #141414;
  --muted: #bdbdbd;
  --text: #ffffff;
  --pill: #ffffff;
  --accent: #f58327;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
}

.hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: clamp(260px, 36vw, 700px);
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 60%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(16px, 4vw, 28px);
  gap: 12px;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--pill);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.hero-title {
  font-size: clamp(28px, 5.2vw, 48px);
  line-height: 1.06;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
  font-family: "Unbounded", sans-serif !important;
}
 h2 span ,h3 span ,strong{
  color: #ffffff !important;
  font-family: "Unbounded", sans-serif !important;
}
.blog-content p,.blog-content span ,p a{
  color: #ffffff !important;
}
.intro-card {
  background: var(--accent);
  color: #ffffff;
  border-radius: 22px;
  margin: 18px 0 40px;
  padding: clamp(18px, 3.6vw, 28px);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  text-align: center;
}

.article {
  max-width: 850px;
  margin: 34px auto 0;
}

.article-block {
  margin-bottom: 26px;
}

.article-block h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
}

.article-block p {
  color: var(--muted);
}

.article-block ul {
  color: var(--muted);
  padding-left: 18px;
}

.article-block li {
  margin: 8px 0;
}

.article-block b {
  color: #e9e9e9;
  font-weight: 700;
}

.image-grid {
  margin: 34px 0px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.img-tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  min-height: clamp(180px, 28vw, 320px);
}

.img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.img-tile:hover img {
  transform: scale(1.06);
}

.img-tile figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .35) 72%, rgba(0, 0, 0, .55) 100%);
}

.d-flex{
  display: flex;
}
.search-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 600;
}

.newsletter {
  max-width: 900px;
  margin: 34px auto 0;
  background: var(--card);
  border-radius: 22px;
  padding: clamp(18px, 3.6vw, 28px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: column;
}

.nl-head h4 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 6px;
}

.nl-head p {
  color: var(--muted);
  margin: 0 0 16px;
}

.nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: #0f0f0f;
  border-radius: 999px;
  padding: 10px;
  margin-bottom: 18px;
}

.nl-form input {
  border: 0;
  outline: none;
  background: #eaeaea;
  color: #111;
  padding: 16px 18px;
  border-radius: 999px;
  font-size: 15px;
}

.nl-form button {
  border: 0;
  outline: none;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a23, #ff6a00);
  color: #111;
  font-weight: 700;
  transition: transform .2s ease;
}

.nl-form button:hover {
  transform: translateY(-1px);
}

.nl-share {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  background: #0f0f0f;
  border-radius: 18px;
  padding: 14px 18px;
}

.nl-share span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
}

.nl-icons a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  text-decoration: none;
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", system-ui;
  font-weight: 900;
  margin-left: 8px;
}


/* --------==========-scroll----===================----- */

.scroll-wrapper {
  position: fixed;
  bottom: 30px;
  right: 2%;
  transform: translateX(-50%);
  z-index: 50;
  text-align: center;
  cursor: pointer;
}

.scroll-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #F58327;
  border-radius: 10px;
  background-color: #F58327;
  transition: transform 0.3s ease;
}

.scroll-button:hover {
  transform: scale(1.1);
}

.arrow-icon1 {

  font-size: 30px;
}




/* =============privacy policy====================== */
/* ==== Global Wrapper ==== */
.page-wrapper {
  padding-top: 5%;
  background-color: #0a0a0a;
  /* dark background */
  color: #ffffff;
  position: relative;
}
.page-wrapper img {
    position: absolute;
    bottom: 12%;
    right: 20%;
}

.m-0{
  margin: 0 !important;
}
/* ==== Page Heading ==== */
.page-main-title {
font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 70px !important;
  margin-bottom: 8px;
}

.page-heading {
font-family: "Unbounded", sans-serif;
  font-size: 36px;
  /* margin-bottom: 8px; */
}

/* ==== Effective Date ==== */
.page-date {
    text-transform: uppercase !important;
    /* font-family: "Unbounded", sans-serif !important; */
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #F58327 !important;
    margin-bottom: 2px !important;
    display: block;
}



/* ==== Section Title ==== */
.page-title {
  font-size: 20px !important;
  font-family: "Unbounded", sans-serif !important;
  font-weight: 600 !important;
  /* margin-top: 28px; */
  /* margin-bottom: 12px; */
  color: #ffffff;
}

/* ==== Sub Title ==== */
.page-subtitle {
   font-weight: 100 !important;
     font-family: "Unbounded", sans-serif !important;
  font-size: 15px !important;
  padding-top: 8px;
  color: #ffffff;
}

/* ==== Paragraph ==== */
.page-para {
 text-align: left;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  color: #9C9C9C;
}

/* ==== Lists ==== */

.page-pa li {

  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;

}

.page-pa svg {
  font-size: 7px;
  color: #9C9C9C;

  color: #f58327;
  /* orange bullets */

}

.list-icon {
  min-width: 18px !important;
}
/* ------------project detail------------------ */

.projet-detail{
  background-color: #0D0D0D;
  color: #fff;
  padding-bottom: 60px;
  font-family: "Inter", sans-serif;
}
.projet-detail .two-box-section {
  padding-top: 0px;
    padding-bottom: 40px;
}

.projet-detail .text-box {
    background: #1a1a1a;
    padding: 13px 10px;
    border-radius: 34px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projet-detail .case-title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: left;
}

.projet-detail .image-box {
  background: #1a1a1a;
  border-radius: 10px;
  text-align: center;
}

.projet-detail .hero-img {
  max-width: 100%;
  border-radius: 8px;
}

/* Highlight intro */
.projet-detail .highlight-box {
  background: #1a1a1a;
  padding: 25px 30px;
  border-radius: 12px;
  margin: 40px auto;
  text-align: center;
}

.projet-detail .highlight-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Content */
.projet-detail .content-section {
  margin-top: 30px;
}

.projet-detail .content-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

/* Gallery */
.projet-detail .gallery-section {
  margin-top: 50px;
  text-align: center;
}

.projet-detail .gallery-section img {
    width: 100%;
    max-width: 1900px;
}
.projet-detail .gallery-full {
  width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
.projet-detail .case-title {
    font-size: 1.5rem;
  }

.projet-detail  .highlight-text {
    font-size: 1rem;
  }

.projet-detail  .content-text {
    font-size: 0.95rem;
  }
}