
/*---- home.css ----*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to top, #111111, #111111);
  color: white;
  min-height: 100vh;
}




nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  margin: 0 2rem;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: white;
  letter-spacing: 1px;
  text-decoration: underline;
}

.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.25rem;
}

.toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  /* White lines */
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

@media (min-width: 992px) {

  /* lg and above */
  .navbar-nav.me-auto {
    margin-left: 190px !important;
  }

}

@media (min-width: 1200px) {

  /* lg and above */
  .navbar-nav.me-auto {
    margin-left: 250px !important;
  }

}

/* Default (hamburger) */
.navbar-toggler.collapsed .top-bar {
  transform: rotate(0) translate(0, 0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0) translate(0, 0);

}

/* When expanded → show X */
.navbar-toggler:not(.collapsed) .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

.my-container {
  display: none;
}

@media (max-width: 991px) {
  .navbar-nav.d-flex.flex-row .nav-item {
    margin-left: 15px;
    /*gap between menus*/
  }

  .my-container {
    display: block;
  }
}

.hero11 {
  /* text-align: center; */
  padding: 40px 20px;
  /* height: 100px; */
}

#b1 {
  position: absolute;
  right: 5px
}

@media (max-width: 768px) {
  .hero11 {
    margin-top: -50px;
  }

  .hero11 h1 {
    font-size: 20px;
    text-align: left;
  }

  .hero11 p {
    font-size: 16px;
  }

  #b1 {
    left: 20px;
    margin-top: -30px;
  }

}

.navbar-nav.d-lg-none {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  position: relative;
  bottom: 170px;

  font-size: 15px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 17px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(2px);
  transform: rotate(-20deg);
}

.cta-button span {
  margin-right: 10px;
}

.icon-circle {
  background: #c2a8ff;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 14px;
  height: 14px;
  stroke: #5d3bd4;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #6e54bb, #845ef7);
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 999px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: relative;

  width: 150px;
  box-shadow: 0 4px 10px rgba(132, 94, 247, 0.5);
  font-family: sans-serif;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.cta-button::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #fff;
  transform: translateX(100%);
  border-radius: 50px;
  z-index: -1;

  transition: all 1s linear;
}

.cta-button:hover::after {
  transform: translateX(0%);
  box-shadow: 0 4px 15px rgba(110, 84, 187, 0.4);
  transition: all 1s linear;

}

.cta-button .arrow {
  transition: all .5s linear;
  background-image: url("../img/arrow.png");
  background-size: 43px 40px;
  width: 43px;
  height: 42px;
  position: absolute;
  top: 0px;
  right: -10px;
  background-color: #fff;
  border-radius: 50%;
  transition: background-color 1s ease, transform 0.3s ease;
}

.cta-button:hover {
  color: #6147BD;
  transition: 1s;
}

.cta-button:hover .arrow {
  background-color: #fff;
  transition: all .5s linear;
  transform: rotate(35deg);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10rem 1.5rem;
  position: relative;
  background-image: url('../img/');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}

/* .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(139, 83, 165, 0.6), transparent);
  animation: light-move-left 12s ease-in-out infinite;
} */

/* .hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(98, 26, 156, 0.6), transparent);
  animation: light-move-right 12s ease-in-out infinite;
} */

@keyframes light-move-left {
  0% {
    left: -50%;
    opacity: 0.8;
  }

  50% {
    left: 0;
    opacity: 1;
  }

  100% {
    left: 0;
    opacity: 0;
  }
}

@keyframes light-move-right {
  0% {
    right: -50%;
    opacity: 0.8;
  }

  50% {
    right: 0;
    opacity: 1;
  }

  100% {
    right: 0;
    opacity: 0;
  }
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.3;
}

.hero p.subtext {

  margin-top: -0.5rem;

font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 40px;
/* or 200% */
text-align: center;

color: #E0E0E0;

/* border: 1px solid #000000; */

}

.hero button {
  margin-top: 2rem;
}

/* ux header */
.ux-header {
  margin-top: 80px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: center;
  max-width: 100%;
  padding: 0 120px;
  /* side padding for small screens */
  box-sizing: border-box;
}

.ux-header .ux-badg {
  width: 116px;
  height: 52px;
  background-image: url("../img/ui.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  z-index:100;
}

.ux-header .ux-end {
  width: 50px;
  height: 50px;
  background-color: #5d3bd4;
  border-radius: 0px 20px 20px 0px;
  flex-shrink: 0;
}

.ux-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  margin-left:-10px;
  z-index:100;
}

.ux-tags li {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 13px;
  white-space: nowrap;
  /* prevent breaking word */
  

font-family: 'DM Sans';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 21px;
/* identical to box height */
text-align: center;

color: #FFFFFF;

transform: rotate(0.14deg);
z-index:100;

  
}

@media screen and (max-width:750px) {
  .ux-header .ux-end {
    display: none;
  }

  .ux-header {
    padding: 0 10px;
  }
}

/* about section start */
.ux-content {
  position: relative;
  text-align: center;
  margin: 50px auto;
  width: 755px;
  height: 145px;
  padding: 20px;
  background: transparent;
  /* agar background chahiye to add kar lena */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Subtitle */
.ux-subtitle {
  color: #aaa;
  margin-bottom: 5px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Title */
.ux-title {
  margin-top: -20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;

font-family: 'DM Sans';
font-style: normal;
font-weight: 600;
font-size: 40px;
line-height: 48px;
/* or 120% */
text-align: center;

color: #F5F5F5;


}

.highlight {
  color: #6147BD;
  font-style: italic;
}

/* Description */
.ux-description {
  margin-top: -10px;
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
}

/* View More */
.view-more {
  display: inline-block;
  margin-top: -20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
  font-weight: 500;
  transition: 0.3s;
  width: 114px;
  height: 30px;
}

.view-more:hover {
  color: #6147BD;
  border-color: #6147BD;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .ux-content {
    width: 349px;
    height: 231px;
    padding: 15px;
    gap: 24px;
    /* as you mentioned */
  }

  .ux-subtitle {
    font-size: 0.9rem;
    flex-direction: column;
    /* text aur line neeche aa jaye */
    gap: 4px;
    margin-top: 10px !important;
  }

  .ux-title {
    font-size: 1.5rem;
  }

  .ux-description {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .view-more {
    margin-top: 10px;
    font-size: 0.9rem;
    margin-bottom: 100px;
  }
}

.ux-subtitle {
  color: #aaa;
  margin-bottom: 45px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  /* text upar, line niche */
  align-items: center;
  /* center align */
  gap: 6px;
  /* text aur line ke beech space */
}

.ux-line {
  width: 63px;
  height: 1px;
  background-image: url('img/Ellipse\ 581.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

/* about end */

.ux-image-container {
  margin-top: 50px;
  position: relative;
  max-width: 1240px;
  /* ✅ desktop default width */
  height: 349px;
  /* ✅ desktop default height */
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 0 15px rgba(157, 78, 255, 0.3);
  /* overflow: hidden; tags overflow na kare */
  /* z-index: -1; */
}

.ux-image {
  width: 400px;
  border-radius: 10px;
  position: relative;
  left: 370px;
  bottom: 10px;
  height: 380.39px;
  z-index: 0;

}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .ux-image-container {
    max-width: 380px;
    /* ✅ mobile size */
    height: 343px;
    /* ✅ mobile height */
    padding: 10px;
  }

  .ux-image {
    width: 100%;
    /* image responsive */
    height: auto;
    left: 0;
    bottom: 0;
    display: none;
    margin: 0 auto;
  }

  #d1 {
    display: none;
  }

  #d2 {
    margin-left: 130px;
    margin-top: -90px;

  }

  #d3 {
    margin-left: -60px;
    margin-top: -50px;
  }

  #d4 {
    margin-left: -100px;
    margin-top: 190px;
  }

  #d5 {
    margin-left: -250px;
    margin-top: 148px;
  }

  #d6 {
    margin-left: -100px;
    margin-top: -120px;
  }

  #d33 {
    margin-left: -165px;
    margin-top: -5px;
  }

  #d44 {
    margin-left: -50px;
    margin-top: 185px;
  }

  #d55 {
    margin-left: 0px;
    margin-top: 50px;
  }

  #d66 {
    margin-left: 210px;
    margin-top: 18px;
  }

  .floating-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
}

.floating-tag {
  position: absolute;

  /* background: #111; */
  border: 1px solid #6147BD;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 30px 10px rgba(200, 177, 228, 0.2);
}

/* Button container ko fixed top par rakhna */


.fixit-btn {
  width: 101px;
  height: 45px;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  gap: 6px;
  border: 0.5px solid #7d3cff;
  border-radius: 8px;
  background: #7d3cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  box-shadow: 0 0 10px rgba(125, 60, 255, 0.6);
  position: relative;
  /* pseudo-element ke liye */

  /* overflow: hidden; */
}


.fixit-logo:first-child(1) {
  position: absolute;
  top: -10px;
  /* thoda upar se dikhाना */
  left: 5px;
  /* left side me set karo */
  width: 40px;
  height: 40px;
  z-index: -1;
  /* button ke piche */
}




/* Fix It logo */
.fixit-logo {
  width: 70px;
  height: 60px;
  position: relative;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-tag.yellow {
  background: yellow;
  color: black;
  border-color: yellow;
}

.floating-tag.purple {
  background: #7d3cff;
  border-color: #7d3cff;
}

.floating-tag.green {
  background: #00ff99;
  border-color: #00ff99;
  color: black;
}

.floating-tag.orange {
  background: orange;
  border-color: orange;
}

.floating-tag {
  position: absolute;
  background: #111;
  border: 1px solid #6147BD;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 30px 10px rgba(200, 177, 228, 0.2);
  display: flex;
  flex-direction: column;
  /* span को नीचे लाने के लिए */
  align-items: center;
}



.fixit-btn {
  pointer-events: auto;
  /* button को clickable बनाए */
  cursor: pointer;
  z-index: 5;
}

.ux-image {
  width: 287px;
  height: 286px;
  border-radius: 0px;
  position: relative;
  left: 450px;
  top: 25px;
  z-index: 0;
  transform: rotate(-16.65deg);
}

@media (max-width: 768px) {
    .ux-header {
    height: 52px;
  }
}

.trail {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #b18cff;
  /* purple glow like in image */
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  box-shadow: 0 0 15px #b18cff, 0 0 30px #b18cff;
  animation: fade 0.6s forwards;

}

@keyframes fade {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

#heading {
  position: relative;
  /* important for absolute trail positioning */
  display: inline-block;
  padding: 20px;
  cursor: default;
  
  /* We craft UX that makes them stay, engage, and convert. */


font-family: 'DM Sans';
font-style: normal;
font-weight: 700;
font-size: 64px;
line-height: 72px;
/* or 112% */
text-align: center;
text-transform: uppercase;

color: #F5F5F5;
z-index:100;


}

/* our section */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  /* Desktop width जैसा आपने दिया */
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 40px;
  /* Desktop */
  font-weight: 600;
  line-height: 52px;
}

.section-title span {
  color: #6147BD;

  font-style: italic;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .section-title {
    max-width: 305px;
    /* आपके दिए mobile width के हिसाब से */
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
  }

  .section-title span {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    line-height: 40px;
    text-align: center;
    color: #6147BD;
  }

  .section-title p {
    font-size: 14px;
    line-height: 20px;
    color: #aaa;
    margin-top: 8px;
  }
}

/* our section end */

/*service section */

.services {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap;
}

/* Group 1171276189 */




.service-card:nth-child(1) .service-icon img {
 /* transition: 0.3s ease-in-out; */
}

.service-card:nth-child(1):hover .service-icon img {
  width: 90px;
  height: 90px;
  content: url("../img/icone3.png");
}

/* Service 2 */
.service-card:nth-child(2) .service-icon img {
/*  transition: 0.3s ease-in-out; */
}

.service-card:nth-child(2):hover .service-icon img {
  width: 90px;
  height: 90px;
  content: url("../img/icone1.png");
}

/* Service 3 */
.service-card:nth-child(3) .service-icon img {

 /* transition: 0.3s ease-in-out; */
}

.service-card:nth-child(3):hover .service-icon img {
  width: 90px;
  height: 90px;
  content: url("../img/icone2.png");
}

.service-card {
  /* 👉 Default purple gradient */
  background: linear-gradient(135deg, #6349C0, #0E0238);
  border-radius: 15px;
  padding: 30px 20px;
  width: 400px;
  height: 360px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* box-shadow: 0 8px 25px rgba(122, 47, 244, 0.4); */
}

.service-card h3 {
  margin-top: 15px;
  font-size: 30px;
}

.service-card p {
  font-size: 0.95rem;
  margin: 15px 0;
  color: #eee;
}

.service-card a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
  border-bottom:1px solid #fff;
}

.service-card a:hover {
  color: #d0a7ff;
}

/* 👉 Hover me wapas light/transparent ho */
.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  /*transform: translateY(-8px);*/
  box-shadow: 0 5px 20px rgba(97, 96, 96, 0.6) inset;
}

.service-icon {
  width: auto;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* center align and spacing */
}

.service-icon img {
  width: 150px;
  /* icon ka actual size */
  height: 150px;
  object-fit: contain;
  border-radius: 50px;

}

.section-title p {
  font-size: 0.95rem;
  color: #b5b5b5;
  margin-top: 10px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.project-text {
  flex: 1;
}

.project-text h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.project-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ccc;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: linear-gradient(90deg, #7a4af9, #9b6bff);
  border-radius: 25px;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* Slider */
.project-slider {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-slide {
  flex: -1;
  position: relative;
}

.main-slide img {
  width: 316px;
  border-radius: 12px;
  display: none;
}

.main-slide img.active {
  display: block;
}

.preview-slide {
  flex: 1;
 
}

.next-btn {
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  background-image: url("img/Group\ 1171275978.png");
  background-size: cover;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
  left: 120%;
}



.next-btn span {
  font-size: 20px;
  color: #fff;
}

.preview-slide img {
  width: 282px;
  height: 286px;
  object-fit: cover;
  filter: blur(3px);
  opacity: 0.45;
  border-radius: 12px;
}



@media (max-width: 768px) {
  .project-container {
    width: 390px;
    height: 675px;
    flex-direction: column;
    /* Column layout */
    text-align: center;
    gap: 0px;
    margin: 0 auto;
    overflow: hidden;
  }

  /* Text नीचे आए */
  .project-text {
    order: 2;
    padding: 10px 15px;
    background: #0d0d1a;
    /* Dark background for readability */
    border-radius: 0 0 12px 12px;
  }

  .project-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .project-text p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ccc;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  /* Slider ऊपर आए */
  .project-slider {
    order: 1;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-slide {
    width: 100%;
    position: relative;
  }

  .main-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: none;
  }
  

  .main-slide img.active {
    display: block;
  }


  /* Preview नीचे नहीं जाएगा, blurred bg जैसा रहेगा */
  .preview-slide {
    display: none;
    /* mobile में hide कर दिया */
  }

  /* Arrows (Next/Prev) दोनों side में */
  .next-btn {
    width: 40px;
    height: 40px;
    background-size: contain;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .prev-btn {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-image: url("../img/left-arrow.png");
    /* अपना left arrow png लगाना */
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
  }

  .prev-btn {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(50%);
    background-image: url("../img/left-arrow.png");
    /* अपना left arrow png लगाना */
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
  }

}

/* jerny section */

/* Desktop Styles */
.cta-section {
  width: 1240px;
  height: 463.45px;
  background: #0d0d1a;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  position: relative;
  /* dots bg ke liye */
}

.dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: transparent;
}

.dots-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.17;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-radius: 20px;
  gap: 40px;
  padding:  0px;
  position: relative;
  z-index: 1;
  border:1px solid rgb(92 110 172 / 23%)
  
  /* text/image dots ke upar dikhne ke liye */
}

/* 📱 Mobile Styles */
@media (max-width: 768px) {
  .cta-section {
    width: 390px;
    height: 568px;
    padding: 1px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-image {
    order: -1;
    text-align: center;
  }

  .cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .cta-text {
    padding: 0;
  }

  .cta-text h1 {
    font-size: 1.6rem;
  }

  .cta-text p {
    font-size: 0.95rem;
  }

  /* Mobile par dots background hide */
  .desktop-only {
    display: none;
  }

  .cta-blur-overlay {
    display: none;
  }


}

/* .cta-blur-overlay {
  position: absolute;
  left: 600px;
  border: 2px solid beige;
  width: 121px;
  height: 636px;
  background-image: url("../img/shadow.png");
  background-position-x: -60px;
  filter: blur(15px);
} */

/* jurny end */

/* our Ecosystem */
.ecosystem {
  text-align: center;
  padding: 80px 20px;
  background: #0d0d0d;
  color: white;

}

.ecosystem .subtitle {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.ecosystem h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ecosystem h2 span {
  background: linear-gradient(135deg, #6a5af9, #8c6aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecosystem .description {
  color: #bbb;
  max-width: 751px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  line-height: 1.6;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cards .card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 608px;
  height: 188px;
  position: relative;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 500;
  width: 339.25px;
  color: #FFFFFF;
}

.card p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

.card .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  background-image: url("img/guidance_up-arrow.png");
  /* transition: transform 0.3s; */
}

.card:hover {
  border-color: #6a5af9;
  background: #6147BD;

}

.card:hover .arrow {
  transform: rotate(35deg);

}

/* our Ecosystem */
.ecosystem {
  text-align: center;
  padding: 80px 20px;
  background: #0d0d0d;
  color: white;
}

.ecosystem .subtitle {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.ecosystem h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ecosystem h2 span {
  background: linear-gradient(135deg, #6a5af9, #8c6aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecosystem .description {
  color: #bbb;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  position: relative;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

.card .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.5rem;
  color: #6a5af9;
  transition: transform 0.3s;
}

.card:hover {
  border-color: #6a5af9;
  box-shadow: 2px 2px 6px #d4d2d2 inset;
}

.card:hover .arrow {
  transform: rotate(28deg);
}

/* our Ecosystem end */
/* our value reviews */
.reviews-section {
  text-align: center;
  padding: 60px 20px;
  background: #0d0d0d;
  color: #fff;
}

.reviews-section h5 {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 10px;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.reviews-section h2 span {
  background: linear-gradient(135deg, #6a5af9, #8c6aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-section p {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  overflow: hidden;
}

.reviews-grid {
  display: flex;
  justify-content: center;
}

.review-images {
  height: 450px;
  padding: 10px;
  background: #1a1a1a;
  border-radius: 12px;
  background-image: url("../img/Component 139.png");
  width: 90%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: relative;
}


.review-images img:hover {
  transform: scale(1.05);
}

/* our value reviews end*/

/* image section */
.faq-section {
  padding: 50px 20px;
  max-width: 1240px;
  margin: auto;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Side (Accordion) */
.faq-left {
  flex: 1 1 55%;
}

body {
  background: #111111;
  font-family: 'Inter', Arial, sans-serif;
}

.faq-left {
  min-width: 360px;
}

.faq-main-container {
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
  padding: 72px 56px 0 56px;
  box-sizing: border-box;
}

.faq-left {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  position: relative;
  flex-direction: column;
}

.faq-item:hover {
  background: #1a1a1a;
}

.faq-item h3 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  align-self: flex-start;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s;
  position: absolute;
  right: 10px;
  top: 20px;
  z-index: 2;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.74, 1.45, .63, 1.1);
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 10px;
  width: 98%;
  padding-left: 2px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-right {
  flex: 1 1 420px;
  color: #fff;
  margin-top: 6px;
  margin-left: 32px;
}

.faq-right h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.16;
}

.faq-right h2 span {
  color: #7b5dff;
  font-style: italic;
}

.faq-right p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: justify;
}

.faq-link {
     display: inline-block;
    margin-top: -20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    font-weight: 500;
    transition: 0.3s;
    width: 114px;
    height: 30px;
}

.faq-link:hover {
   color: #6147BD;
  border-color: #6147BD;
}

@media (max-width: 820px) {
  .faq-main-container {
    flex-direction: column;
    gap: 32px;
    padding: 24px 12px 0 12px;
  }

  .faq-left,
  .faq-right {
    flex: 1 1 100%;
    margin-left: -20px;
    max-width: 100%;
  }

  .faq-right h2 {
    text-align: center;
  }
}

.view-link {
  display: inline-block;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.view-link:hover {
  color: #7b5dff;
  border-color: #7b5dff;
}

/* Tilted Images */
.images-row {
  display: flex;
  justify-content: center;
  gap: 0px;
  height: 364px;
  position: relative;
  top: 50px;
  /* border: 2px solid beige; */
  overflow: hidden;
}

.images-row img {
  width: 213.32px;
  height: 284.42px;
  transform: rotate(var(--angle));
  transition: all 0.4s ease;
  position: relative;
  top: 110px;
  /* default niche */
  cursor: pointer;
  border:5px solid #fff;
  z-index: 0;
 
}

.images-row img.active {
  transform:scale(1.08);
  top: 20px;
  z-index: 10;
}
      .img1{
        left: 15px;
      }
/* Responsive for Mobile */
@media (max-width: 768px) {

  .faq-link {
    margin-left: 140px;
  }
  .faq-container {
    display: grid;
    grid-template-columns: auto auto auto;

  }

  .faq-right h2{
    text-align: center !important;
  }

  .img-ux
  /* Right side (heading) ko top par le aao */
  .faq-right {
    order: -1;
    /* sabse pehle aayega */
    text-align: center;
    margin-bottom: 30px;
  }

  .faq-left {
    order: 2;
    /* heading ke baad aayega */
  }
.images-row{
  width: 418px;
  height: 148px;
  margin-left: 20px !important;
}
.img1{
  left: 27px;
  }


  .images-row img {
    width: 88px;
    height: 118px;
    top: 61px;
    margin: 0px 5px;
  }
}

/* image section end */
/* footer section */
.footer {
  background: #0e0e0e;
  color: #fff;
  padding-top: 0;
  font-family: Arial, sans-serif;
  z-index: 1;
  position: relative;
}

/* Top Image Section */
.footer-images {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.footer-images img {
  width: 210px;
  margin: 10px;
  /* transform: rotate(20deg); */
  transition: transform 0.5s ease;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-images img.active {
  transform: translateY(-20px) scale(1.1);
  z-index: 10;
}


/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  padding: 40px 20px;
  border-top: 0px solid #333;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: transparent;
  padding: 5px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: transparent;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  /* Home */


font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-size: 16px;
line-height: 24px;
/* or 150% */

color: #E0E0E0;


}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 8px 0;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: #fff;
}

/* Bottom Bar */

.footer-policies a {
  margin: 0 20px;
  color: #ccc;
  text-decoration: none;
}

.footer-policies a:hover {
  color: #fff;
}

.footer-content{padding-top:50px !important;}

/*---- about.css ----*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  background: #111111;
  color: #d1d5db;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
}

.navbar {
  background: #111111;
  transition: background-color 0.3s ease;
  /* Smooth transition */
  padding: 1.25rem 0;
  height: 111px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-collapse {
  /* background-color: #111111 !important; */
  margin-left: -110px;
}

.navbar .scrolled {
  background: rgba(0, 0, 0, 0.85);
  /* Scroll background color */
}

.navbar .logo {
  background-image: url("../img/LOGO.png");
  background-size: 190px 30px;
  background-repeat: no-repeat;
  width: 200px;
  height: 30px;
  margin-left: 0px;

}

/* Fullscreen Top Offcanvas */


.navbar-brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.15rem;
}

.navbar-nav .nav-link {
  color: #a3a3ac;
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color 0.15s;
  font-size: 1.05rem;

}

.navbar-nav .nav-link.active {
  color: #ebeaee;
}

.btn-gradient {
  background: linear-gradient(90deg, #a78bfa, #6366f1 60%);
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.03rem;
  box-shadow: 0 2px 16px #a78bfa22;
}

/* about header */
.about-header {
  position: relative;

  text-align: center;
  max-width: 100%;
  height: 277px;
  /* background-image: url("../img/about.jpg"); */
  background-size: cover;
  background-position-y: -373px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-header h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  /* 👈 heading और badge के बीच space */
}

/* Mobile Screen */
@media (max-width: 768px) {
  .about-header {
    min-width: 430px;
    height: 126px;
    left: 0;
    /* mobile me left align better rahega */
    background-image: url("../img/about.jpg");
    background-size: cover;
    background-position-y: -399px;
  }

  .navbar-collapse {
    background-color: #111111 !important;
    margin-left: -10px;
  }

  .navbar .logo {
    background-image: url("../img/LOGO 2.png");
    background-size: 29px 30px;
    background-repeat: no-repeat;
    /* width: 200px;
    height: 30px; */
    margin-left: 0px;

  }

  .btn-gradient,
  #b1 {
    width: 90%;
    /* Mobile full width minus padding */
    max-width: 155px;
    display: block;
    text-align: center;
    margin-top: -50px;
  }

  .navbar {
    background: #111111;
    transition: background-color 0.3s ease;
    /* Smooth transition */
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .about-header h1 {
    font-size: 1.8rem;
  }

}

@media (max-width: 450px) {
  .about-header {
    background-image: url("../img/about.jpg");
    background-size: cover;
    background-position-y: -537px;
  }
}

.about-desc {
  background: linear-gradient(180deg, #111111 85%, transparent 100%);

  border-radius: 8px;
  padding: 1.4rem 1.7rem 1.3rem 1.7rem;
  max-width: 869px;
  /* desktop size */
  height: 281px;
  height: auto;
  margin: auto;

 
  margin-bottom: 2.9rem;
  line-height: 1.65;
  box-shadow: 0 3px 30px #17173a2c;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  /* left white */
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  /* right white */
  border-top: 1px solid #2E2E3E;
  /* top black */
  border-bottom: 1px solid #2E2E3E;
  /* bottom black */
  
  
  /* Explore how we craft meaningful digital experiences through strategy, creativity, and user-first thinking. */


font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 28px;
/* or 140% */
text-align: center;

color: #E0E0E0;


}




/* Mission/Vision Cards */
.card-glass {
  background: linear-gradient(160deg, #111111 90%, #1e1e27 100%);
  border: 1px solid #33334d;
  border-radius: 16px;
  /* desktop ke liye */
  overflow: hidden;
  box-shadow: 0 4px 35px #14122c38;
  transition: transform 0.11s;
  height: 450px;
  /* desktop height */
  max-width: 608px;
  /* desktop width ek card ka */
  margin: auto;
}

.card-glass:hover {
  transform: translateY(-7px) scale(1.02);
}

.card-glass img {
  width: 100%;
  height: 296px;
  /* desktop image height */
  object-fit: cover;
  object-position: center;
  filter: brightness(0.89) saturate(1.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 1px solid #33334d;
}

.card-glass .card-body {
  padding: 1.2rem 1.3rem 1.1rem;
  text-align: center;
}

.card-glass .card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #a78bfa;
  margin-bottom: 0.6rem;
}

.card-glass .card-text {

font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-size: 16px;
line-height: 24px;
text-align: center;

color: #E0E0E0;


}

/* 📱 Mobile Screen (max 768px) */
/* Mobile specific */
@media (max-width: 768px) {
  .card-glass {
    height: 196px;
    max-width: 183px;
    /* ek card ka width */
    border-radius: 8px;
    margin: auto;
  }

  /* .about-desc {
    display: none;
  } */

  .card-glass img {
    height: 68px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #33334d;
  }

  .row.g-4 {
    gap: 24px;
    justify-content: center;
    /* center align karne ke liye */
  }
}

/* end */
/* Process section */
.process-card {
  /* background: linear-gradient(155deg,#111111 90%,#1e1e27 100%); */
  border-radius: 1.05rem;
  /* box-shadow: 0 4px 28px #18162e2c; */
  /* border: 1.1px solid #32334b; */
  /* padding: 1.25rem 1.3rem 1.3rem; */
  margin-bottom: 1.5rem;
}

.process-img {
  width: 100%;
  max-width: 630px;
  filter: brightness(0.94) grayscale(30%);
  border-radius: 1rem;
  margin: auto;
  display: block;
}

.process-title {
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 10px;
}

.process-list {
  color: #b2bad6;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.25em;
}

.process-list li:before {
  content: '';
  position: absolute;
  left: 0.13em;
  top: 0.55em;
  width: 0.56em;
  height: 0.56em;
  border-radius: 50%;
  background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
  display: inline-block;
  margin-right: 0.7em;
}

/* Testimonial */
.testimonial-card {
  background: #111111;
  box-shadow: 0 2px 23px #29275118;
  border: 1.1px solid #242349;
  border-radius: 16px;
  max-width: 1250px;
  height: 495px;
  margin: auto;
  margin-bottom: 2.7rem;
  padding: 1.6rem;
  position: relative;
  color: #c3c6db;
}

/* ✅ Testimonial main text */
.testimonial-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #c3c6db;
  max-width: 670px;
  padding: 35px;
  height: 88px;
}

/* ✅ Our Philosophy Section */
.philosophy-card {
  max-width: 670px;
  margin: 2rem auto 0;
  padding: 1rem 0;
  color: #c3c6db;
  font-family: "DM Sans", sans-serif;
}

.philosophy-card .philosophy-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}

.philosophy-card p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 1rem;
  color: #b2bad6;
}

.testimonial-text,
.author {
  display: block;
}

.philosophy-card {
  display: none;
  /* Philosophy section hidden on desktop */
}

/* ✅ Mobile screen */
@media (max-width: 768px) {

  .testimonial-text,
  .author {
    display: none;
    /* hide testimonial text + author on mobile */
  }

  .philosophy-card {
    display: block;
    /* show Our Philosophy section only on mobile */
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-text {
    max-width: 347px;
    font-size: 20px;
    line-height: 28px;
  }

  .philosophy-card {
    max-width: 347px;
    padding: 0.5rem 0;
  }

  .philosophy-card .philosophy-title {
    font-size: 20px;
    line-height: 28px;
  }

  .philosophy-card p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ✅ Legend quote icon exactly border line pe */
.testimonial-card legend {
  padding: 0 0.6rem;
  /* border ke beech mein thoda spacing */
}

.testimonial-card legend i {
  color: #a78bfa;
  font-size: 2.2rem;
  opacity: 0.6;
}

/* ✅ Author section */
.quote-image {
  position: relative;
  bottom: 60px;
}

.quote-image img {
  width: 105px;
  height: 85px;
  transform: rotate(0deg);
}

.testimonial-card .author {
  width: 356px;
  height: 119px;
  font-size: 32px;
}

.testimonial-card .author-info strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;

}

.testimonial-card .author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #b2bad6;
}

.testimonial-card .author i {
  color: #a78bfa;
  font-size: 1.3rem;
  vertical-align: middle;
  transition: color 0.3s;
}

.testimonial-card .author i:hover {
  color: #fff;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 390px;
    border-radius: 4px;
    padding: 1rem;
  }

  .testimonial-card legend i {
    font-size: 1.6rem;
  }
}

/* CTA Card */
.cta-card {
  background: linear-gradient(142deg, #211e32 77%, #222133 100%);
  border-radius: 1.1rem;
  box-shadow: 0 4px 28px #3830621c;
  border: 1.1px solid #2f2943;
  padding: 2.2rem 2.2rem 2rem 2.2rem;
}

.cta-card h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.5px;
}

.cta-card span {
  color: #a78bfa;
}

.cta-card .btn-gradient {
  margin-top: 1.35rem;
  font-size: 1rem;
}

/* Footer */
.footer-bg {
  background: #111111;

  color: #a1a1aa;
  font-size: 1.02rem;
  padding: 2.2rem 0 1.1rem 0;
  margin-top: 3rem;
  border-top: 2.5px solid #282748;
}

.footer-bg h5,
.footer-bg h6 {
  color: #a78bfa;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .4px;
}

.footer-bg ul li a {
  color: #cdd0eb;
  transition: color .13s;
}

.footer-bg ul li a:hover {
  color: #a78bfa;
  text-decoration: underline;
}

.footer-bg .fa-envelope,
.footer-bg .fa-phone,
.footer-bg .fa-map-marker-alt {
  color: #6366f1;
  margin-right: 0.55em;
}

.footer-bg .copyright {
  margin-top: 1.6rem;
  color: #757575;
}

/* Responsive */
@media (max-width: 991px) {
  .about-header h1 {
    font-size: 2rem;
  }

  .cta-card {
    padding: 1.5rem 1rem;
  }

  .about-desc {
        padding: 1.1rem 1rem;
        margin: 10px;
        font-size: 16px;
  }
}

@media (max-width: 767px) {
  .card-glass img {
    height: 120px;
  }

  .process-img {
    max-width: 100%;
  }

  .footer-bg {
    font-size: 0.98rem;
  }
}

.innovation-badge-exact {
  position: relative;
  display: inline-block;
  background: rgba(35, 34, 60, 0.48);
  color: #e4e0ff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15px;
  padding: 0.75rem 2.3rem;
  border-radius: 8px;
  text-align: center;
  line-height: normal;
  /* allow multi-line content */
  z-index: 1;
  border: 1px solid #706e6e;
  backdrop-filter: blur(8px);
  max-width: none;
  /* remove width restriction */
  height: auto;
  /* let height grow naturally */
  overflow: visible;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  /* optional: keeps it on one line */
}

.innovation-badge-exact span {
  color: #624AB2;
  font-weight: 600;
  font-style: italic;
}

/* Inner shadow for glass effect */
.innovation-badge-exact::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  z-index: -1;
  box-shadow: 0 2px 6px 0 #0003 inset;
  opacity: 0.25;
}

/* 📱 Mobile styles */
@media (max-width: 576px) {
  .innovation-badge-exact {
    width: 315px;
    height: 36px;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    text-align: center;
  }

  .innovation-badge-exact span {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
  }
}

/*---- header.css ----*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* --- AUTO-ADDED: Accessibility, variables and responsive helpers --- */

/* universal box-sizing */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* margin-left: 100px;
    margin-right: 100px; */
}

.col {
    flex: 1 1 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar {
    background: #111111;
    transition: background-color 0.3s ease;
    padding: 1.25rem 0;
    height: 111px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    width: 1240px;
    justify-content: space-between;
    /* width: 100%; Keep logo left, nav right */
    padding: 0 15px;
}

.navbar .logo {
    background-image: url("../img/LOGO.png");
    background-size: 190px 30px;
    background-repeat: no-repeat;
    width: 200px;
    height: 30px;
    margin-left: 0;
    flex: 0 0 auto;
}

@media (max-width: 992px) {
    .navbar .logo {
        background-image: url("../img/LOGO 3.png");
        background-size: 40px 30px;
        background-repeat: no-repeat;
        width: 40px;
        height: 30px;
        margin-left: 0;
        flex: 0 0 auto;
    }

    .reviews-section {
        display: none;
    }
}

/* Only show toggler on mobile */
.navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    padding: 0.25rem;
    display: none;
    /* Hide by default */
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }

    /* Offcanvas/menu fullscreen on mobile */
    .navbar-collapse {
        position: fixed;
        top: 111px;
        left: 0;
        width: 100%;
        height: calc(100vh - 111px);
        background: #111111;
        display: flex;
        flex-direction: column;
        padding: 2rem;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        margin-left: 0;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    /* Contact Us button: center, stack after mobile menus */
    #b1.cta-button {
        position: relative;
        left: auto;
        right: auto;
        text-align: start;
    }

    /* Mobile menus: align left, stack vertically */
    .navbar-nav.d-lg-none {
        display: flex;
        flex-direction: column;
        margin-left: 175px;
        position: relative;
        bottom: 180px;
    }

    /* Hero for mobile: centering, no overlap */
    .hero11 {
        padding: 20px;
        margin: 40px 0;
        width: 100%;
        text-align: start;
    }

    .hero11 h1,
    .hero11 p {
        text-align: left;
        width: 100%;
    }
}

/* Desktop nav menu spacing */
@media (min-width: 992px) {
    .collapse.navbar-collapse {
        flex-grow: 1;
        justify-content: flex-end;
    }

    .navbar-nav.me-auto {
        margin-left: 50px;
    }
}

@media (min-width:662px) {
    .navbar-collapse {
        padding: 0rem;
    }

}

/* Toggler icon (unchanged, should work fine if Bootstrap JS is present) */
.toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.navbar-toggler.collapsed .top-bar,
.navbar-toggler.collapsed .bottom-bar {
    transform: none;
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}



/* Contact Us button base styling (unchanged, only positioning fixed) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, #6147BD, #6147BD);
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    width: 150px;
    box-shadow: 0 4px 10px rgba(132, 94, 247, 0.5);
    font-family: sans-serif;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 100;
	
	/* Get Your Quote Now */

font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 28px;
/* identical to box height, or 175% */
text-align: center;

color: #FFFFFF;


	
}
.mt120{margin-top:120px;}

/* Nav links: no change, just color and hover */
.navbar-nav .nav-link {
    color: #a3a3ac;
    margin-right: 1.5rem;
    
    transition: color 0.15s;
    font-size: 1.05rem;
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;

}

.navbar-nav .nav-link.active {
    color: #ebeaee;
}

.navbar-nav .nav-link:hover {
    color: #ebeaee;
    text-decoration: underline;
}

/*---- Test.css ----*/
 .tag-image {
    position: absolute;
    /* floating-tag के बाहर भी position control करने के लिए */
    width: 98px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    /* top और left inline style से control करेंगे */
  }

  .tag-image {
    width: 80px;
    height: 40px;
    background-size: 76px 40px;
    background-repeat: no-repeat;
    margin-top: 5px;
    /* div के नीचे थोड़ा space */
  }

  .cards-container {
    width: 1240px;
    height: 495px;
    position: relative;
    border-radius: 16px;
  }

   .testimonial-card {
            background: linear-gradient(180deg, #3a2c51 0%, #61479b 100%);
            border-radius: 1rem; /* 16px */
            padding: 2rem; /* 32px */
            margin: 1rem; /* 16px */
            width: 350px;
            flex-shrink: 0; /* Prevents cards from shrinking */
            display: flex;
            flex-direction: column;
            gap: 1rem; /* Space between elements inside the card */
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
        }

          /* --- Hover Effect for Cards --- */
        .testimonial-card:hover {
            transform: scale(1.05); /* Scale up on hover */
            box-shadow: 0 0 30px rgba(127, 86, 217, 0.7); /* Purple glow */
            z-index: 10;
        }


  /* Cards' specific positions and rotations */
  .card1 {
    left: 100px;
    transform: rotate(-8deg);
  }

  .card11 {
    left: 50px;
    transform: rotate(-8deg);
  }

  .card2 {
    left: 325px;
    transform: rotate(-5deg);
  }

  .card3 {
    left: 600px;
    transform: rotate(4deg);
  }

  .card4 {
    left: 875px;
    transform: rotate(-7deg);
  }

  /* If you need more cards, copy format and adjust positions */

  /* Star rating */
  .stars {
    position: absolute;
    left: 12px;
    top: 10px;
    display: flex;
    gap: 4px;
  }

  .stars svg {
    width: 14px;
    height: 14px;
  }

  /* Pill/Badge */
  .pill {
    position: absolute;
    top: 12px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 6px 10px;
    font-size: 8px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 400;
    width: 120px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quote {
    position: absolute;
    left: 18px;
    top: 44px;
    width: 220px;
    height: 115px;
    font-size: 15px;
    line-height: 22px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.93);
    overflow-wrap: break-word;
  }

  .author {
    position: absolute;
    left: 16px;
    bottom: -5px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 220px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex: 0 0 42px;
    background: #eee;


  }

  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .author-info {
    display: flex;
    flex-direction: column;
  }

  .author-info .name {
    font-weight: 700;
    font-size: 13px;
  }

  .author-info .title {
    font-size: 11px;
    opacity: 0.85;
    margin-top: 2px;
  }

  /* Active Card */

  /* emoji animation*/

  .main-container {
    position: relative;
    bottom: 310px;
    left: 630px;
    width: 102px;
    height: 45px;

    margin-left: 0px;
  }

  /* Brush Strokes */
  .brush-strokes {
    position: absolute;
    left: 8px;
    top: 15px;
    width: 80px;
    height: 79px;
    z-index: 1;
    transition: top 0.5s ease;
    /* smooth move */
  }

  .brush-strokes.up {
    top: 0px;
  }

  .brush-strokes img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Puppet */
  .puppet {
    position: absolute;
    left: 22px;
    top: -7px;
    width: 113px;
    height: 75px;
  }

  .puppet img {
    width: 135%;
    height: 100px;
    display: block;
    position: relative;
    top: 0px;
    z-index: 10;
    transition: top 0.5s ease;
  }


  .puppet img.up {
    top: -10px;
  }


  /* Button */
  .fixit-btn {
    position: absolute;
    left: 0;
    top: 38px;
    width: 101px;
    height: 45px;
    background: #6945d5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    outline: none;
    z-index: 3;
    cursor: pointer;
    transition: box-shadow 0.2s;
    filter: drop-shadow(0 13px 9px #6945d520);
  }

  .fixit-btn:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    z-index: -1;
    box-shadow: 0 0 1px 1px #9176faa0;
    opacity: 0.9;
    animation: btnGlow 2s infinite alternate;
    pointer-events: none;
  }

  /* navbar*/
  /* Common fixes for nav bar (desktop & mobile) */
  @media (max-width: 768px) {
    .main-container {
      bottom: 70px;
      left: 240px;
    }
	
	.services{flex-wrap: wrap !important;}
	.service-card {flex: auto !important;}
	
	

  }


   .services-section1 {
      padding: 40px 0px;
      
    }

    .services-section1 h5 {
      color: #ccc;
      margin-bottom: 10px;
      font-weight: normal;
    }

    .services-section1 h1 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .services-section1 h1 span {
      color: #7d5fff;
    }

    .services-section1 p {
      max-width: 600px;
      margin: 0 auto 30px;
      color: #ccc;
      font-size: 14px;
      line-height: 1.6;
    }

    /* Slider Container */
   .services-section1 .services-container1 {
      position: relative;
      width: 100%;
      max-width: 434px;
      margin: auto;
      height: 240px;
      overflow: hidden;
      touch-action: pan-y;
      user-select: none;
    }

   .services-section1 .service-card1 {
      position: absolute;
      top: 0;
      transition: all 0.5s ease;
      opacity: 0.8;
    }

   .services-section1 .service-card1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      margin-bottom: 0px;
      border: 1px solid;
border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #2E2E3E 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(46, 46, 62, 0.2) 100%);
    }

    /* Center Image */
   .services-section1 .service-card1.active {
      width: 228px;
      height: 180px;
      left: 103px;
      z-index: 3;
      opacity: 1;
    }

    /* Left Image */
    .services-section1 .service-card1.left {
      width: 228px;
      height: 180px;
      left: -141px;
      z-index: 2;
      border: 1px solid;
border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #2E2E3E 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(46, 46, 62, 0.2) 100%);
    }

    /* Right Image */
   .services-section1 .service-card1.right {
      width: 228px;
      height: 180px;
      left: 347px;
      z-index: 2;
      border: 1px solid;
border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #2E2E3E 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(46, 46, 62, 0.2) 100%);
    }

   .services-section1 .service-card1 h3 {
      background: linear-gradient(128.9deg, #6349C0 3.22%, #0E0238 100%);
      margin-top: -5px;
      width: 228px;
      padding: 8px;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      font-weight: 500;
      border: 1px solid;

border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, #2E2E3E 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(46, 46, 62, 0.2) 100%);
    border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
}

.services-section1{
  display: none;
}
@media screen and (max-width:600px) 
{
 .services-section1{
  display: block;
 } 
}


 .services {
      display: flex;
      gap: 20px;
      flex-wrap: nowrap;
      overflow: hidden;
      /* keeps them in one line */
    }

    .service-card {
      flex: 0 0 30%;
      /* adjust width */
      padding: 20px;
      border-radius: 10px;
      overflow: hidden;
    }

/*---- faq.css ----*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* Custom styles to match the design */
body {
  background-color: #000;

}

.bg-dark {
  background-color: #000 !important;
}

.text-light {
  color: #fff !important;
}

/* What services does UXPacific offer? */

.faq_desc{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
line-height: 32px;

}



.btn-outline-light {
  color: #fff;
  border-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #fefcfc;
}

.accordion-item {
  background-color: #111;
  border: 1px solid #5c6eac !important;
  color: #fff;

}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
}

.f18{font-size:18px !important; }
.f20{font-size:20px !important; }
.f24{font-size:24px !important; color:#DBDBDB !important; font-family: 'Inter';
font-style: normal;
font-weight: 400;
line-height: 32px;
padding:24px;
}
.p-20{padding:0px 20px 20px 20px;}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #dcd1d1;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%20fff'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%20fff'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e ") !important;
}



.accordion-body {
  color: #fff;
}

/* Footer styles */

.style1 {

  filter: blur(60px);
  color: #fff;
  box-shadow: 0px 0px 80px 40px #6147bd;
}

.style2 {

  filter: blur(70px);
  color: #fff;
  height: 100px;
  box-shadow: 0px 0px 60px 40px #5b43b3;
}

.style3 {

  filter: blur(70px);
  color: #fff;
  box-shadow: 0px 0px 10px 20px #6147bd;
}



.style4 {

  filter: blur(70px);
  color: #fff;
  box-shadow: 0px 0px 20px 20px#4f32b7;
}


.wrapper {
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

.Effect {
  display: flex;
  align-items: center;
  width: 200px;
  height: 53px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  color: #ddd;
  background-color: #2e25f9;
  border-radius: 20px;
  border: 2px solid #0c09a4;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
}

.Effect span {
  position: relative;
  z-index: 2;
}

.Effect div {
  position: relative;
  z-index: 2;
}

.Effect:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  transition: all 1.20s;
  justify-content: center;
}

.Effect:hover {
  color: #090909;
}

.Effect:hover:after {
  width: 100%;
}

/*---- style.css ----*/
.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: underline; /* Ensures no underline appears */
    margin-bottom: auto;
}

 .navbar-nav .nav-link:hover
 {
    color: #ffffff; /* Brighter white text */
   
    text-decoration: none; /* Ensures no underline appears */
}

.scroller {
    overflow: hidden;
    --_animation-duration: 25s;
    --_animation-direction: forwards;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    flex-grow: 1;
}

.scroller__inner {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding-block: 1rem;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll var(--_animation-duration) linear var(--_animation-direction) infinite;
    margin: 0;
}

.scroller__item {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #d1d5db;
}

/* Pause animation on hover */
.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

/* The keyframes for the scrolling animation */
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

/* --- Section Wrapper --- */
.reviews-section {
width: 100%;
max-width: 1600px;
text-align: center;
}

.reviews-section h2 {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.reviews-section h2 span {
color: #8b5cf6; /* A nice purple accent */
}

.reviews-section p {
max-width: 900px;
margin: 0 auto 2.5rem auto;
color: #9ca3af;
line-height: 2;
}

/* --- Main Container for the Animation --- */
.reviews-grid-container {
width: 100%;
overflow: hidden;
position: relative;
/* Creates a faded-out effect on the left and right edges */
-webkit-mask-image: linear-gradient(
  to right,
  transparent,
  black 10%,
  black 90%,
  transparent
);
mask-image: linear-gradient(
  to right,
  transparent,
  black 10%,
  black 90%,
  transparent
);
}

/* --- Flex Container for All Cards (Originals + Clones) --- */
.reviews-grid {
display: flex;
width: fit-content; /* Adjusts width to contain all cards */
/* Applies the scrolling animation - Speed increased from 60s to 40s */
animation: scroll 40s linear infinite;
}

/* This is the container for each set of cards (original and cloned) */
.review-card-set {
display: flex;
flex-shrink: 0;
}

/* --- Individual Testimonial Card Styling --- */
.testimonial-card {
border-radius: 1rem; /* 16px */
padding: 2rem; /* 32px */
margin: 1rem; /* 16px */
width: 360px; /* A bit wider for better text flow */
height: 360px; /* Make cards square */
flex-shrink: 0;
display: flex;
flex-direction: column;
gap: 1.5rem; /* Increased gap for better spacing */
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
color: #e5e7eb;
}

/* --- Card Header for Stars and Pill --- */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}

/* --- Star Rating Styles --- */
.stars {
display: flex;
gap: 0.25rem; /* 4px */
}

.stars svg {
width: 1.25rem; /* 20px */
height: 1.25rem; /* 20px */
}

/* --- Pill/Tag Styles --- */
.pill {
background-color: transparent;
color: #e5e7eb;
padding: 0.25rem 0.75rem;
border-radius: 6px;
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 1px solid rgba(255, 255, 255, 0.4);
height: 40px;
}

/* --- Quote Text Styles --- */
.quote {
font-size: 1.05rem; /* Slightly larger font */
line-height: 1.6;
color: #d1d5db;
flex-grow: 1; /* Allows the quote to take up available space */
font-weight: 500; /* Medium weight for readability */
text-align: left;
top: 70px;
}

/* --- Author Section Styles --- */
.author {
display: flex;
align-items: center;
gap: 0.75rem; /* 12px */
margin-top: auto; /* Pushes author to the bottom */
}

.avatar img {
width: 3rem; /* Larger avatar */
height: 3rem; /* Larger avatar */
border-radius: 50%;
border: 2px solid #fff;
object-fit: cover;
}

.author-info {
text-align: left;
}

.author-info .name {
font-weight: 700; /* Bolder name */
color: #fff;
font-size: 1.1rem;
}

.author-info .title {
font-size: 0.875rem; /* 14px */
color: #9ca3af;
font-weight: 400; /* Regular weight */
}

.accordion-item {
    background-color: #111; /* Even darker background for the item */
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #374151;
    overflow: hidden; /* Important for the max-height transition */
    transition: border-color 0.3s ease;
}

.accordion-item.active {
     border-color: #4F46E5; /* Highlight border when active */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #9CA3AF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-icon span {
    position: relative;
    width: 12px;
    height: 12px;
}

/* The plus/minus icon created with CSS pseudo-elements */
.accordion-icon span::before,
.accordion-icon span::after {
    content: '';
    position: absolute;
    background-color: #9CA3AF;
    transition: transform 0.3s ease;
}

/* Horizontal bar of the plus */
.accordion-icon span::before {
    width: 100%;
    height: 2px;
    left: 0;
    top: 5px;
}

/* Vertical bar of the plus */
.accordion-icon span::after {
    width: 2px;
    height: 100%;
    left: 5px;
    top: 0;
}

.accordion-item.active .accordion-icon {
     border-color: #E5E7EB;
}

.accordion-item.active .accordion-icon span::before,
.accordion-item.active .accordion-icon span::after {
     background-color: #E5E7EB;
}

/* Transform plus into a cross (x) when active */
.accordion-item.active .accordion-icon span::before {
    transform: rotate(45deg);
}
.accordion-item.active .accordion-icon span::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 20px 20px 20px;
    margin: 0;
    line-height: 1.6;
    color: #D1D5DB; /* Slightly lighter gray for answer text */
    font-size: 16px;
}

/* This is the main container for your images */
.images-row img:nth-child(1) {
    --translateX: -80%;
    --rotation: -9.89deg;
    z-index: 2;
}
.images-row img:nth-child(2) {
    --translateX: -50%;
    --rotation: 1.82deg;
    z-index: 1; /* Behind the first image */
}
.images-row img:nth-child(3) {
    --translateX: -15%;
    --rotation: 14.67deg;
    z-index: 2;
}
.images-row img:nth-child(4) {
    --translateX: 20%;
    --rotation: -5.34deg;
    z-index: 1; /* Behind */
}
.images-row img:nth-child(5) {
    --translateX: 55%;
    --rotation: 15.98deg;
    z-index: 2;
}

/* Footer Base */
@media (max-width: 768px) {
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
}

.social-icons {
  padding-top: 0px !important;
  margin-left: 200px;
  margin-top: -55px;

  width: 200px;
}

.footer-bottom {
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  margin-top: 5px;
  font-size: 11px;
}

.footer-policies {
  font-size: 10px;
}
}

.social-icons {
padding-top: 50px;
}

.social-icons a:hover {
background: #444;
}

/* Links + Contact Row */
.footer-links-row {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
gap: 20px;
padding: 0 0px 20px;
font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
border-top: 1px solid #333;
text-align: center;
color: #aaa;
display: flex;
flex-direction: row-reverse;
justify-content: space-around;
align-items: center;
}

.footer-policies {
margin-bottom: 18px;
margin-top: 20px;
}

.footer-copy {
margin-bottom: 18px;
margin-top: 20px;
}

.ft_link {
font-family: "DM Sans";
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
color: #f5f5f5;
}

.q_link {
list-style: none;
padding: 0;
}
.q_link li {
padding: 6px 0px;
}
.q_link li a {
font-family: "Inter";
font-style: normal;
font-weight: 200;
font-size: 13px;
line-height: 24px;
color: #e0e0e0;
text-decoration: none;
}
.f_cnt {
font-family: "Inter";
font-style: normal;
font-weight: 200;
font-size: 13px;
line-height: 24px;
color: #e0e0e0;
text-decoration: none;
}

.row {
display: flex;
flex-wrap: wrap;
gap: inherit;
}





/* --- FIX PATCH --- */
.hero-wrapper {position: relative !important;overflow: hidden !important;}
.hero {background: transparent !important;}
.cta-button .arrow {
  background-image: url("img/arrow.png") !important;
  background-size: 43px 40px !important;
  width: 43px !important;height: 42px !important;
  right: -10px !important;top: 0 !important;border-radius: 50% !important;
}
.cta-button:hover .arrow {transform: rotate(35deg) !important;background-color:#fff!important;}
.ux-header .ux-badg {
  background-image: url("img/ui.png") !important;
  width:116px!important;height:52px!important;background-size:contain!important;display:block!important;
}
.service-card:nth-child(1):hover .service-icon img {content:url("img/icone3.png")!important;width:90px!important;height:90px!important;}
.service-card:nth-child(2):hover .service-icon img {content:url("img/icone1.png")!important;width:90px!important;height:90px!important;}
.service-card:nth-child(3):hover .service-icon img {content:url("img/icone2.png")!important;width:90px!important;height:90px!important;}
.floating-tag {background:#111!important;box-shadow:0 0 30px 10px rgba(200,177,228,0.2)!important;z-index:5!important;}
.scroller__inner {animation: scroll 25s linear infinite !important;}



/* Hover effect */
.project-slider .next-btn:hover {
  transform: translateY(-50%) scale(1.1) !important;
}





/* Hover animation */
.cards .card:hover .arrow {
  transform: rotate(28deg) translateX(5px) !important;
}


/*
  ==========================
  ==========================   
   ==========================
   ✅  ABOUT PAGE SCOPE
   ========================== */
/*=== ===*/
/* ================================================
 ✅ About Page 
================================================ */

/* === ABOUT PAGE SCOPED CSS === */
.about-page {
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  background: #111111;
  color: #d1d5db;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
}

.navbar {
  background: #111111;
  transition: background-color 0.3s ease;
  /* Smooth transition */
  padding: 1.25rem 0;
  height: 111px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-collapse {
  /* background-color: #111111 !important; */
  margin-left: -110px;
}

.navbar .scrolled {
  background: rgba(0, 0, 0, 0.85);
  /* Scroll background color */
}

.navbar .logo {
  background-image: url("../img/LOGO.png");
  background-size: 190px 30px;
  background-repeat: no-repeat;
  width: 200px;
  height: 30px;
  margin-left: 0px;

}

/* Fullscreen Top Offcanvas */


.navbar-brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.15rem;
}

.navbar-nav .nav-link {
  color: #a3a3ac;
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color 0.15s;
  font-size: 1.05rem;

}

.navbar-nav .nav-link.active {
  color: #ebeaee;
}

.btn-gradient {
  background: linear-gradient(90deg, #a78bfa, #6366f1 60%);
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.03rem;
  box-shadow: 0 2px 16px #a78bfa22;
}

/* about header */
.about-header {
  position: relative;

  text-align: center;
  max-width: 100%;
  height: 277px;
  background-image: url("../img/about.jpg");
  background-size: cover;
  background-position-y: -373px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-header h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  /* 👈 heading और badge के बीच space */
}

/* Mobile Screen */
@media (max-width: 768px) {

  .img1 {
    display: none;
  }
  .about-header {
    min-width: 430px;
    height: 126px;
    left: 0;
    /* mobile me left align better rahega */
    background-image: url("../img/about.jpg");
    background-size: cover;
    background-position-y: -399px;
  }

  .navbar-collapse {
    background-color: #111111 !important;
    margin-left: -10px;
  }

  .navbar .logo {
    background-image: url("../img/LOGO 2.png");
    background-size: 29px 30px;
    background-repeat: no-repeat;
    /* width: 200px;
    height: 30px; */
    margin-left: 0px;

  }

  .btn-gradient,
  #b1 {
    width: 90%;
    /* Mobile full width minus padding */
    max-width: 155px;
    display: block;
    text-align: center;
    margin-top: -50px;
  }

  .navbar {
    background: #111111;
    transition: background-color 0.3s ease;
    /* Smooth transition */
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .about-header h1 {
    font-size: 1.8rem;
  }

}

@media (max-width: 450px) {
  .about-header {
    background-image: url("../img/about.jpg");
    background-size: cover;
    background-position-y: -537px;
  }
}

.about-desc {
  background: linear-gradient(180deg, #111111 85%, transparent 100%);

  border-radius: 8px;
  padding: 1.4rem 1.7rem 1.3rem 1.7rem;
  max-width: 869px;
  /* desktop size */
  height: 281px;
  height: auto;
  margin: auto;

 
  margin-bottom: 2.9rem;
  line-height: 1.65;
  box-shadow: 0 3px 30px #17173a2c;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  /* left white */
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  /* right white */
  border-top: 1px solid #2E2E3E;
  /* top black */
  border-bottom: 1px solid #2E2E3E;
  /* bottom black */
  
  
  /* Explore how we craft meaningful digital experiences through strategy, creativity, and user-first thinking. */


font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 28px;
/* or 140% */
text-align: center;

color: #E0E0E0;


}




/* Mission/Vision Cards */
.card-glass {
  background: linear-gradient(160deg, #111111 90%, #1e1e27 100%);
  border: 1px solid #33334d;
  border-radius: 16px;
  /* desktop ke liye */
  overflow: hidden;
  box-shadow: 0 4px 35px #14122c38;
  transition: transform 0.11s;
  height: 450px;
  /* desktop height */
  max-width: 608px;
  /* desktop width ek card ka */
  margin: auto;
}

.card-glass:hover {
  transform: translateY(-7px) scale(1.02);
}

.card-glass img {
  width: 100%;
  height: 296px;
  /* desktop image height */
  object-fit: cover;
  object-position: center;
  filter: brightness(0.89) saturate(1.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 1px solid #33334d;
}

.card-glass .card-body {
  padding: 1.2rem 1.3rem 1.1rem;
  text-align: center;
}

.card-glass .card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #a78bfa;
  margin-bottom: 0.6rem;
}

.card-glass .card-text {

font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-size: 16px;
line-height: 24px;
text-align: center;

color: #E0E0E0;


}

/* 📱 Mobile Screen (max 768px) */
/* Mobile specific */
@media (max-width: 768px) {
  .card-glass {
    height: 196px;
    max-width: 249px;
    /* ek card ka width */
    border-radius: 8px;
    margin: auto;
  }

  /* .about-desc {
    display: none;
  } */

  .card-glass img {
    height: 68px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #33334d;
  }

  .row.g-4 {
    gap: 24px;
    justify-content: center;
    /* center align karne ke liye */
  }
}

/* end */
/* Process section */
.process-card {
  /* background: linear-gradient(155deg,#111111 90%,#1e1e27 100%); */
  border-radius: 1.05rem;
  /* box-shadow: 0 4px 28px #18162e2c; */
  /* border: 1.1px solid #32334b; */
  /* padding: 1.25rem 1.3rem 1.3rem; */
  margin-bottom: 1.5rem;
}

.process-img {
  width: 100%;
  max-width: 630px;
  filter: brightness(0.94) grayscale(30%);
  border-radius: 1rem;
  margin: auto;
  display: block;
}

.process-title {
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 10px;
}

.process-list {
  color: #b2bad6;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.25em;
}

.process-list li:before {
  content: '';
  position: absolute;
  left: 0.13em;
  top: 0.55em;
  width: 0.56em;
  height: 0.56em;
  border-radius: 50%;
  background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
  display: inline-block;
  margin-right: 0.7em;
}

/* Testimonial */
.testimonial-card {
  background: #111111;
  box-shadow: 0 2px 23px #29275118;
  border: 1.1px solid #242349;
  border-radius: 16px;
  max-width: 1250px;
  height: 495px;
  margin: auto;
  margin-bottom: 2.7rem;
  padding: 1.6rem;
  position: relative;
  color: #c3c6db;
}

/* ✅ Testimonial main text */
.testimonial-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #c3c6db;
  max-width: 670px;
  padding: 35px;
  height: 88px;
}

/* ✅ Our Philosophy Section */
.philosophy-card {
  max-width: 670px;
  margin: 2rem auto 0;
  padding: 1rem 0;
  color: #c3c6db;
  font-family: "DM Sans", sans-serif;
}

.philosophy-card .philosophy-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}

.philosophy-card p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 1rem;
  color: #b2bad6;
}

.testimonial-text,
.author {
  display: block;
}

.philosophy-card {
  display: none;
  /* Philosophy section hidden on desktop */
}

/* ✅ Mobile screen */
@media (max-width: 768px) {

  .testimonial-text,
  .author {
    display: none;
    /* hide testimonial text + author on mobile */
  }

  .philosophy-card {
    display: block;
    /* show Our Philosophy section only on mobile */
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-text {
    max-width: 347px;
    font-size: 20px;
    line-height: 28px;
  }

  .philosophy-card {
    max-width: 347px;
    padding: 0.5rem 0;
  }

  .philosophy-card .philosophy-title {
    font-size: 20px;
    line-height: 28px;
  }

  .philosophy-card p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ✅ Legend quote icon exactly border line pe */
.testimonial-card legend {
  padding: 0 0.6rem;
  /* border ke beech mein thoda spacing */
}

.testimonial-card legend i {
  color: #a78bfa;
  font-size: 2.2rem;
  opacity: 0.6;
}

/* ✅ Author section */
.quote-image {
  position: relative;
  bottom: 60px;
}

.quote-image img {
  width: 105px;
  height: 85px;
  transform: rotate(0deg);
}

.testimonial-card .author {
  width: 356px;
  height: 119px;
  font-size: 32px;
}

.testimonial-card .author-info strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;

}

.testimonial-card .author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #b2bad6;
}

.testimonial-card .author i {
  color: #a78bfa;
  font-size: 1.3rem;
  vertical-align: middle;
  transition: color 0.3s;
}

.testimonial-card .author i:hover {
  color: #fff;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 390px;
    border-radius: 4px;
    padding: 1rem;
  }

  .testimonial-card legend i {
    font-size: 1.6rem;
  }
}

/* CTA Card */
.cta-card {
  background: linear-gradient(142deg, #211e32 77%, #222133 100%);
  border-radius: 1.1rem;
  box-shadow: 0 4px 28px #3830621c;
  border: 1.1px solid #2f2943;
  padding: 2.2rem 2.2rem 2rem 2.2rem;
}

.cta-card h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.5px;
}

.cta-card span {
  color: #a78bfa;
}

.cta-card .btn-gradient {
  margin-top: 1.35rem;
  font-size: 1rem;
}

/* Footer */
.footer-bg {
  background: #111111;

  color: #a1a1aa;
  font-size: 1.02rem;
  padding: 2.2rem 0 1.1rem 0;
  margin-top: 3rem;
  border-top: 2.5px solid #282748;
}

.footer-bg h5,
.footer-bg h6 {
  color: #a78bfa;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .4px;
}

.footer-bg ul li a {
  color: #cdd0eb;
  transition: color .13s;
}

.footer-bg ul li a:hover {
  color: #a78bfa;
  text-decoration: underline;
}

.footer-bg .fa-envelope,
.footer-bg .fa-phone,
.footer-bg .fa-map-marker-alt {
  color: #6366f1;
  margin-right: 0.55em;
}

.footer-bg .copyright {
  margin-top: 1.6rem;
  color: #757575;
}

/* Responsive */
@media (max-width: 991px) {
  .about-header h1 {
    font-size: 2rem;
  }

  .cta-card {
    padding: 1.5rem 1rem;
  }

  .about-desc {
    padding: 1.1rem 1rem;
  }
}

@media (max-width: 767px) {
  .card-glass img {
    height: 120px;
  }

  .process-img {
    max-width: 100%;
  }

  .footer-bg {
    font-size: 0.98rem;
  }
}

.innovation-badge-exact {
  position: relative;
  display: inline-block;
  background: rgba(35, 34, 60, 0.48);
  color: #e4e0ff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15px;
  padding: 0.75rem 2.3rem;
  border-radius: 8px;
  text-align: center;
  line-height: normal;
  /* allow multi-line content */
  z-index: 1;
  border: 1px solid #706e6e;
  backdrop-filter: blur(8px);
  max-width: none;
  /* remove width restriction */
  height: auto;
  /* let height grow naturally */
  overflow: visible;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  /* optional: keeps it on one line */
}

.innovation-badge-exact span {
  color: #624AB2;
  font-weight: 600;
  font-style: italic;
}

/* Inner shadow for glass effect */
.innovation-badge-exact::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  z-index: -1;
  box-shadow: 0 2px 6px 0 #0003 inset;
  opacity: 0.25;
}

/* 📱 Mobile styles */
@media (max-width: 576px) {
  .innovation-badge-exact {
    width: 315px;
    height: 36px;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    text-align: center;
  }

  .innovation-badge-exact span {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
  }
}

/* ============================================================
   📱 MOBILE RESPONSIVE FIX — ABOUT PAGE (UX Pacific)
   Perfectly aligned to your Figma preview
   ============================================================ */
@media (max-width: 768px) {

  /* --- GENERAL PAGE FIXES --- */
  body.about-page {
    background: #111111;
    overflow-x: hidden;
  }

  /* --- NAVBAR FIX --- */
  .navbar {
    height: 80px;
    padding: 10px 0;
  }

  .navbar-brand img,
  #myImage {
    width: 50px !important;
  }

  .navbar-collapse {
    background: #111111 !important;
    padding: 20px 10px;
  }

  /* --- HEADER SECTION --- */
  .about-header {
    height: 150px !important;
    background-position-y: -450px !important;
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .about-header h1 {
    font-size: 35px !important;
    margin-top: 10px;
  }

  .innovation-badge-exact {
    font-size: 11px !important;
    padding: 3px 12px;
    margin-top: 5px;
  }

  /* --- ABOUT DESCRIPTION --- */
 .about-desc {
    
    width: 100% !important;            /* full width inside container */
    max-width: 360px;                  /* perfect for mobile */
    margin: 15px auto !important;       /* center nicely */
    padding: 18px 20px !important;      /* clean spacing */
    
    background: rgba(255, 255, 255, 0.05); /* glass look */
    backdrop-filter: blur(10px);
    border-radius: 13.5px;                /* smooth corners */

    font-size: 14px !important;
    line-height: 19px !important;
    color: #e0e0e0 !important;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* ----- MISSION / VISION CARDS ----- */
  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px auto !important;
    width: 100%;
    align-items: center;
  }

  .card-glass {
    width: 90% !important;
    height: 235px !important;
    border-radius: 12px;
  }

  .card-glass img {
    height: 190px !important;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
  }

  .card-glass .title-01 {
    font-size: 20px !important;
    margin-top: 1px !important;
  }

  .card-glass .card-text {
    font-size: 13px !important;
    padding: 0.4px !important;
  }

  /* --- PROCESS SECTION --- */
  .process-section {
    flex-direction: column !important;
    text-align: left;
    padding: 0 15px;
    gap: 20px;
  }

  .process-img {
    width: 100% !important;
    border-radius: 12px;
  }

  .process-title {
    font-size: 15px !important;
    margin-top: 10px;
  }

  .process-list li {
    font-size: 14px !important;
    margin-bottom: 8px;
  }

  /* --- CTA SECTION --- */
  .cta-section {
    width: 390px !important;
    height: 550px !important;
    padding: 0px !important;
    border-radius: 15px;
  }

  .cta-container {
    flex-direction: column !important;
    padding: 0 !important;
    gap: 15px;
  }

  .cta-text h1 {
    font-size: 22px !important;
    line-height: 26px !important;
  }

  .cta-text p {
    font-size: 13px !important;
    margin-top: 10px !important;
  }

  .cta-image img {
    width: 100% !important;
    border-radius: 12px;
  }

  /* --- FOOTER FIXES --- */


  .footer .row > div {
    text-align: center !important;
    margin-bottom: 25px;
  }

  .footer-logo img {
    width: 150px !important;
    margin-bottom: 15px;
  }

  .q_link li a,
  .f_cnt {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .footer-policies {
    font-size: 12px !important;
    text-align: center !important;
  }

  /* --- GRID FIX (col-3 → col-12 on mobile) --- */
  .col-md-2.col-3 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .col-md-3,
  .col-md-5 {
    width: 100% !important;
  }

  /* Ensures all footer columns stack nicely */
  .footer .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}




}

.about-page {
.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: underline; /* Ensures no underline appears */
}

 .navbar-nav .nav-link:hover
{
    color: #ffffff; /* Brighter white text */

    text-decoration: none; /* Ensures no underline appears */
}

.about-header {
  position: relative;
  text-align: center;
  max-width: 100%;
  height: 277px;
  background: #111;
  /* fallback color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* ensure animation stays inside header */
}

/* Gallery inside header */
.gallery-container {
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  border-radius: 0px;
  /* optional, can remove */
}

.animated-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.5) blur(1.8px);
  transition: opacity 0.48s cubic-bezier(.94, -0.07, .35, 1.04), filter 0.33s;
  z-index: 2;
}

.active {
  opacity: 1;
/* filter: brightness(1.17) blur(0px) drop-shadow(0 0 30px #a78bfa99); */
  animation: lightningFlash 0.53s cubic-bezier(.38, 1.41, .77, .93); 
  z-index: 2;
}

@keyframes lightningFlash {
  0% {
    filter: brightness(2) blur(0.2px);
  }

  30% {
    filter: brightness(1.7) blur(0px);
  }

  55% {
    filter: brightness(1.1) blur(0px);
  }

  70% {
    filter: brightness(1.27) blur(0.05px);
  }

  100% {
    filter: brightness(1.17) blur(0px);
  }
}

/* Heading and badge on top */
.about-header h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
font-family: 'DM Sans';
font-style: normal;
font-weight: 600;
text-transform: capitalize;

color: #F5F5F5;
  /* above animation */
}

 .innovation-badge-exact {
    position: relative;
    z-index: 3;
    
    /* Crafting Digital Experiences That Matter */


font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

color: #E0E0E0;


  }



/* Mission & Vision Section Styles */
  .cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
  }

  .card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .card-glass img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .card-body {
    padding: 1rem;
    /* THIS IS THE FIX: Transition is on the base element */
    transition: all 0.5s ease-in-out;
  }

  .title-01 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
  }

  .card-text {
    color: #ddd;
    font-size: 1rem;
  }
  
  .m1 {
    display: none;
    list-style: none;
    text-align: left;
  }

  .m1 li {
    padding-top: 10px;
  }

  .m1 li::before {
    content: "✔";
    padding-right: 15px;
    color: #a78bfa;
  }
  
  /* Hover effect for DESKTOP ONLY */
  @media (min-width: 768px) {
    .card-glass:hover .m1 {
      display: block;
    }

    .card-glass:hover .card-body {
      transform: translateY(-42%);
      background: linear-gradient(90deg, #100f12, #222223 60%);
      border-radius: 12px;
    }
  }

  /* Responsive adjustments for cards */
  @media (max-width: 768px) {
    .cards-container {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .title-01 {
      font-size: 1.5rem;
    }

    .card-text {
      font-size: 0.9rem;
    }
  }


/* Headings style */



/* Optional: responsive gap for small screens */
@media (max-width: 768px) {
  .cards-container {
    /* grid-template-columns: repeat(2, 1fr); */
    /* still 2 columns */
    gap: 2rem;
  }
  .card-body h1 {
font-family: 'DM Sans', sans-serif;
font-weight: 500; 
font-size: 14px;
line-height: 22px;
text-align: center;
color: #fff;
}
.card-glass .card-text {
color: #b2bad6;
font-size: 10px;
}
.card-glass .card-body{
transform: translateY(-25%);
text-align: start;
background: linear-gradient(90deg, #100f12, #222223 60%);
 
}

}

.process-list li {
  margin-bottom: 3.2em;

  position: relative;
  padding-left: 1.25em;
  

font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-size: 16px;
line-height: 24px;
/* or 150% */

color: #E0E0E0;


}

/* Separator line between items */
.process-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 4px;
  /* start of line */
  bottom: -0.6em;
  /* space below text */
  width: 1px;
  /* full width of li */
  height: 80px;
  /* thickness of line */
  background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
}

.card-list {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.card-glass:hover .card-list {
  opacity: 1;
  pointer-events: auto;
  display: block;
  transition: all 0.5s linear;
}

.title-01{
font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 36px;
line-height: 44px;
text-align: center;
color: #FFFFFF;
}

.process-img {
    width: 100%;
    height: auto;
    animation: slideshow 8s infinite;
  }

  .process-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .process-title {

font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 32px;
line-height: 48px;

color: #FFFFFF;


  }

  .process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #6a5acd;
    /* purple dot (change if needed) */
    border-radius: 50%;
  }

  /* Responsive (mobile: stack items) */
  @media (max-width: 768px) {
    .process-section {
      /* flex-direction: column;
      text-align: center; */
      display: none !important;
    }

    .process-list li {
      padding-left: 0;
    }

    .process-list li::before {
      display: none;
    }
  }

/* Footer Base */
@media (max-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .social-icons {
    padding-top: 0px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    margin-top: 5px;
    font-size: 11px;
  }

  .footer-policies {
    font-size: 10px;
  }
}

.social-icons {
  padding-top: 50px;
}

.social-icons a:hover {
  background: #444;
}

/* Links + Contact Row */
.footer-links-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding:0 0px 20px;
  font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  color: #aaa;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.footer-policies {
  margin-bottom: 18px;
  margin-top: 20px;
}

.footer-copy {
  margin-bottom: 18px;
  margin-top: 20px;
}

.ft_link{font-family: 'DM Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #F5F5F5;
        }

.q_link{list-style: none; padding: 0;}
.q_link li{padding:6px 0px;}
.q_link li a{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;
    }
.f_cnt{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;}		
    
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: inherit;
      
}

}



/*
  ==========================
  ==========================   
   ==========================
   ✅  SERVICE PAGE SCOPE
   ========================== */
/*=== ===*/

/* Service Page  */



/*=== SERVICES PAGE SCOPE ===*/
.services-page {
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
  background: #0d0d10;
  color: #ddd;


}

/* Container for the boxes */
        /* Container for the boxes */
        .top-boxes {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap; /* Allows boxes to wrap on smaller screens */
            padding: 2rem;
        }

        /* Individual box styling (default state) */
        .top-box {
            /* NEW: Added a subtle dark gradient background */
            background: linear-gradient(145deg, #2a283d, #1c1a29);
            border-radius: 12px;
            /* The default, subtle white glow */
            box-shadow:
                0 0 5px #ebeaf333,      /* Lighter, softer outer glow */
                inset 0 0 5px #e1e0e922; /* Lighter, softer inner glow */
            width: 292px;
            height: 269px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 5.25rem;
            font-weight: 700;
            color: #d4d4d4;
            user-select: none;
            cursor: pointer;
            /* This makes the animation smooth */
            transition: all 0.6s ease-in-out;
            position: relative;
        }

        /* The hidden text below the main abbreviation */
        .top-box span {
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 0.75rem;
            color: #9e9e9e;
            letter-spacing: 0.5px;
            /* --- Start invisible and moved down --- */
            opacity: 0;
            transform: translateY(10px);
            /* --- Animation settings for the span --- */
            transition: all 0.6s ease-in-out;
        }

        /* HOVER EFFECT: The glowing box */
        .top-box:hover {
            /* NEW: Darker gradient on hover */
            background: linear-gradient(145deg, #19123b, #000);
            /* NEW: Vibrant, light purple outer glow. No inner glow on hover. */
            box-shadow: 0 0 15px #cbbcff;
            /* NEW: This makes the main text ("UI", "UX") purple */
            color: #8c78ff;
        }

        /* HOVER EFFECT: The text that appears */
        .top-box:hover span {
            opacity: 1;
            transform: translateY(0);
            /* NEW: Solid light purple text color on hover */
            color: #cbbcff;
        }

h2.title {
  margin-bottom: 2.5rem;
  

font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 48px;
/* or 120% */
text-align: center;

color: #F5F5F5;


}

h2.title em {
  font-style: italic;
  color: #6147BD;
}

/* ===== FEATURES SECTION ===== */
.features-container {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d10;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature {
  flex: 1 1 50%;
  padding: 2rem 2.25rem;
  border-left: 2px solid #B69aE4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature:first-child {
  border-left: none;
}

.feature-icon {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
}



.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(8px);
  background: #7461f8cc;
  z-index: -1;
  opacity: 0.7;
}

.feature-title {
  margin-bottom: 1rem;
  min-height: 3rem;
  

font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

color: #C9C9C9;


}

.feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 591px;
}

.feature ul li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;

font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-size: 15px;
line-height: 24px;
/* or 150% */

color: #E0E0E0;

}

.feature ul li::before {
  content: '✔';
  color: #7461f8;
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
  flex-shrink: 0;
}

.boder {
  border: 1px solid #B69aE4;
  width: 977px;
  height: 0px;
  position: relative;
  left: 10%
}




@media (max-width: 768px) {
  .features-container {
    display: none;
  }

  .about-desc {
    display: none;
  }

  .top-boxes {
    flex-wrap: wrap;
  }

  .feature-row {
    flex-direction: column;
  }

  .feature {
    width: 100%;
    border: 2px solid #B69aE4;
  }

  .feature:last-child {
    margin-top: 30px;
    border: 2px solid #B69aE4;
    border-radius: 5%;
  }

  .feature:first-child {
    border: 2px solid #B69aE4;
    margin-top: 30px;
    border-radius: 5%;
  }

  .boder {
    border: none;
    height: 0px;
    left: 150px;
  }
}

.bg-dark {
  background-color: #0d0d10 !important;
}

.text-purple {
  color: #5C6EAC99;
}

.text-light-purple {
  color: #A56EFF;
}

.btn-gradient {
  background: linear-gradient(90deg, #9c27b0, #673ab7);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.container-fluid {
  border: 1px solid #372b4c;

}

.container-fluid:hover {
  box-shadow:
    0 0 5px #8c78ff,
    inset 0 0 5px #8c78ff;
  transition: opacity 1.0s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-gradient .btn-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1240px;
  height: 283px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.btn-gradient:hover .btn-overlay {
  opacity: 1;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.wrapper {
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

.Effect {
  display: flex;
  align-items: center;
  width: 300px;
  height: 53px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  color: #ddd;
  background-color: #2e25f9;
  border-radius: 20px;
  border: 2px solid #0c09a4;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
}

.Effect span {
  position: relative;
  z-index: 2;
}

.Effect div {
  position: relative;
  z-index: 2;
}

.Effect:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  transition: all 1.20s;
  justify-content: center;
}

.Effect:hover {
  color: #090909;
}

.Effect:hover:after {
  width: 100%;
}

.Errow {
  width: 40px;
  height: 49px;
  background: #fff;
  position: relative;
  left: 10%;
  border-radius: 20px;
  background-image: url('errow.png');
}

  .about-header{
    height: 140px !important;
    margin-bottom: 50px;
  }
  .about-header h1{
    font-size: 35px !important;
  }
  .img1 {
    display: none;
  }


}

.services-page {











  
.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: underline; /* Ensures no underline appears */
}

 .navbar-nav .nav-link:hover
{
    color: #ffffff; /* Brighter white text */
  
    text-decoration: none; /* Ensures no underline appears */
}

.about-header {
position: relative;
text-align: center;
max-width: 100%;
height: 277px;
background: #111;
/* fallback color */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
/* ensure animation stays inside header */
}

/* Gallery inside header */
.gallery-container {
position: absolute;
top: -110px;
left: 0;
width: 100%;
height: auto;
overflow: hidden;
z-index: 1;
border-radius: 12px;
/* optional, can remove */
}

.animated-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
filter: brightness(0.5) blur(1.8px);
transition: opacity 0.4s cubic-bezier(.94, -0.07, .35, 1.04), filter 0.33s;
z-index: 2;
}

.active {
opacity: 1;

animation: lightningFlash 0.43s cubic-bezier(.38, 1.41, .77, .93);
z-index: 2;
}

@keyframes lightningFlash {
0% {
  filter: brightness(2) blur(0.2px);
}

30% {
  filter: brightness(1.7) blur(0px);
}

55% {
  filter: brightness(1.1) blur(0px);
}

70% {
  filter: brightness(1.27) blur(0.05px);
}

100% {
  filter: brightness(1.17) blur(0px);
}
}

/* Heading and badge on top */
.about-header h1 {
font-size: 64px;
font-weight: 800;
color: #fff;
letter-spacing: 1px;
margin-bottom: 18px;
position: relative;
z-index: 3;
font-family: 'DM Sans';
font-style: normal;
font-weight: 600;
text-transform: capitalize;

color: #F5F5F5;
/* above animation */
}

.innovation-badge-exact {
  position: relative;
  z-index: 3;
  
  /* Crafting Digital Experiences That Matter */


font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

color: #E0E0E0;


}

.innovation-badge-exact span {
color: #624AB2;

}

.cards-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
/* always 2 columns */
gap: 1.5rem;
/* spacing between cards */
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.card-glass {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
}

.card-glass img {
width: 100%;
height: auto;
object-fit: cover;
}

.card-body {
padding: 1rem;
}

.card-title {
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #fff;
}

.card-text {
color: #ddd;
font-size: 1rem;
}

/* Optional: responsive gap for small screens */
@media (max-width: 768px) {
.cards-container {
  grid-template-columns: repeat(2, 1fr);
  /* still 2 columns */
  gap: 1rem;
}
}

.process-list li {
margin-bottom: 1.2em;
font-size: 1.05rem;
position: relative;
padding-left: 1.25em;
}

/* Separator line between items */
.process-list li:not(:last-child)::after {
content: '';
position: absolute;
top: 10px;
left: 6px;
/* start of line */
bottom: -0.6em;
/* space below text */
width: 1px;
/* full width of li */
height: 80px;
/* thickness of line */
background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
}

.s1{
font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 48px;
/* or 120% */
text-align: center;

color: #F5F5F5;
}

.s2{font-family: 'Inter'; font-style: italic;
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #EFEEEE;}

/* Footer Base */
@media (max-width: 768px) {

  .container-fluid{
    max-width: 400px !important;
  }


  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .social-icons {
    padding-top: 0px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    margin-top: 5px;
    font-size: 11px;
  }

  .footer-policies {
    font-size: 10px;
  }
}

.social-icons {
  padding-top: 50px;
}

.social-icons a:hover {
  background: #444;
}

/* Links + Contact Row */
.footer-links-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding:0 0px 20px;
  font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  color: #aaa;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.footer-policies {
  margin-bottom: 18px;
  margin-top: 20px;
}

.footer-copy {
  margin-bottom: 18px;
  margin-top: 20px;
}

.ft_link{font-family: 'DM Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #F5F5F5;
        }

.q_link{list-style: none; padding: 0;}
.q_link li{padding:6px 0px;}
.q_link li a{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;
    }
.f_cnt{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;}		
    
    .row {
display: flex
;
flex-wrap: wrap;
gap: inherit;
}

}





/*
  ==========================
  ==========================   
   ==========================
   ✅  PROJECT PAGE SCOPE
   ========================== */
/*=== ===*/
/*=== PROJECT PAGE SCOPE ===*/






.project-page {
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



@media (max-width: 768px) {


  .about-header {
    height: 140px !important;
  }

  .about-header h1 {
    font-size: 35px !important;
  }

  .img1{
    display: none;
  }

  /* HIDE description box */
  .project-text {
    display: none !important;
  }

  /* Make project card a REAL single card */
  .project-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
    margin-bottom: 25px;
  }

  /* IMAGE FIX — NO CURVE */
  .project-image-wrapper,
  .project-image-wrapper img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;    /* remove curve */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* CONTENT BLOCK: title + tags in one block */
  .project-content {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: left !important;
  }

  /* Prevent bootstrap columns from splitting */
  .project-content .col-md-6,
  .project-content .col-12 {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .project-content .text-md-end {
    text-align: left !important;
  }

  /* TITLE FIX */
  .project-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
  }

  /* TAG FIX */
  .pro1 {
    font-size: 14px !important;
    color: #cfcfcf !important;
    display: inline-block !important;
    margin: 2px 0 10px 0 !important;
    padding: 0 !important;
  }

  /* REMOVE bootstrap spacing issues */
  .project-content.row {
    gap: 0 !important;
  }
}


body {
  background: #18181b;
  color: #fff;

}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* fix 2 column */
  gap: 0.5rem;
}

.project-grid .col {
  padding: 0;
}
}

.project-page {
.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: underline; /* Ensures no underline appears */
}

 .navbar-nav .nav-link:hover
{
    color: #ffffff; /* Brighter white text */
  
    text-decoration: none; /* Ensures no underline appears */
}

.about-header {
  position: relative;
  text-align: center;
  max-width: 100%;
  height: 277px;
  background: #111;
  /* fallback color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* ensure animation stays inside header */
}

/* Gallery inside header */
.gallery-container {
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
  border-radius: 0px;
  /* optional, can remove */
}

.animated-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.5) blur(1.8px);
  transition: opacity 0.4s cubic-bezier(.94, -0.07, .35, 1.04), filter 0.33s;
  z-index: 2;
}

.active {
  opacity: 1;
  filter: brightness(1.17) blur(0px) drop-shadow(0 0 30px #a78bfa99);
  animation: lightningFlash 0.43s cubic-bezier(.38, 1.41, .77, .93);
  z-index: 2;
}

@keyframes lightningFlash {
  0% {
    filter: brightness(2) blur(0.2px);
  }

  30% {
    filter: brightness(1.7) blur(0px);
  }

  55% {
    filter: brightness(1.1) blur(0px);
  }

  70% {
    filter: brightness(1.27) blur(0.05px);
  }

  100% {
    filter: brightness(1.17) blur(0px);
  }
}

/* Heading and badge on top */
.about-header h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
    font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  color: #F5F5F5;

  /* above animation */
}

.innovation-badge-exact {
  position: relative;
  z-index: 3;
  
  /* Crafting Digital Experiences That Matter */


font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

color: #E0E0E0;


}

.pro1{/* Ux Audit */

margin: 0 auto;

font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-size: 16px;
line-height: 24px;

color: #A3A3A3;


}

.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* always 2 columns */
  gap: 1.5rem;
  /* spacing between cards */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-glass img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-text {
  color: #ddd;
  font-size: 1rem;
}

/* Optional: responsive gap for small screens */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    /* still 2 columns */
    gap: 1rem;
  }
}

.process-list li {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.25em;
}

/* Separator line between items */
.process-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 6px;
  /* start of line */
  bottom: -0.6em;
  /* space below text */
  width: 1px;
  /* full width of li */
  height: 80px;
  /* thickness of line */
  background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
}

.projects-section {
  margin: 2rem 0;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  margin-bottom: 2rem;
  

font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 48px;
/* or 120% */
text-align: center;

color: #F5F5F5;


  
}

.section-title span {
  color: #6147BD;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* हमेशा 2 columns */
  gap: 1.5rem;
}

.project-card {
  /*background: rgba(35, 34, 60, 0.48);*/
  border-radius: 10px;
  overflow: hidden;
  border: 0px solid #32334b;
}

.project-img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #32334b;
}

.project-content {
  padding: 1rem;
}

.project-title {
  margin-bottom: 0.5rem;
  

font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
font-size: 32px;
line-height: 40px;

color: #C9C9C9;



  
  
}

.meta-text {
  font-size: 0.85rem;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}

.project-text {
  


font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 14px;
line-height: 22px;

color: #A3A3A3;
margin-top:10px;


}

.project-card {
    transition: all 0.3s ease-in-out;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    margin-bottom: 200px;
    position: relative; /* Needed for pseudo-elements */
  }

  .logo-slider::before,
  .logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
  }

  .logo-slider::before {
    left: 0;
    /* background: linear-gradient(to left, rgba(17, 24, 39, 0), #111827); */
  }

  .logo-slider::after {
    right: 0;
    /* background: linear-gradient(to right, rgba(17, 24, 39, 0), #111827); */
  }

  .logo-track {
    display: flex;
    gap: 50px;
    animation: scroll 40s linear infinite;
  }

  .logo-track:hover {
    animation-play-state: paused;
    /* Pause animation on hover */
  }

  .logo-track img {
    height: 50px;
    width: auto;
    filter: grayscale(1) opacity(0.7);
    /* Make logos blend in */
    transition: filter 0.3s ease;
  }

  .logo-track img:hover {
    filter: grayscale(0) opacity(1);
    /* Colorize logo on hover */
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
  }

  @media(max-width:650px) {
    .logo-track img {
      height: 25px;
    }
    .logo-slider{
      margin-bottom: 100px ;
    }
  
  }

  /* The keyframes for the scrolling animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      /* Moves the track to the left by the width of the first set of logos */
      transform: translateX(calc(-200px * 6));
    }
  }

  /* Custom styles for the project card overlay and animations */
  .project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    /* rounded-xl */
  }

  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .project-image-wrapper:hover .project-overlay {
    opacity: 1;
  }

  .view-details-link {
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 9999px;
    /* rounded-full */
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
  }

  .project-image-wrapper:hover .view-details-link {
    transform: translateY(0);
  }

  .project-img {
    transition: transform 0.3s ease-in-out;
  }

  .project-image-wrapper:hover .project-img {
    transform: scale(1.05);
  }

  .tag {
    background-color: #374151;
    /* gray-700 */
    color: #D1D5DB;
    /* gray-300 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
  }

  /* --- START: VIEW MORE/LESS CSS --- */
  /* Animation styles for extra cards */
  .extra-card {
    /* This is the default, hidden state of the cards */
    max-height: 0;
    /* Collapses the card vertically */
    opacity: 0;
    /* Makes it fully transparent */
    transform: translateY(-1rem);
    /* Moves it up slightly for the animation */
    overflow: hidden;
    /* Hides the content that overflows the 0-height */
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
    /* Prevents clicking or interacting with the hidden card */
    transition: all 0.5s ease-in-out;
    /* The master transition for all animated properties */
  }

  .extra-card.is-visible {
    /* This class is added by JavaScript to show the cards */
    max-height: 600px;
    /* A safe, large value to allow the card to expand fully */
    opacity: 1;
    /* Makes the card fully visible */
    transform: translateY(0);
    /* Returns it to its original position */
    pointer-events: auto;
    /* Allows interaction again */
  }

  /* Staggered delay for animations to make them appear one by one */
  /* Delay when showing the cards */
  #project-grid>.extra-card.is-visible:nth-of-type(5) {
    transition-delay: 100ms;
  }

  #project-grid>.extra-card.is-visible:nth-of-type(6) {
    transition-delay: 200ms;
  }

  /* Delay when hiding the cards (in reverse order for a nice effect) */
  #project-grid>.extra-card:nth-of-type(6) {
    transition-delay: 100ms;
  }

  #project-grid>.extra-card:nth-of-type(5) {
    transition-delay: 200ms;
  }

  /* --- END: VIEW MORE/LESS CSS --- */

  /* Responsive Grid */
  @media (min-width: 768px) {
    #project-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Helper for spacing between elements */
  .space-x-2>*+* {
    margin-left: 0.5rem;
  }

  /* Button styles */
  .btn {
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
  }

  .btn-purple {
    background-color: #8B5CF6;
    color: white;
  }

  .btn-purple:hover {
    background-color: #7C3AED;
  }

  .btn-gray {
    background-color: #4B5563;
    color: white;
  }

  .btn-gray:hover {
    background-color: #374151;
  }

  .arrow-rotated {
    transform: rotate(180deg);
  }

  .view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, #6147BD, #6147BD);
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    width: 150px;
    /* MODIFIED: Adjusted for a more subtle, professional glow */
    box-shadow: 0 0 15px rgba(132, 94, 247, 0.4);
    font-family: sans-serif;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
  }
  .view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(132, 94, 247, 0.5);
  }

/* Footer Base */
@media (max-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .social-icons {
    padding-top: 0px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    margin-top: 5px;
    font-size: 11px;
  }

  .footer-policies {
    font-size: 10px;
  }
}

.social-icons {
  padding-top: 50px;
}

.social-icons a:hover {
  background: #444;
}

/* Links + Contact Row */
.footer-links-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding:0 0px 20px;
  font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  color: #aaa;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.footer-policies {
  margin-bottom: 18px;
  margin-top: 20px;
}

.footer-copy {
  margin-bottom: 18px;
  margin-top: 20px;
}

.ft_link{font-family: 'DM Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #F5F5F5;
        }

.q_link{list-style: none; padding: 0;}
.q_link li{padding:6px 0px;}
.q_link li a{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;
    }
.f_cnt{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;}

}




/*
  ==========================
  ==========================   
   ==========================
   ✅  CONTACT PAGE SCOPE
   ========================== */
/*=== ===*/



.contact-page {
  

.contact-form {
    width: 80vw;
    max-width: 1200px;
    min-width: 320px;
    margin: 30px auto 28px auto;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 100px;
}

.submit-btn {
    border: 2px solid #6147BD;
    border-radius: 50px;
    padding: 10px 100px;
    margin-top: 13px;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(125, 95, 255, 0.08);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    background: #6147BD;
    transition: background-color 0.3s ease, color 0.3s ease, background 0.3s 
ease;
}

.submit-btn:hover {
            /* Hover styles are now the light purple button */
            color: #6147BD;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #DED7EF;
 }

.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: underline ; /* Ensures no underline appears */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff; /* Brighter white text */
    text-decoration: none; /* Ensures no underline appears */
}

.about-header {
position: relative;
text-align: center;
max-width: 100%;
height: 277px;
background: #111;
/* fallback color */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
/* ensure animation stays inside header */
}

/* Gallery inside header */
    .gallery-container {
        position: absolute;
        top: -110px;
        left: 0;
        width: 100%;
        height: auto;
        overflow: hidden;
        z-index: 1;
        border-radius: 0px;
    }

.animated-img {
position: absolute;
top: -110px;
left: 0;
width: 100%;
height: auto;
object-fit: cover;
opacity: 0;
filter: brightness(0.5) blur(1.8px);
transition: opacity 0.4s cubic-bezier(.94, -0.07, .35, 1.04), filter 0.33s;
z-index: 2;
}

.active {
opacity: 1;
filter: brightness(1.17) blur(0px) drop-shadow(0 0 30px #a78bfa99);
animation: lightningFlash 0.43s cubic-bezier(.38, 1.41, .77, .93);
z-index: 2;
}

@keyframes lightningFlash {
0% {
  filter: brightness(2) blur(0.2px);
}

30% {
  filter: brightness(1.7) blur(0px);
}

55% {
  filter: brightness(1.1) blur(0px);
}

70% {
  filter: brightness(1.27) blur(0.05px);
}

100% {
  filter: brightness(1.17) blur(0px);
}
}

/* Heading and badge on top */
.about-header h1 {
font-size: 64px;
font-weight: 800;
color: #fff;
letter-spacing: 1px;
margin-bottom: 18px;
position: relative;
z-index: 3;
/* above animation */
}

.innovation-badge-exact {
position: relative;
z-index: 3;
color: #fff;
font-weight: 500;
}

.innovation-badge-exact span {
color: #a78bfa;
font-weight: 700;
}

.cards-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
/* always 2 columns */
gap: 1.5rem;
/* spacing between cards */
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.card-glass {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
}

.card-glass img {
width: 100%;
height: auto;
object-fit: cover;
}

.card-body {
padding: 1rem;
}

.card-title {
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #fff;
}

.card-text {
color: #ddd;
font-size: 1rem;
}

/* Optional: responsive gap for small screens */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    /* still 2 columns */
    gap: 1rem;
  }
  
  .about-header {
    height: 140px !important;
  }

  .about-header h1 {
    font-size: 45px !important;
  }

  .img1 {
    display: none;
  }

}

.process-list li {
margin-bottom: 1.2em;
font-size: 1.05rem;
position: relative;
padding-left: 1.25em;
}

/* Separator line between items */
.process-list li:not(:last-child)::after {
content: '';
position: absolute;
top: 10px;
left: 6px;
/* start of line */
bottom: -0.6em;
/* space below text */
width: 1px;
/* full width of li */
height: 80px;
/* thickness of line */
background: linear-gradient(90deg, #a78bfa 30%, #6366f1 70%);
}

/* --- Professional Modal Styles --- */
.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(10, 10, 20, 0.7);
backdrop-filter: blur(5px); /* Frosted glass effect */
align-items: center;
justify-content: center;
z-index: 1050; /* Higher z-index for modals */
opacity: 0;
transition: opacity 0.3s ease;
}

.modal-overlay.show {
display: flex;
opacity: 1;
}

.modal-box {
background: linear-gradient(145deg, #2a2a3e, #1e1e2f);
color: #f0f0f0;
padding: 2rem 2.5rem;
border-radius: 16px;
text-align: center;
width: 90%;
max-width: 450px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
position: relative;
/* Start position for animation */
transform: translateY(-50px) scale(0.95);
opacity: 0;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.modal-overlay.show .modal-box {
/* End position for animation */
transform: translateY(0) scale(1);
opacity: 1;
}

/* Staggered content animation */
.modal-icon-wrapper,
.modal-box h2,
.modal-box .modal-desc {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.modal-overlay.show .modal-icon-wrapper {
opacity: 1;
transform: translateY(0);
transition-delay: 0.2s;
}

.modal-overlay.show .modal-box h2 {
opacity: 1;
transform: translateY(0);
transition-delay: 0.3s;
}

.modal-overlay.show .modal-box .modal-desc {
opacity: 1;
transform: translateY(0);
transition-delay: 0.4s;
}


.close-modal {
position: absolute;
top: 15px;
right: 15px;
background: transparent;
border: none;
color: #aaa;
font-size: 1.8rem;
line-height: 1;
cursor: pointer;
transition: color 0.2s, transform 0.2s;
}

.close-modal:hover {
color: #fff;
transform: rotate(90deg);
}

.modal-icon-wrapper {
margin: 0 auto 1.5rem;
width: 100px;
height: 100px;
border-radius: 50%;
background: linear-gradient(145deg, #a78bfa, #6366f1);
display: flex;
align-items: center;
justify-content: center;
animation: pulseIcon 2s infinite ease-in-out;
}

.modal-icon-wrapper .fa-check-circle {
font-size: 50px;
color: #fff;
}

.modal-box h2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 2rem;
margin-bottom: 0.75rem;
color: #fff;
}

.modal-box .modal-desc {
font-family: 'Inter', sans-serif;
font-size: 1rem;
color: #c0c0d0;
line-height: 1.6;
}

@keyframes pulseIcon {
0% {
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7);
}
70% {
  transform: scale(1);
  box-shadow: 0 0 0 20px rgba(167, 139, 250, 0);
}
100% {
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
}
}

.about-header h1 {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  color: #F5F5F5;
}

.custom-select:invalid {
    color: #9ca3af; /* gray-400 for placeholder-like color */
}

.custom-select option {
    background-color: #121212;
    color: #eee;
}
.custom-select  {
/* keep default arrow */
    appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}

.custom-checkbox {
accent-color: #6366f1; /* tick ka color & background dono change hoga */
}
.hidden-checkbox {
display: none; /* default checkbox hide */
}

.custom-box {
display: inline-block;
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 4px;
margin-right: 8px;
vertical-align: middle;
position: relative;
cursor: pointer;
}

/* ✔ banane ke liye */
.hidden-checkbox:checked + .custom-box::after {
content: "✔";
position: absolute;
top: -3px;
left: 2px;
font-size: 16px;
color: #6366f1; /* ✅ Yahan tick ka color set hoga */
}

/* Footer Base */
@media (max-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .social-icons {
    padding-top: 0px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    margin-top: 5px;
    font-size: 11px;
  }

  .footer-policies {
    font-size: 10px;
  }
}

.social-icons {
  padding-top: 50px;
}

.social-icons a:hover {
  background: #444;
}

/* Links + Contact Row */
.footer-links-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding:0 0px 20px;
  font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  color: #aaa;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.footer-policies {
  margin-bottom: 18px;
  margin-top: 20px;
}

.footer-copy {
  margin-bottom: 18px;
  margin-top: 20px;
}

.ft_link{font-family: 'DM Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #F5F5F5;
        }

.q_link{list-style: none; padding: 0;}
.q_link li{padding:6px 0px;}
.q_link li a{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;
    }
.f_cnt{font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #E0E0E0;
    text-decoration: none;}		
    
    .row {
display: flex
;
flex-wrap: wrap;
gap: inherit;
}

.form-row {
    display: flex;
    gap: 22px;
    margin-bottom: 14px;
}

.form-group.half {
    width: 49%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #E0E0E0;
}




}





/* =======================
   ✅ PRIVACY POLICY PAGE STYLES
   ======================= */


.privacy-page {

  main {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 16px 24px 16px;
  }

  .about-header {
    position: relative;
    text-align: center;
    max-width: 100%;
    height: auto;
    background: #1111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 167px;
  }

  .about-header h1 {
    font-size: 64px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    color: #F5F5F5;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
  }

  .lastup {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 32px;
  }

  .privacy-container {
    max-width: 1240px;
    width: 100%;
    margin: 56px auto;
    padding: 32px 40px;
    background: #1111;
    border-radius: 8px;
  }

  .privacy-desc {
    color: #bbbbbb;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 56px;
  }

  .section {
    margin-bottom: 56px;
  }

  .f24 {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 24px !important;
    color: #F5F5F5;
    margin-bottom: 24px;
  }

  .f20,
  .section p,
  .section li {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #E0E0E0 !important;
  }

  .section ul {
    padding-left: 21px;
    margin: 0;
  }

  .section-divider {
    border: none;
    border-bottom: 1px solid #878585;
    margin: 36px 0;
  }

  ul li {
    margin-bottom: 6px;
  }

  .contact-email {
    font-size: 1rem;
    margin-top: 10px;
    color: #7268f7;
    word-break: break-all;
  }

  @media (max-width: 900px) {
    .privacy-container {
      padding: 24px 13px;
      margin: 32px auto;
    }

    .about-header h1 {
      font-size: 32px;
      font-weight: 600;
    }
  }

  @media (max-width: 600px) {
    main {
      width: 367px;
    }

    .privacy-container {
      padding: 18px 8px;
      margin: 20px auto;
    }

    .about-header h1 {
      font-size: 26px;
    }
  }
}


/*
  ==========================
  ==========================   
   ==========================
   ✅ TERMS & CONDITIONS PAGE
   ========================== */

.terms-page {

  /* Main container */
  main {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 16px 24px 16px;
  }

  .about-header {
    position: relative;
    text-align: center;
    max-width: 100%;
    height: auto;
    background: #1111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 167px;
  }

  .about-header h1 {
    font-size: 64px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    color: #F5F5F5;
    text-transform: capitalize;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
  }

  .lastup {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 32px;
  }

  /* Terms container */
  .terms-container {
    max-width: 1240px;
    width: 100%;
    margin: 56px auto;
    padding: 32px 40px;
    background: #1111;
    border-radius: 8px;
  }

  .terms-desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    color: #bbbbbb;
    margin-bottom: 56px;
  }

  .section {
    margin-bottom: 56px;
  }

  .f24 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #F5F5F5;
    margin-bottom: 24px;
  }

  .f20,
  .section p,
  .section li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #E0E0E0 !important;
  }

  .section ul {
    padding-left: 21px;
    margin: 0;
  }

  .section ul li {
    margin-bottom: 6px;
  }

  .contact-email {
    font-size: 1rem;
    color: #7268f7;
    word-break: break-all;
    margin-top: 10px;
  }

  .section-divider {
    border: none;
    border-bottom: 1px solid #878585;
    margin: 36px 0;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .terms-container {
      padding: 24px 13px;
      margin: 32px auto;
    }

    .about-header h1 {
      font-size: 32px;
      font-weight: 600;
    }
  }

  @media (max-width: 600px) {
    main {
      width: 367px;
      margin: 0 auto;
    }

    .terms-container {
      padding: 18px 8px;
      margin: 20px auto;
      max-width: 96vw;
    }

    .about-header h1 {
      font-size: 26px;
    }
  }
}


/* ==========================
   ✅ FAQ PAGE STYLES
   ========================== */

.faq-page {

  body {
    background-color: #000;
  }

  .about-header {
    position: relative;
    text-align: center;
    max-width: 100%;
    height: 277px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .gallery-container {
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .animated-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.5) blur(1.8px);
    transition: opacity 0.4s, filter 0.33s;
    z-index: 2;
  }

  .animated-img.active {
    opacity: 1;
    filter: brightness(1.17) blur(0) drop-shadow(0 0 30px #a78bfa99);
    animation: lightningFlash .43s;
  }

  .about-header h1 {
    font-size: 64px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
  }

  .about-desc {
    background: linear-gradient(180deg, #111111 85%, transparent 100%);
    border-radius: 8px;
    padding: 1.3rem;
    max-width: 850px;
    margin: auto auto 2.5rem;
    color: #e0e0e0;
    text-align: center;
    box-shadow: 0 3px 30px #17173a2c;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 20px;
    line-height: 30px;
  }

  /* Accordion */
  .accordion-item {
    background-color: #111 !important;
    border: 1px solid #5c6eac !important;
    color: #fff;
  }

  .accordion-button {
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
  }

  .accordion-button:focus {
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background-color: #dcd1d1;
    color: #fff;
    box-shadow: none;
  }

  .accordion-body {
    color: #fff;
  }

  .f18 { font-size: 18px !important; }
  .f20 { font-size: 20px !important; }
  .f24 { font-size: 24px !important; font-family: 'Inter'; line-height: 32px; }

  .p-20 { padding: 0px 20px 20px 20px; }

  /* FAQ text clarity */
  .faq_desc,
  .que {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #E0E0E0;
  }

  /* Footer blur glow */
  .style1 { filter: blur(60px); box-shadow: 0 0 80px 40px #6147bd; }
  .style2 { filter: blur(70px); box-shadow: 0 0 60px 40px #5b43b3; }
  .style3 { filter: blur(70px); box-shadow: 0 0 10px 20px #6147bd; }
  .style4 { filter: blur(70px); box-shadow: 0 0 20px 20px #4f32b7; }

  /* Header animation */
  @keyframes lightningFlash {
    0% { filter: brightness(2) blur(.2px); }
    30% { filter: brightness(1.7) blur(0); }
    55% { filter: brightness(1.1) blur(0); }
    70% { filter: brightness(1.27) blur(.05px); }
    100% { filter: brightness(1.17) blur(0); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-header h1 { font-size: 32px; }
    .about-desc { font-size: 16px; padding: 1rem 0.7rem; }
  }
}


@media (max-width: 768px) {
    /* Hide the services section title only */
    .services-section1 + .section-title {
        display: none !important;
    }

    /* Hide the services grid */
    .services {
        display: none !important;
    }

    /* Show mobile services slider */
    .services-section1 {
        display: block !important;
    }
      .img1 {
    display: none;
  }
  .about-header {
    height: 140px !important;
  }
  .accordion-header{
    padding: 10px !important;
    /* margin: 10px !important; */
  }
  .f24{
    font-size: 18px !important;
  }
  .f18{
    background-color: #000;
  }
  .p-20{
    padding: 0;
  }
}





/* ================= MOBILE RESPONSIVE UPDATES ================= */
@media (max-width: 768px) {


  #heading {
    font-size: 32px;
    line-height: 42px;
  }
  /* Header */
  
 
.ux-header .ux-badg {
  width: 100px !important;
  height: 40px !important;
}

  .scroller__item{
    font-size: 15px;
  }
  .navbar {
    background: rgba(13,13,16,0.9);
    opacity: 0.95;
  }

  /* Navbar Scroller */
  .navbar-nav .nav-link {
    font-size: 18px;
  }

  /* Hero Section */
  .hero p.subtext {
    font-size: 14px;
  }

  /* UX Section */
  .ux-title {
    font-size: 27px;
    line-height: 1.2;
  }

  .ux-content {
    gap: 12px;
    /* margin-bottom: 40px; */
  }

  .ux-description {
    font-size: 14px;
    
  }

  .services-section1 h5{
    text-align: center;
  }



  

  

  /* About Us */
  .about-header .btn-gradient {
    margin-bottom: -70px;
  }

  /* Our Services */
  .services {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
  }
  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  /* Section Titles */
  .section-title p {
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 30px;
  }

  /* Projects Section */
  .project-card, .project-container {
    flex-direction: column;
  }

  /* Ecosystem */
  .ecosystem h2 {
    font-size: 30px;
  }
  .ecosystem .description {
    font-size: 12px;
  }

  /* UX Academy */
  .ux-subtitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    /* background: #6147BD; */
    margin: 8px auto 0;
  }

  /* CTA Section */
  .cta-section {
    padding: 0;
    margin-bottom: 50px;
  }
  .cta-text p {
    font-size: 10px;
  }

  /* FAQ */
  .faq-right p {
    text-align: center;
    font-size: 12px;
  }
  .accordion-header {
    background: #000000;
  }

  /* Footer */
  .social-icons a img {
    width: 30px;
    display: inline-block;
  }
  .footer-logo img {
    width: 140px;
  }
  .footer-content .row {
    margin-top: 30px;
  }
  .footer-links ul li a {
    font-size: 14px;
  }
  .footer-links ul li {
    padding: 0;
  }

  /* Support & Copyright */
  .footer-policies, .support-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    gap: 10px;
    margin-top: 15px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE — SERVICE SECTION (SLIDER VERSION)
   ============================================================ */
@media (max-width: 768px) {

    .services-section1 {
        text-align: center;
        padding: 20px 15px;
        margin-top: 40px;
    }

    .services-section1 h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .services-section1 .ux-line {
        display: block;
        width: 63px;
        height: 1px;
        background: url(img/Ellipse\ 581.png);
        background-repeat: no-repeat;
        background-size: cover;
        margin: 10px auto;
    }

    .services-section1 h1 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .services-section1 h1 span {
        color: #6936f5; /* adjust if needed */
    }

    .services-section1 .ux-description  {
        font-size: 14px;
        line-height: 20px;
        padding: 0 10px;
        margin: 0 auto;
        max-width: 330px;
    }

   
    

    /* ------------- Slider Container ------------- */
    .services-container1 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        margin-top: 40px !important;
        padding-bottom: 20px;

        /* Hide ugly scrollbar */
        -ms-overflow-style: none;  /* IE & Edge */
        scrollbar-width: none;     /* Firefox */
    }

    .services-container1::-webkit-scrollbar {
        display: none;  /* Chrome & Safari */
    }

    /* ------------- Card ------------- */
    /* .service-card1 {
        background: #fff;
        width: 180px;
        min-width: 180px;
        padding: 20px 10px;
        text-align: center;
        border-radius: 16px;
        box-shadow: 0 0 12px rgba(0,0,0,0.08);
        transition: 0.3s;
    } */

    .service-card1 img {
        width: 80px;
        height: auto;
        margin-bottom: 10px;
    }

    .service-card1 h3 {
        font-size: 16px;
        margin-top: 5px;
    }

    /* On touch hover */
    .service-card1:active {
        transform: scale(0.96);
    }
}











@media (max-width: 768px) {
  .next-btn {
    position: absolute;
    bottom: 15px;                  /* place inside image bottom */
    right: 15px;
    width: 40px !important;
    height: 40px !important;
    background-image: url('img/right-arrow.png');  /* <-- YOUR ARROW ICON */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0.9;
    border-radius: 50%;
    background-color: #ffffff20;   /* translucent circle */
    backdrop-filter: blur(10px);
  }


  /* ensure no element overlaps the button */
  .project-slider,
  .main-slide {
    position: relative !important;
    z-index: 1;
  }

  .main-slide img {
    width: 100%;
    height: auto !important; /* fix unclickable image */
  }

  .accordion-content p {
    background-color: #000;
  }
.row{
    margin-top: 20px;
  }

 

 

}



.mobile-only-footer {
  display: none;
}

/* Hide desktop version on mobile */
@media (max-width: 768px) {
  .desktop-only-footer {
    display: none !important;
  }
  .mobile-only-footer {
    display: block !important;
  }

  .innovation-badge-exact{
    font-size: 14px !important;
    padding: 3px
    
  }
  .project-page {
    .project-title {
        font-size: 20px !important;
        line-height: 30px !important;
    }
  }
}


/* Hide View More button on mobile */
@media (max-width: 768px) {
  #toggle-view-btn,
  .view-more-btn {
    display: none !important;
  }
}


/* 📱 MOBILE — Contact Form Responsive */
@media (max-width: 768px) {
  
  /* Make each row stack vertically */
  .form-row {
    flex-direction: column !important;
    gap: 20px;
  }

  /* Make all form groups full width */
  .form-group,
  .form-group.half {
    width: 100% !important;
  }

  /* Inputs & selects should be 100% width */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
  }

  /* Adjust label spacing */
  .contact-form label {
    margin-bottom: 6px;
    display: block;
  }

  /* Checkbox row fix */
  .checkbox-label {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    align-items: center;
  }
}



/* =========================================
   📱 FIX: SERVICES PAGE TOP BOXES (Mobile)
   Force 2 per row + responsive sizing
   ========================================= */
@media (max-width: 768px) {

  /* Container behaves like a grid */
  .services-page .top-boxes {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .img-ux {
    height: 50px !important;
    width: 40px !important;
  }
 

  /* EACH BOX – 2 in one row */
  .services-page .top-box {
    width: 48% !important;      /* 🔥 MAIN FIX */
    height: auto !important;    /* no fixed height */
    padding: 15px !important;
    border-radius: 10px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 20px !important;
  }

  /* ICON inside box */
  .services-page .top-box img {
    width: 120px !important;
    height: 55px !important;
    object-fit: contain !important;
    margin-bottom: 8px !important;
    margin: 15px !important;
  }

  /* Text */
  .services-page .top-box span {
    font-size: 12px !important;
    line-height: 14px !important;
    text-align: center !important;
  }
}


/* 🌟 Mobile Only Hero Background */
/* @media (max-width: 768px) {
  .hero {
    background-image: url('/img/bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /* Hide canvas on mobile so it doesn't interfere visually */
  /* #interactive-canvas {
    display: none !important;
  } */

  /* Optional: Slight black overlay for text readability */
  /* .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust if needed */
    /* z-index: -1; */
  /* }
}  */

/* ---------------------------
   About Page - Our Philosophy (mobile only)
----------------------------*/

/* hide by default (desktop) */
.about-philosophy-section {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .about-philosophy-section {
    display: block;
    padding: 0 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-philosophy-card {
    margin-top: 70px;

    position: relative;
    border-radius: 16px;
    border: 1px solid #33334d;
    background: #111111;
    box-shadow: 0 4px 35px rgba(20, 18, 44, 0.35);
    padding: 1.4rem 1.3rem 1.6rem;
    animation: aboutFadeUp 0.8s ease-out both;
  }

  .about-philosophy-icon {
    position: absolute;
    top: -18px;
    left: 16px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #6147bd;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-philosophy-icon i {
    color: #f5f5f5;
    font-size: 1.2rem;
  }

  .about-philosophy-title {
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: #f5f5f5;
  }

  .about-philosophy-title span {
    /* border-bottom: 2px solid #6147bd; */
    padding-bottom: 2px;
  }

  .about-philosophy-card p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    text-align: left;
  }
}

/* simple fade-up animation */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
