@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  /* font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif; */

}




nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  z-index: 20;
}

nav a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
  font-weight: 300;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #999;
}

nav.nav-main.is-scrolled a:hover {
  color: #999;
}

nav .logo a {
  font-weight: bold !important;
  font-size: 25px;
  color: white;
  letter-spacing: 2px;
  position: relative;
  z-index: 100;
  transition: .7s ease;


}

nav.nav-main.is-scrolled a {
  color: #000;
}


#navbar {
  position: fixed;
  top: 40px;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: transparent;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  margin: 0 19px;
}

.nav-links a:hover {
  color: #999;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}


#navbar.scrolled {
  background: #0000;
  backdrop-filter: blur(12px);
  color: black;
  border-radius: 50px;
  width: 96%;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  left: 2%;
  top: 0;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

#navbar.scrolled a {
  color: black;
}

#navbar.scrolled a:hover {
  color: #999;
}

#navbar.scrolled .logo {
  color: black;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero-bg {
  position: absolute;
  top: -1%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url('https://www.softflixitsolutions.com/assets/images/man-woman.png');
  /* background-image: url('./img/vecteezygradient_technology_backgroundAD0722_generated.jpg'); */
  /* background-image: url('./img/4-3.webp'); */
  background-size: cover;
  background-position: center;
  transform: rotateX(0deg) rotateY(0deg) scale(1);
  transition: transform 0.1s ease-out;
}

.hero .about-hero {
  /* background-image: url('./img/vecteezygradient_technology_backgroundAD0722_generated.jpg') !important;  */
  /* background-image: url('./img/pns.webp') !important;  */
  /* background-image: url('./img/ghghg.webp') !important;  */
  /* background-image: url('./img/futuristic-blue-technology.jpg') !important;  */
  /* background-image: url('./img/ofc.avif') !important; */
  background-image: url('./img/sillhouse.sf.png') !important;
  /* background-image: url('https://img.freepik.com/free-photo/group-business-people-brainstorming-with-silhouette-sunset_53876-144317.jpg?ga=GA1.1.1782529692.1753690469&semt=ais_wordcount_boost&w=740&q=80') !important; */
  background-size: cover;
  position: relative;
}

.hero.about-hero-main p:nth-of-type(1) {
  font-size: 45px;
  font-weight: 500;

}

.hero.about-hero-main p:nth-of-type(2) {
  font-size: 30px;
  font-weight: 200;
  color: rgb(255, 255, 255);
}

.hero .about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: .15;

}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 5;
  padding: 0 10px;
}

.hero-content p {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 200;
}

.hero-content span {
  color: yellow;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: auto;
  align-items: center;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #000;
  color: #fff;
  transition: right 0.4s ease;
  z-index: 50;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin: 12px 0;
  border-bottom: 1px solid #7b7b7b;
  width: 100%;
  text-align: center;
  padding: 8px 0;
}

.mobile-menu a:hover {
  color: yellow;
}

.mobile-logo {
  font-weight: bold;
  font-size: 22px;
  margin: 25px 0;
}

.close-btn {
  position: absolute;
  top: -20px;
  right: 6px;
  font-size: 32px;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 50;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: left 0.4s ease, opacity 0.4s ease;
}

.mobile-menu.active {
  left: 0;
  opacity: 1;
  z-index: 99;
}

.mobile-menu {
  transition: left 0.4s ease, opacity 0.4s ease 0.05s;
}

.innovation-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  color: #000;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
}

.innovation-section h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
}

.innovation-section p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 1000px;
  margin: 20px auto;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0 20px;
  transition: color 0.3s ease;
  position: relative;
}


.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 999;
  top: 40px;
  left: 0;
  overflow: hidden;
  transition: .5s ease;
}


.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}

#navbar.scrolled .dropdown-content {
  top: 70px;
}


.dropdown-content a {
  color: #000;
  padding: 10px;
  display: block;
  transition: 0.4s ease;
  margin: 0;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown-content a:hover {
  background-color: #999;
  padding-left: 20px;
  color: #fff !important;
}

.dropbtn:hover {
  color: #555;
}

.arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.breadcrumb-box {
  position: relative;
}

/* MENU TOGGLE */
.breadcrumb-box .menu-toggle {
  font-size: 28px;
  cursor: pointer;
  padding: 10px 15px;
  color: #fff;
  background: #000;
}

/* MOBILE MENU SIDEBAR */
.breadcrumb-box .mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  /* top: -100vh; */
  top: 145px;
  /* right: -100%; */
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  padding: 0px;
  border-radius: 15px;
  transition: .7s ease !important;
  z-index: 1000;
  border: 1px solid #dadada;
  width: 0;
  left: 50%;
}

.breadcrumb-box .mobile-menu.active {
  top: 115px;
  transition: .7s ease;
  width: 96%;
  left: 2%;
  height: 70vh;
  overflow: scroll;

}

/* CLOSE BUTTON */
.breadcrumb-box .close-btn {
  align-self: flex-end;
  font-size: 70px;
  cursor: pointer;
}

/* LINKS */
.breadcrumb-box .mobile-menu a {
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.breadcrumb-box .breadcrumb-box .dropdown:hover {
  color: yellow;
}

/* DROPDOWN */
.breadcrumb-box .dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  margin-top: 5px;
  transition: max-height 0.4s ease;
}

.breadcrumb-box .dropdown-content a {

  display: block;
  padding: 20px 10px;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  background: #fff !important;
  color: #000 !important;


}


.breadcrumb-box .dropdown-content.show {
  max-height: 400px;
  visibility: visible;
  opacity: 1;
}

/* ARROW ROTATION + COLOR TRANSITION */
.breadcrumb-box .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: rgb(0, 0, 0);
}

.breadcrumb-box .arrow.rotate {
  transform: rotate(180deg);
  color: yellow;
}

/* LOGO */
.breadcrumb-box .mobile-logo {
  font-weight: bold;
  font-size: 35px;
  color: #000000;
  text-align: center;
  margin: 0;
}

section.breadcrumb-box .dropdown-content {
  position: relative;
  width: 100%;
  margin-top: -45px;
  margin-bottom: 30px;
  transition: .7s ease;
}

section.breadcrumb-box .dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.breadcrumb-box .dropdown-content.show {
  max-height: 400px;
  visibility: visible;
  opacity: 1;
  width: 100%;
  margin-top: -45px;
  margin-bottom: 30px;
}

.projects {
  padding: 60px 1%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
}

.projects .projects-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
}

.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  justify-items: center;
}

.projects .project-card {
  width: 100%;
  max-width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projects .project-card img {
  width: 100%;
  transition: transform 0.4s ease;
  height: 250px;
}

.projects .project-card h3 {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 600;
}

.projects .project-card p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

/* Hover effect */
.projects .project-card:hover {
  transform: translateY(-8px);
}

.projects .project-card:hover img {
  transform: scale(1.05);
}

.our-formula {
  text-align: center;
  padding: 60px 0;
  background: #fff;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

.our-formula .formula-content h3 {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.our-formula .formula-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
}

.our-formula .formula-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.our-formula .formula-image img {
  width: 100%;
  height: auto;
  display: block;
}

.what-we-do {
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 80px 5%;
  background: #fff;
  color: #111;
}

.what-we-do h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
}

.what-we-do .subtitle {
  font-size: 20px;
  color: #1a1a1a;
  opacity: 0.8;
  margin-bottom: 60px;
}

.what-we-do .services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.what-we-do .service {
  max-width: 280px;
  text-align: left;
}

.what-we-do .service .icon {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.what-we-do .service h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.what-we-do .service ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-we-do .service li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.design-thinking {
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.design-thinking h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
}

.design-thinking p {
  font-size: 20px;
  color: #333;
  margin-bottom: 60px;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
}

.step img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* padding: 25px; */
  /* background-color: #ccc; */
  object-fit: contain;
  margin-bottom: 15px;
}

/* Colors */
/* .blue img { background-color: #2a2fbf; }
.violet img { background-color: #6258c2; }
.purple img { background-color: #823c89; }
.teal img { background-color: #3eb8b1; }
.green img { background-color: #a3b93e; }
.yellow img { background-color: #f0b822; }
.orange img { background-color: #f26730; }
.red img { background-color: #c62828; }
.pink img { background-color: #eb3b65; } */

.step h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #333;
}

.stages {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
}

.stage {
  text-align: center;
}

.stage hr {
  width: 200px;
  border: none;
  border-top: 1px solid #aaa;
  margin-bottom: 10px;
}

.stage p {
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
}

.top-bar {
  background: #ffffff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
  max-width: 1300px;
  margin: auto;

}

.left-section span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
a.top-bar-mail:hover {
    color: #999 !important;
}

.right-section a {
  color: #000000;
  margin-left: 18px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.right-section a:hover {
  color: #999;
}

.left-section span a {
  color: #000;
  text-decoration: none;
}

.left-section span a:hover {
  color: #999;
}

.left-section span:nth-of-type(1) a:hover {
  color: #000;
  cursor: unset;
}

.breadcrumb-box .dropdown-content.show {
  /* max-height: max-content; */
  visibility: visible;
  opacity: 1;
  width: 95%;
  margin-top: -30px;
  margin-bottom: 45px;
  /* margin-left: 10%; */
  border: 1px solid #dadada;
  box-shadow: 17px 24px 30px -9px #9d9d9d;
  overflow: scroll;
}

nav#navbar .line {
  width: 30px;
  height: 4px;
  background: #ffffff;
  margin: 5px;
  display: block;
  transition: .7s ease;
}

#navbar.scrolled .line {
  width: 30px;
  height: 4px;
  background: #000000;
  margin: 5px;
  display: block;
}

.menu-toggle.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.full-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#navbar .full-name div:nth-of-type(2) {
  font-size: 12px;
  font-weight: 400;
  margin-top: -8px;
  ;
  transition: .7s ease;
}

#navbar.scrolled .full-name div:nth-of-type(2) {
  color: #000;
  transition: .7s ease;
}


/* Background section */
.footer {
  background-image: url('./img/image-12.png');
  /* background-image: url('https://img.freepik.com/premium-photo/front-view-business-people-working_107420-34685.jpg?w=1480'); */
  background-size: cover;
  background-position: center;
  /* padding: 60px 3%; */
  position: relative;
  color: #fff;
}

footer.footer .footer-inner {
  padding: 50px 3%;
}

/* Overlay for better text visibility */
.footer::before {
  content: '';
  position: absolute;
  /* inset: 0; */
  background: rgb(7 7 13 / 80%);
  z-index: 0;
  /* backdrop-filter: blur(2px); */
}

.footer>* {
  position: relative;
  z-index: 1;
}

/* Top section */
.footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.footer-top h2 {
  font-size: 48px;
  font-weight: 600 !IMPORTANT;
  line-height: 1.3;
  margin-bottom: 40px;
}

.footer-top p {
  font-size: 18px;
  margin: 10px 0 20px;
}

.cta-btn {
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);

  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s ease;
  font-size: 16px;
}

.cta-btn:hover {
  background: #ffffff;
  color: #000000;
}

button.cta-btn i.fa-solid.fa-arrow-right {
  transform: rotateX(359deg);
  transition: .4s ease;

}

button.cta-btn:hover i.fa-solid.fa-arrow-right {
  transform: unset;
  margin-left: 10px;

}

.divider {
  border: 0;
  border-top: 1px solid rgb(255 255 255);
  margin: 30px 0;
  border-radius: 100px;
}

/* Footer content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;

}

.footer-col ul li a:hover {
  color: #999;
}

/* About section */
.about .logo {
  font-size: 26px;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 10px;
}

.about p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-links a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #999;
}

/* Contact */
.contact p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.contact .help {
  margin-top: 10px;
  font-weight: 600;
  color: #00aaff;
}

.phone {
  color: #00aaff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
  transition: .4s ease;
}

.phone:hover {
  color: #999;
  /* padding-left: 10px; */
}

.emails a {
  color: #ffffff;
  text-decoration: none;
  transition: .4s ease;
}

.emails a:hover {
  color: #999;
  /* padding-left: 10px; */
}

.footer-col.about {
  position: relative;
}

.footer-col.about img {
  position: absolute;
  top: -65px;
  left: -40px;
}

.footer-col.about p {
  margin-top: 30%;
  font-size: 16px;
  color: #fff;
}

.footer-col ul li {
  transition: .4s ease;
}

.footer-col ul li:hover {
  padding-left: 10px;
}

a.address-bottom {
  text-decoration: unset;
  color: #fff;
  transition: .4s ease;
  font-size: 16px;
}

a.address-bottom:hover {
  color: #999;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 18px;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 99;
}

#scrollTopBtn:hover {
  background: #fff;
  /* lighter blue on hover */
  transform: translateY(-4px);
  color: #000;

}

/* === CONTACT SECTION (Scoped Styles) === */
.contact-section {
  padding: 60px 0;
  text-align: center;
}

.contact-section .heading {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-section .heading span {
  color: #0078ff;
}

.contact-section .contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-section .contact-image img {
  width: 550px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 550px;
  text-align: left;
}

.contact-section .input-row {
  display: flex;
  gap: 10px;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  width: 100%;
  margin-top: 15px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
  border-color: #0078ff;
  box-shadow: 0 0 4px rgba(0, 120, 255, 0.3);
}

.contact-section .submit-btn {
  margin-top: 50px;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: .4s;
}

.contact-section .submit-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.book-slider {
  padding: 60px 40px;
  position: relative;
}

/* Heading */
.book-slider .slider-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* Review Card */
.book-slider .review-card {
  background: #f8f8f8;
  border-radius: 10px;
  color: #000000;
  text-align: center;
  margin: 15px;
  padding: 15px !important;
  height: 250px;
  border: 1px solid #d0d0d0;
  transition: .4s ease;
}

.book-slider .review-card:hover {
  border: 1px solid #000000;
}

/* User Icon */
.book-slider .user-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Stars */
.book-slider .stars i {
  color: #000000;
  margin: 2px;
  font-size: 10px;
}

.frame-in {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.book-slider .stars p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 600;
}

.book-slider .stars p:nth-of-type(2) {
  padding: 0 0 10px 0;
}

p.fram-in-para {
  font-size: 15px;
}

.book-slider .stars {
  text-align: start;
}

.book-slider .stars p {
  padding: 3px 0;
}

/* Arrows */
.book-slider .custom-arrows {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.book-slider .custom-arrows button {
  pointer-events: auto;
  background: #ffffff;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  border: 1px solid #d0d0d0;
  color: #d0d0d0;
  transition: .4s ease;
}

.book-slider .custom-arrows button:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  color: #000;
  border: 1px solid #000;
}

/* Slick slide spacing */
.book-slider .slider-container .slick-slide {
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Paragraph */
.book-slider section.book-slider p {
  font-size: 16px;
  font-weight: 400;
}

/* Header row */
.book-slider .book-slider-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 15px;
}

/* Review Card Image */
.book-slider .review-card img {
  width: 80px;
  display: flex;
  justify-content: center;
}

/* Slick Fix */
.book-slider .slick-list,
.book-slider .slick-track,
.book-slider .slider-container {
  z-index: 1;
}

.book-slider .slick-slide:focus {
  outline: none;
}

.book-slider .slick-dots {
  display: none !important;
}

.Manifesto {
  max-width: 1130px;
  background: #f8f8f8;
  padding: 80px 50px;
  border-radius: 3rem;
  margin: auto;
}

.Manifesto1 {
  display: flex;
  justify-content: center;
}

.Manifesto1 div {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #006aca;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
}

.Manifesto .heading {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 800;
}

.Manifesto .accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.Manifesto .acc-item {
  border: 1px solid #000000;
  border-radius: 30px;
  overflow: hidden;
}

.Manifesto .acc-btn {
  width: 100%;
  padding: 20px 20px;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500 !important;
  font-family: 'Poppins';

}

.hr div {
  width: 20px;
  height: 2px;
  background: #000000;
  margin-bottom: 50px;
}

.hr {
  display: flex;
  justify-content: center;
}

.Manifesto .acc-btn .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.Manifesto .acc-item.active .icon {
  transform: rotate(45deg);
  /* + turns into × */
}

.Manifesto .acc-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  /* transition: max-height 0.35s ease; */
}

.Manifesto .acc-item.active .acc-content {
  padding: 20px;
  max-height: 400px;
  background: #fff;
  padding-top: 0;
}

.acc-content li {
  list-style: inside;
  padding: 5px 0;
}

.Manifesto .acc-content {
  overflow: hidden;
  height: 0;
  transition: .4s ease;
}

.Manifesto .acc-item .icon {
  transition: .4s ease;
}

.Manifesto .acc-item.active .icon {
  transform: rotate(45deg);
}

.contact-form textarea {
  max-width: 100%;
  max-height: 115px;
}

/* .stats-section {
  display: flex;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 60px;
}

.stat-box {
  width: 23%;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
  transition: .4s ease;
}

.stat-box p {
  font-size: 18px;
  color: #000;
  transition: .4s ease;
}

section#statsSection .stat-box {
  transition: .4s ease;
}

section#statsSection .stat-box:hover {
  background: #909090;
  transform: scale(1.07);
}

section#statsSection .stat-box:hover p {
  color: #fff;
}

section#statsSection .stat-box:hover h2 {
  color: #fff;
} */

/* Fade Transition */
.fade-transition {
  transition: opacity 1.5s ease;
  /* 1.5s smooth fade */
}

/* ===============================
   ELITE STATS – ULTRA VERSION
================================ */

.elite-stats.ultra {
  padding: 120px 20px;
  /* background: radial-gradient(circle at top, #edf3ff, #e6edff); */
  perspective: 1200px;
  padding-bottom: 40px;
}

.elite-stats.ultra .elite-stats__grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 38px;
}

/* CARD */
.elite-stats.ultra .elite-stats__card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 60px 36px;
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

/* ACTIVE CARD */
.elite-stats.ultra .elite-stats__card--active {
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  box-shadow: 0 40px 120px rgba(0, 106, 202, 0.55);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.08);
  }
}

/* GRADIENT RING */
.elite-stats.ultra .elite-stats__ring {
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(120deg,
      rgba(0, 106, 202, .9),
      rgba(89, 89, 89, .6),
      rgba(0, 106, 202, .9));
  animation: spin 7s linear infinite;
  z-index: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* SHINE PASS */
.elite-stats.ultra .elite-stats__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.45),
      transparent 70%);
  transform: translateX(-120%);
  animation: shine 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* INNER MASK */
.elite-stats.ultra .elite-stats__card::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: inherit;
  border-radius: 24px;
  z-index: 1;
}

/* CONTENT */
.elite-stats.ultra .elite-stats__card h3,
.elite-stats.ultra .elite-stats__card p {
  position: relative;
  z-index: 3;
}

.elite-stats.ultra .elite-stats__card h3 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #0f172a;
}

.elite-stats.ultra .elite-stats__card--active h3 {
  color: #ffffff;
}

.elite-stats.ultra .elite-stats__card p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #64748b;
}

.elite-stats.ultra .elite-stats__card--active p {
  color: rgba(255, 255, 255, 0.9);
}

/* HOVER DEPTH */
.elite-stats.ultra .elite-stats__card:hover {
  transform: translateY(-20px) rotateX(6deg) rotateY(-6deg);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.3);
}

/* ===============================
   STATS SECTION INTRO
================================ */

.elite-stats.ultra .elite-stats__intro {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.elite-stats.ultra .elite-stats__tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #006aca;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
}

.elite-stats.ultra .elite-stats__intro h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 14px;
}

.elite-stats.ultra .elite-stats__intro p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .elite-stats.ultra .elite-stats__intro h2 {
    font-size: 30px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .elite-stats.ultra .elite-stats__card {
    transform: none !important;
    animation: none;
  }
}



.animated-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fefcf8;
}

.animated-video .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url(https://images.unsplash.com/photo-1725543432111-2e238ca9ec3a?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDE0fHx8ZW58MHx8fHx8); */
  /* background-image: url(https://images.unsplash.com/photo-1549605606-2b15d707d5ac?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDF8fHxlbnwwfHx8fHw%3D); */
  background-image: url(https://media.istockphoto.com/id/1895419690/photo/night-photo-of-granite-cliffs.webp?a=1&b=1&s=612x612&w=0&k=20&c=oYlODzgALtL4ODModHypiQSiRRGa3BXWUZn2ZJXaZYI=);
  /* background-image: url(https://images.unsplash.com/photo-1609373647220-28dc03d42396?q=80&w=725&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D); */
  background-size: cover;
  /* IMPORTANT */
  background-position: top;
  /* IMPORTANT */
  background-repeat: no-repeat;
  /* IMPORTANT */
  z-index: 1;
  transition: opacity 0.7s ease;
}


.animated-video .video-wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.7s ease;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: bold;
  margin-top: 60px;
}

.hero-text .title {
  font-size: 36px;
  margin: 0;
  font-weight: 500;
  transition: color 5s ease, opacity 0.7s ease, transform 0.7s ease;
}

#playBtn {
  position: absolute;
  top: 62%;
  left: 52%;
  /* thoda right side shift */
  transform: translateX(-50%);
  z-index: 5;
  padding: 12px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 10px;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  border: none;
  font-weight: 700;
}

#playBtn.flip {
  transform: translateX(-50%) rotateY(360deg);
  opacity: 0;
}

.color-animation {
  animation: colorShift 5s forwards;
}

@keyframes colorShift {
  0% {
    color: #ffffff;
  }

  /* clean start */
  20% {
    color: #e6f0ff;
  }

  /* soft blue-white */
  40% {
    color: #c7d2fe;
  }

  /* lavender blue */
  60% {
    color: #b8fff1;
  }

  /* subtle aqua */
  80% {
    color: #ffffff;
  }

  /* back to white */
  100% {
    color: #ffffff;
  }
}


.hero-title .highlight {
  color: #276ead;
  transition: color 0.3s ease;
  font-weight: 400;
}

span.big-text {
  font-weight: bold;
  font-size: 90px;
  letter-spacing: 15px;
  color: #fff;
}

span.small-text {
  font-size: 70px;
  color: #fff;
}

.bigsmalltxt {
  line-height: 1.2;
  margin-top: 100px;
}

.text-flip-out {
  transform: rotateY(360deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.text-flip-in {
  transform: rotateY(-360deg);
  opacity: 1;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Shake Animation */
.shake {
  animation: shakeAnim 0.8s ease-in-out infinite;
}

#playBtn {
  position: absolute;
  top: 60%;
  /* vertical alignment */
  left: 50%;
  /* horizontal center */
  transform: translate(-50%, -50%);
  /* center properly */
  z-index: 5;
  padding: 12px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 10px;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  border: none;
  font-weight: 700;
}

/* Shake Animation */
.shake {
  animation: shakeAnim 0.8s ease-in-out infinite;
}

@keyframes shakeAnim {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }

  25% {
    transform: translate(-50%, -50%) translateX(-3px);
  }

  50% {
    transform: translate(-50%, -50%) translateX(3px);
  }

  75% {
    transform: translate(-50%, -50%) translateX(-3px);
  }

  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

#playBtn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.animated-video {
  position: relative;
}

.animated-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-title {
  color: #ffffff;
  line-height: 1.3;
  text-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 0, 0, 0.25);
}

.hero-title .highlight {
  color: #4da3ff;
  /* softer premium blue */
  font-weight: 500;
}

#playBtn {
  backdrop-filter: blur(6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.see-more {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  animation: bounce 2s infinite;
}

.see-more a {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 500;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.hero-text {
  max-width: 1100px;
  padding: 0 20px;
}

.hero-title {

  margin: 0 auto;
}

.hero-title .highlight {
  color: #4da3ff;
}

.hero-title .highlight.soft {
  color: #ffffff;
}

.bigsmalltxt {
  text-align: center;
  line-height: 1.1;
  transform-style: preserve-3d;
}

/* SMALL TEXT */
.bigsmalltxt .small-text {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

/* BIG TEXT */
.bigsmalltxt .big-text {
  display: inline-block;
  font-size: 92px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* ENTRY ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-growth-section {
  padding: 100px 0;
  background: #f8f9fb;
}

.about-growth-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-growth-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5b041;
  margin-bottom: 16px;
  font-size: 13px;
  color: #000;
  background: #eff0ec;
  padding: 5px 15px;
  border-radius: 30px;


}

.about-growth-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}

.about-growth-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 32px;
}

/* LIST */
.about-growth-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.about-growth-list li {
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
  color: #000000;
}

.about-growth-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #000000;
  font-weight: bold;
}

.about-growth-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.about-growth-list span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

/* BUTTON */
.about-growth-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f5b041;
  color: #0f1f2c;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  padding: 12px 35px;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-decoration: unset;
}

.about-growth-btn:hover {
  text-decoration: underline;
}

/* RIGHT IMAGE */
.about-growth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-growth-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-growth-list li {
    padding-left: 0;
  }

  .about-growth-list li::before {
    position: static;
    margin-right: 8px;
  }
}

.about-solution-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-solution-section .about-solution-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.about-solution-section .about-solution-image {
  position: relative;
}

.about-solution-section .image-frame {
  position: relative;
}

.about-solution-section .image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background: #f5b041;
  z-index: -1;
}

.about-solution-section .image-frame img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.about-solution-section .about-solution-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 14px;
  display: inline-block;
}

.about-solution-section .about-solution-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f1f2c;
  margin-bottom: 32px;
}

/* INFO CARDS */
.about-solution-section .about-solution-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}

.about-solution-section .about-solution-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0f1f2c;
}

.about-solution-section .about-solution-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.about-solution-section .icon-box {
  min-width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid #eff0ec;
  color: #0f1f2c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

/* ACTIONS */
.about-solution-section .about-solution-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.about-solution-section .about-solution-btn {
  padding: 14px 30px;
  background: #f5b041;
  color: #0f1f2c;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 12px 26px;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-decoration: unset;
}

.about-solution-section .about-solution-btn:hover {
  text-decoration: underline;
}

.about-solution-section .about-solution-call span {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

.about-solution-section .about-solution-call strong {
  font-size: 15px;
  color: #0f1f2c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-solution-section .about-solution-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-solution-section .about-solution-card {
    text-align: left;
  }

  .about-solution-section .about-solution-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* =========================
   WORK CULTURE SECTION
========================= */
.work-culture-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.work-culture-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.work-culture-section__content {
  max-width: 520px;
}

.work-culture-section__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.work-culture-section__title span {
  color: #4da3ff;
  /* accent color */
}

.work-culture-section__description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* RIGHT IMAGE */
.work-culture-section__image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.work-culture-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .work-culture-section__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .work-culture-section__content {
    max-width: 100%;
  }
}






/* .. */


/* ===============================
   WHO WE ARE SECTION
================================ */
.who-we-are-section {
  padding: 80px 0;
  background: #ffffff;
  padding-bottom: 0;
}

.who-we-are-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

/* IMAGE */
.who-we-are-image {
  flex: 1;
}

.who-we-are-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* CONTENT */
.who-we-are-content {
  flex: 1.2;
}

.who-we-are-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-we-are-content h2 span {
  color: #4da3ff;
}

.who-we-are-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .who-we-are-container {
    flex-direction: column;
  }

  .who-we-are-strip {
    width: 100%;
    height: 60px;
  }

  .who-we-are-content h2 {
    font-size: 30px;
  }
}


.see-more a {
  color: #fff !important;
}

.see-more {
  display: block !important;
  z-index: 99;
  margin-top: 15%;
}

.innovation-section {
  padding: 120px 20px;
  background: #ffffff;
}

.innovation-section .content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.innovation-section h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}

.innovation-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.stats-section {
  padding: 80px 20px;
  background: #f9fafb;
  overflow: hidden;
}

.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.our-formula {
  padding: 120px 0px;
  padding-top: 0;
}

.formula-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 12px;
}

.formula-content h3 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #777;
  text-transform: uppercase;
}

.what-we-do {
  padding: 80px 20px;
  padding-top: 0;
}

.service {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.35s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service .icon {
  font-size: 34px;
  color: #0a66ff;
  margin-bottom: 20px;
}

.review-card {
  padding: 30px;
  border-radius: 16px;
  background: #fff;
}

.fram-in-para {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.Manifesto {
  padding: 80px 20px;
  background: #f8f9fc;
}

.acc-item {
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer-top {
  padding: 100px 20px;
  padding-top: 0;
  margin: 0;
  padding-bottom: 0;

}

.cta-btn {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.about-values {
  padding: 100px 0;
  background: #ffffff;
}

.about-values__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.about-values__header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values__badge {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f2f4f7;
  margin-bottom: 12px;
}

.about-values__title {
  font-size: 48px;
  font-weight: 600;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-values__card {
  background: #f8f9fb;
  padding: 28px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.about-values__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-values__card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-values__card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.about-cta {
  padding: 100px 0;
  background: #f8f9fb;
}

.about-cta__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-cta__label {
  font-size: 13px;
  color: #666;
}

.about-cta__title {
  font-size: 40px;
  margin: 12px 0;
}

.about-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.about-cta__buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  padding: 12px 26px;
  background: #0b5cff;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
}

.btn-secondary {
  padding: 12px 26px;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
}

.about-cta__image img {
  width: 100%;
  border-radius: 18px;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  background: linear-gradient(180deg, #f8f9fc, #ffffff);
  padding: 120px 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
}

/* =========================
   SLIDER BUTTONS
========================= */
.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* =========================
   TESTIMONIAL CARDS
========================= */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 70px;
  color: rgba(0, 0, 0, 0.05);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* =========================
   PROFILE HEADER
========================= */
.testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-right: 15px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

/* =========================
   STARS
========================= */
.testimonial-stars {
  margin: 10px 0 18px;
  color: #f59e0b;
  font-size: 14px;
}

/* =========================
   QUOTE
========================= */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-slider {
  padding: 80px 0;
  background: #fff;
  /* padding-top: 0; */
  max-width: 1150px;
  margin: auto;

}

.book-slider-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.slider-heading {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.slider-container {
  display: flex;
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 28px;
  max-width: 360px;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.frame-in {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f3f3;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.review-role {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.review-stars {
  color: #f4b400;
  font-size: 14px;
}

.fram-in-para {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.about-values {
  padding: 100px 0;
  background: #ffffff;
}

.about-values__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.about-values__header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values__badge {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #eff0ec;
  margin-bottom: 12px;
}

.about-values__title {
  font-size: 48px;
  font-weight: 600;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-values__card {
  background: #eff0ec;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.about-values__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-values__card h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.about-values__card p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-top: 50px;

}

.about-cta {
  padding: 60px 0;
  background: #f8f9fb;
}

.about-cta__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-cta__label {
  font-size: 13px;
  color: #000;
  background: #eff0ec;
  padding: 5px 10px;
  border-radius: 30px;

}

.about-cta__title {
  font-size: 40px;
  margin: 25px 0;
}

.about-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.about-cta__buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  padding: 12px 26px;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-decoration: unset;
}

.btn-primary:hover {
  text-decoration: underline;
}

.btn-secondary {
  padding: 12px 26px;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
  text-decoration: unset;
}

a.btn-secondary:hover {
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-decoration: underline;
}

.about-cta__image img {
  width: 100%;
  border-radius: 18px;
}

.about-hero-main {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.about-hero {
  position: absolute;
  inset: 0;
  background: url("./img/about-hero.jpg") center/cover no-repeat;
  transition: transform 0.6s ease;
}

/* Overlay */
.about-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

/* === About Us label (about-hero__label equivalent) === */
.hero-content p:nth-child(1) {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 16px;
}

/* === Main title (about-hero__title equivalent) === */
.hero-content p:nth-child(2) {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

/* === Subtitle (about-hero__subtitle equivalent) === */
.hero-content p:nth-child(3) {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content p:nth-child(2) {
    font-size: 36px;
  }

  .hero-content p:nth-child(3) {
    font-size: 16px;
  }
}

.about-team-section {
  width: 100%;
  padding: 80px 0;
  padding-top: 20px;
}

.about-team-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-team-section__image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.about-team-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-section__content {
  color: #fff;
}

.about-team-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: #000;
}

.about-team-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #4da3ff;
  margin-top: 12px;
}

.about-team-section__description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  max-width: 520px;
}

/* =====================
   RESPONSIVE
===================== */
.sf-blog {
  padding: 80px 0;
  background: #f9fafb;
}

.sf-blog__grid {
  max-width: 1140px;
  padding: 0 15px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sf-blog__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease !important;
}

.sf-blog__card:hover {
  transform: translateY(-6px) !important;
  border: 1px solid #000;
}

.sf-blog__image img {
  width: 100%;
  height: 200px;
  object-fit: fill;
}

.sf-blog__body {
  padding: 20px;
}

.sf-blog__body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sf-blog__body .date {
  font-size: 13px;
  color: #777;
}

.sf-blog__body hr {
  margin: 14px 0;
  border: none;
  border-top: 1px solid #eee;
}

.author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  font-size: 14px;
}

.author p {
  font-size: 13px;
  color: #666;
}

.sf-blog__body a {
  display: inline-block;
  margin-top: 12px;
  color: #ff5a00;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.sf-blog__author {
  display: flex;
  gap: 15px;
}

.sf-blog__author img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;

}

.sf-blog__image {
  overflow: hidden;
  height: 200px;
}

.sf-blog__image img {
  transition: 5s ease !important;
}

article.sf-blog__card:hover .sf-blog__image img {
  transform: scale(1.2);
}

.hero.about-hero-main.Blog .about-hero {
  background-image: url(./img/breadcum-bg-1.jpg) !important;
}

.slider-container .slick-slide>div {
  width: 100%;
}

.slider-container .slick-list {
  overflow: hidden;
}

.review-card {
  max-width: 100%;
  box-sizing: border-box;
}

.contact-map-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-map-section .contact-map-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT INFO */
.contact-map-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map-section .info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
}

.contact-map-section .icon-box {
  max-width: 55px;
  width: 100%;
  height: 55px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 22px;
  border: 1px solid #9c9c9c;

  color: #000;
}

.contact-map-section .text-box h4 {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.contact-map-section .text-box p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

/* MAP */
.contact-map-section .map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.contact-map-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-map-section .contact-map-container {
    grid-template-columns: 1fr;
  }

  .contact-map-section .map-wrapper {
    height: 350px;
  }
}

.contact-form-section {
  background: #ffffff;
  padding: 80px 20px;
  padding-top: 20px;


}

.contact-form-section .contact-form-container {
  max-width: 1150px;
  margin: auto;
  background: #f9f9f9;
  padding: 50px;
  border-radius: 4px;
}

.contact-form-section h2 {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-form-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-section .form-group {
  position: relative;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 20px 15px;
  border: none;
  background: #ffffff;
  font-size: 18px;
  border-radius: 10px;
}

.contact-form-section textarea {
  height: 120px;
  resize: none;
}

.contact-form-section .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2064a1;
  font-size: 14px;
}

.contact-form-section .form-group.textarea .icon {
  top: 18px;
  transform: none;
}

.contact-form-section button {
  margin-top: 10px;
  color: #fff;
  border: none;
  padding: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  border-radius: 50px;
}

.contact-form-section button:hover {
  background: transparent;
  color: #000;
  border: 1px solid #777777;
}

.hero.about-hero-main.Blog.conatct-us .about-hero {
  background-image: url(./img/office-desktop-with-laptop-business-man_23-2148174087.avif) !important;
}

.services-section {
  padding: 80px 20px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* PARENT CARD */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

/* IMAGE */
.service-card__image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.service-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* BUTTON */
.service-card__btn {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  width: max-content;
}


/* CONTENT */
.service-card__content {
  padding: 24px;
}

.service-card__content h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* HOVER EFFECTS */
.service-card:hover img {
  transform: scale(1.08) rotate(1.5deg);
}

.service-card:hover .service-card__btn {
  bottom: 20px;
}

.hero.about-hero-main.Blog.conatct-us.services .about-hero {
  background-image: url(./img/services-bg.jpg) !important;
}

.services-grid .service-card {
  transition: .4s ease;
}

.services-grid .service-card:hover {
  border: 1px solid #000;
}

.hero.about-hero-main.Blog.conatct-us.services.portfolio .about-hero {
  background-image: url(./img/wmremove-transformed.png) !important;
}

.case-studies-section {
  padding: 80px 30px;
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
}

.case-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.case-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.case-content {
  padding: 22px;
}

.case-content h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.case-content p {
  font-size: 14px;
  color: #555;
}

.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}

.case-card.active .more-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.more-content h4 {
  font-size: 14px;
  margin: 10px 0 6px;
}

.more-content ul {
  padding-left: 18px;
}

.more-content li {
  font-size: 13px;
  margin-bottom: 6px;
}

.toggle-btn {
  margin-top: 15px;
  background: none;
  border: none;
  color: #1865ab;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.case-image {
  overflow: hidden;
  height: 350px;

}

.case-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.animated-video .bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #000;
  background: rgba(0, 0, 0, 0.2);
  background: rgb(132 132 132 / 20%);
  backdrop-filter: blur(2px);
}

.hero.about-hero-main.Blog.conatct-us.services.Tech .about-hero {
  background-image: url(./img/technology-human-touch-background-modern-remake-creation-adam_53876-129794.avif) !important;
}

.tech-main {
  padding: 100px 0;
  background: #ffffff;
}

.tech-main .tech-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.tech-main .tech-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6c6c6c;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
}

.tech-main .tech-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #6c6c6c;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.tech-main .tech-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.tech-main p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.tech-main .tech-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 26px;
  background: #2d9cdb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  border-radius: 50px;
}

.tech-main .tech-btn:hover {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

/* IMAGE */
.tech-main .tech-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

section.tech-unique {
  background-image: url(./img/wmremove-transformed\ \(2\).jpeg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

section.tech-unique::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tech-main .tech-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tech-main .tech-subtitle::after {
    display: none;
  }
}



.tech-unique {
  background: rgba(0, 0, 0, 0.2);
  padding: 100px 0;
  color: #fff;
}

.tech-unique-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* LEFT NAV */
.tech-unique-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-nav-item {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);

}

.tech-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  opacity: 0;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
}

.tech-nav-item.active,
.tech-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
}

.tech-nav-item.active::before {
  opacity: 1;
}

/* 🔥 KEY PART — AUTO GRID (5,4,3 ALL OK) */
.tech-unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

/* CARD */
.tech-unique-card {
  background: transparent;
  border: 1px solid #000;
  padding: 38px 28px;
  border-radius: 14px;
  text-align: center;
  transition: 0.35s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.tech-unique-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255);
  background: rgba(255, 255, 255, 0.05);

}

/* ICON */
.tech-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

/* TEXT */
.tech-unique-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #000;
}

.tech-unique-card span {
  font-size: 13px;
  color: #000;
}

.tech-unique-grid {
  display: none;
}

.tech-unique-grid.active {
  display: grid;
}

.tech-unique-card:hover h4 {
  color: #ffffff;
}

.tech-card-icon img {
  width: 100%;
  border-radius: 15px;
  height: 100%;
  padding: 10px;
  background: #fff;
}

.tech-card-icon {
  border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tech-unique-container {
    grid-template-columns: 1fr;
  }
}



















@media (max-width: 992px) {
  .about-team-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-team-section__title {
    font-size: 32px;
  }

  .about-team-section__description {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-team-section {
    padding: 60px 0;
  }

  .about-team-section__title {
    font-size: 28px;
  }

  .about-team-section__description {
    font-size: 15px;
  }
}







@media (max-width: 1199px) {
  .nav-links a {
    margin: 0 7px;
  }

  .top-bar {
    padding: 8px 25px;
    font-size: 12px;
  }

  .left-section span {
    margin-right: 10px;
    gap: 0;
  }
}

@media (min-width: 991px) {
  .mobile-menu.active {
    display: none;
  }

  .section.breadcrumb-box {
    display: none;
  }

  div#mobile-menu {
    display: none;
  }

}


/* Responsive */
@media (max-width: 991.98px) {
  .contact-section .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links .logo a {
    display: block;
  }

  .contact-section .contact-image img {
    width: 90%;
  }

  .contact-section .contact-form {
    width: 90%;
  }

  .nav-links a {
    display: none;
  }

  .menu-toggle {
    display: block;
    background-color: transparent;
  }

  .hero-content p {
    font-size: 28px;
    padding: 0 15px;
  }

  #navbar.scrolled .menu-toggle {
    color: #000;
  }

  #navbar.scrolled {
    padding-left: 50px;
    padding-right: 50px;
  }

  .mobile-menu {
    width: 100%;
    z-index: 9999 !important;

  }

  .mobile-menu a {
    margin: 0;
    font-weight: 300;
    padding: 35px 0;
    border-radius: 10px;
  }

  .mobile-logo {
    font-size: 35px;
  }

  .top-bar {
    display: none;
  }

  #navbar {
    top: 0px;
  }

  nav .logo {
    font-size: 35px;
  }

  .full-name div:nth-of-type(2) {
    font-size: 15px !important;
  }

  #navbar {
    padding-left: 70px;
    padding-right: 67px;
    display: flex;
    align-items: center;

  }

  .Manifesto {
    margin: 10px;
  }


}

@media (max-width: 768px) {
  .innovation-section h1 {
    font-size: 32px;
  }

  .sf-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .innovation-section p {
    font-size: 16px;
  }

  .our-formula .formula-content h1 {
    font-size: 28px;
  }

  .our-formula .formula-content h3 {
    font-size: 18px;
  }

  .what-we-do .services {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .what-we-do .service {
    text-align: center;
  }

  .what-we-do .service .icon {
    text-align: center;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .left-section span {
    display: block;
    margin: 5px 0;
  }

  .right-section {
    margin-top: 8px;
  }



  .footer-top h2 {
    font-size: 22px;
  }

  .stats-section {
    flex-direction: column;
    gap: 30px;
  }

  .stat-box {
    width: 100%;
  }

  .stats-section {
    padding: 60px 30px;
  }

  .about-values__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .mobile-menu {
    width: 100%;
  }

  .see-more {
    margin-top: 50%;
  }

  .contact-form-section .contact-form-container {
    padding: 30px 20px;
  }

  .bigsmalltxt .big-text {
    font-size: 70px;
  }

  .sf-blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .projects .projects-title {
    font-size: 30px;
  }

  .sf-blog__image img {
    height: 250px;
  }

  .sf-blog__image {
    height: 250px;
  }

  .projects .project-card h3 {
    font-size: 16px;
  }

  .projects .project-card p {
    font-size: 13px;
  }

  #navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .Manifesto {
    padding: 80px 10px;
  }

  .Manifesto .acc-btn {
    font-size: 16px;
  }

  .case-container {
    grid-template-columns: unset;
  }
}

@media (max-width: 400px) {
  .book-slider .custom-arrows button {
    padding: 10px;
  }

  .book-slider {
    padding: 60px 20px
  }

  .book-slider .slider-heading {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .hero-text .title {
    font-size: 32px;
  }
}



/* nav */


/* ===============================
   NAV MAIN (BASE)
================================ */

.nav-main {
  position: sticky;
  top: 0;
  z-index: 50;

  width: 100%;
  padding: 14px 0;

  background: transparent;
  backdrop-filter: none;
  box-shadow: none;

  transition: all 0.4s ease;
}

/* ===============================
   NAV INNER WRAPPER
================================ */

.nav-main .nav-inner {
  width: 92%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LEFT / RIGHT MENU
================================ */

.nav-main .nav-left,
.nav-main .nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ===============================
   LOGO
================================ */

.nav-main .nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* ===============================
   LINKS
================================ */

.nav-main a {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

/* ===============================
   SERVICES DROPDOWN (DESKTOP)
================================ */

.nav-main .has-dropdown {
  position: relative;
}

.nav-main .dropdown-menu {
  position: absolute;
  top: 220%;
  left: -180px;

  min-width: 240px;
  padding: 12px 0;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.9);
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-main .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #111;
}

.nav-main .dropdown-menu a:hover {
  background: #e7e7e7;
}

/* hover open */
.nav-main .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   SCROLLED STATE (GLASS PILL)
================================ */

.nav-main.is-scrolled {
  padding: 20px 0;
}

nav.nav-main.is-scrolled {
  top: 0px;
}

.nav-main.is-scrolled .nav-inner {
  border-radius: 50px;
  padding: 14px 34px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* ===============================
   RESPONSIVE (TABLET & BELOW)
================================ */

@media (max-width: 991.98px) {

  .nav-main {
    padding: 12px 0;
  }

  .nav-main .nav-left,
  .nav-main .nav-right {
    display: none;
    /* mobile menu baad me */
  }

  .nav-main .nav-logo {
    margin: 0 auto;
  }

  .nav-main {
    top: 0;
  }
}



/* ===============================
   MOBILE HAMBURGER (NAV BAR)
================================ */

.nav-wrapper .nav-main .mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===============================
   MOBILE NAV OVERLAY
================================ */

.nav-wrapper .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);

  transform: translateY(-100%);
  transition: transform 0.45s ease;
}

.nav-wrapper .mobile-nav.active {
  transform: translateY(0);
}

/* ===============================
   MOBILE HEADER
================================ */

.nav-wrapper .mobile-nav-header {
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.nav-wrapper .mobile-logo {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ===============================
   CLOSE BUTTON (ROTATE CROSS)
================================ */

.nav-wrapper .mobile-close-btn {
  position: absolute;
  left: 20px;
  width: 32px;
  height: 32px;

  background: none;
  border: none;
  cursor: pointer;
}

.nav-wrapper .mobile-close-btn span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;

  height: 2px;
  background: #fff;

  transition: transform 0.4s ease;
}

.nav-wrapper .mobile-close-btn span:first-child {
  transform: rotate(45deg);
}

.nav-wrapper .mobile-close-btn span:last-child {
  transform: rotate(-45deg);
}

/* ===============================
   MOBILE LINKS
================================ */

.nav-wrapper .mobile-nav-links {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.nav-wrapper .mobile-nav-links a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

/* ===============================
   RESPONSIVE TRIGGER
================================ */

@media (max-width: 991px) {

  .nav-wrapper .nav-main .nav-left,
  .nav-wrapper .nav-main .nav-right {
    display: none;
  }

  .nav-wrapper .nav-main .mobile-toggle {
    display: block;
    color: #000;
  }
}


/* =========================
   BASE NAV
========================= */

.nav-main {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 99;
}

.nav-main .nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1300px;
}

/* =========================
   MOBILE TOGGLE
========================= */

.nav-main .mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   MOBILE NAV PANEL
========================= */

.nav-main .mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  transform: translateY(-100%);
  transition: transform 0.45s ease;
}

.nav-main .mobile-nav.active {
  transform: translateY(0);
}

.nav-main .mobile-nav a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  margin: 0;
}

/* =========================
   CLOSE BUTTON (ROTATE)
========================= */

.nav-main .mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-main .mobile-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
}

.nav-main .mobile-close span:first-child {
  transform: rotate(45deg);
}

.nav-main .mobile-close span:last-child {
  transform: rotate(-45deg);
}

.nav-main .nav-logo a {
  font-size: 25px;
  font-weight: bolder;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .nav-main .nav-left,
  .nav-main .nav-right {
    display: none;
  }

  .nav-main .mobile-toggle {
    display: block;
  }
}


/* =========================
   MOBILE NAV
========================= */

.nav-main .mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;

  transform: translateY(-100%);
  transition: transform 0.45s ease;
}

.nav-main .mobile-nav.active {
  transform: translateY(0);
}

.nav-main .mobile-nav a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* =========================
   CLOSE BUTTON
========================= */

.nav-main .mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-main .mobile-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
}

.nav-main .mobile-close span:first-child {
  transform: rotate(45deg);
}

.nav-main .mobile-close span:last-child {
  transform: rotate(-45deg);
}

/* =========================
   SERVICES ACCORDION
========================= */

.nav-main .mobile-services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-main .mobile-services-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;
}

/* chevron */
.nav-main .mobile-services-btn .chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* rotate when open */
.nav-main .mobile-services.active .chevron {
  transform: rotate(-135deg);
}

/* links */
.nav-main .mobile-services-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.nav-main .mobile-services-links a {
  font-size: 16px;
  color: #ddd;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

  .nav-main .nav-left,
  .nav-main .nav-right {
    display: none;
  }

  .nav-main .mobile-toggle {
    display: block;
    font-size: 35px;
    cursor: pointer;
    color: #fff;
  }

  .nav-main {
    top: 0;
  }

  nav.nav-main.is-scrolled div#openMenu {
    color: #000;
  }

  nav.nav-main.is-scrolled .nav-logo a {
    color: #000;
  }
}

/* =========================
   MOBILE SERVICES
========================= */

.nav-main .mobile-services {
  width: 100%;
  text-align: center;
}

/* head row */
.nav-main .mobile-services-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* services link */
.nav-main .services-link {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

/* toggle btn */
.nav-main .mobile-services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* chevron */
.nav-main .mobile-services-toggle .chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* rotate when open */
.nav-main .mobile-services.active .chevron {
  transform: rotate(-135deg);
}

/* dropdown links */
.nav-main .mobile-services-links {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;

  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-main .mobile-services-links a {
  color: #cfcfcf;
  font-size: 15px;
  text-decoration: none;
}

/* active */
.nav-main .mobile-services.active .mobile-services-links {
  opacity: 1;
}

/* =================================================
   MOBILE NAV OVERLAY
================================================= */

.nav-main .mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
  z-index: 999;

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(-100%);
  transition: transform 0.45s ease;
}

.nav-main .mobile-nav.active {
  transform: translateY(0);
}

/* =================================================
   CLOSE BUTTON (X)
================================================= */

.nav-main .mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-main .mobile-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
}

.nav-main .mobile-close span:first-child {
  transform: rotate(45deg);
}

.nav-main .mobile-close span:last-child {
  transform: rotate(-45deg);
}

/* =================================================
   MENU WRAP
================================================= */

.nav-main .mobile-menu-card {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MAIN LINKS */
.nav-main .mobile-menu-card>a {
  width: 100%;
  text-align: center;
  padding: 14px 0;

  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =================================================
   SERVICES BLOCK
================================================= */

.nav-main .mobile-services {
  width: 100%;
  margin-top: 6px;
}

/* SERVICES HEADER */
.nav-main .mobile-services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* SERVICES TEXT LINK */
.nav-main .services-link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* =================================================
   REAL CHEVRON (NO LINE ❌)
================================================= */

.nav-main .mobile-services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* arrow */
.nav-main .mobile-services-toggle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* rotate on open */
.nav-main .mobile-services.active .mobile-services-toggle::before {
  transform: rotate(-135deg);
}

/* =================================================
   SERVICES DROPDOWN LINKS
================================================= */

.nav-main .mobile-services-links {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  margin-top: 10px;
  padding-left: 18px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.nav-main .mobile-services-links a {
  color: #cfcfcf;
  font-size: 16px;
  text-decoration: none;
}

.nav-main .mobile-services.active .mobile-services-links {
  opacity: 1;
}

/* =========================================
   RAIN EFFECT LAYER
========================================= */

.nav-main .nav-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* single rain drop */
.nav-main .rain-drop {
  position: absolute;
  top: -40px;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0));

  opacity: 0.8;
  animation: rainFall linear forwards;
}

@keyframes rainFall {
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}

/* ===============================
   OPEN WOW EFFECTS (ADD-ON)
================================ */

/* glow pulse */
.nav-main .mobile-nav.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(77, 163, 255, 0.15),
      transparent 60%);
  animation: glowPulse 1.2s ease-out forwards;
  pointer-events: none;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* blur wave sweep */
.nav-main .mobile-nav::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.08),
      transparent 60%);
  transform: translateY(0);
  pointer-events: none;
}

.nav-main .mobile-nav.active::before {
  animation: waveSweep 0.9s ease-out;
}

@keyframes waveSweep {
  from {
    transform: translateY(-30%);
  }

  to {
    transform: translateY(30%);
  }
}

/* bounce reveal on links */
.nav-main .mobile-nav.active .mobile-menu-card>a,
.nav-main .mobile-nav.active .mobile-services {
  animation: bounceIn 0.5s cubic-bezier(.17, .67, .3, 1.4) forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  60% {
    opacity: 1;
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE NAV OVERLAY (PREMIUM)
================================ */

.nav-main .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  /* background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%), rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); */
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(.16, .84, .44, 1);
  padding-top: 15%;
  padding-left: 5%;
  overflow: scroll;
  padding-bottom: 15%;
  padding-right: 5%;
  background: rgb(119 119 119 / 50%);
  backdrop-filter: blur(25px);
}

.nav-main .mobile-nav.active {
  transform: translateY(0);
}

/* ===============================
   MENU CONTENT CARD
================================ */

.nav-main .mobile-menu-card {
  width: 100%;
  max-width: 420px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 22px;
  text-align: center;
}

/* ===============================
   CLOSE BUTTON
================================ */

.nav-main .mobile-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-main .mobile-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 0;
}

.nav-main .mobile-close span:first-child {
  transform: rotate(45deg);
}

.nav-main .mobile-close span:last-child {
  transform: rotate(-45deg);
}

/* ===============================
   NAV LINKS
================================ */

.nav-main .mobile-menu-card>a {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.4px;

  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-main .mobile-menu-card>a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===============================
   SERVICES BUTTON (HIGHLIGHT)
================================ */

.nav-main .mobile-services-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;

  padding: 12px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-main .mobile-services-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* chevron */
.nav-main .mobile-services-btn .chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* active chevron */
.nav-main .mobile-services.active .chevron {
  transform: rotate(-135deg);
}

/* ===============================
   SERVICES LINKS
================================ */

.nav-main .mobile-services-links {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.nav-main .mobile-services-links a {
  display: block;
  padding: 8px 0;

  font-size: 14px;
  color: #dcdcdc;
  text-decoration: none;

  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-main .mobile-services-links a:hover {
  opacity: 1;
}

/* ===============================
   RAIN LAYER
================================ */

.nav-main .nav-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nav-main .rain-drop {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 22px;
  background: rgba(255, 255, 255, 0.35);
  animation: rainFall linear forwards;
}

@keyframes rainFall {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}

/* ===============================
   MOBILE MENU LAYOUT FIX
================================ */

.nav-main .mobile-menu-card {
  gap: 26px;
  /* overall breathing space */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ===============================
   MAIN NAV LINKS (HOME, ABOUT…)
================================ */

.nav-main .mobile-menu-card>a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;

  padding: 10px 0;
  opacity: 0.9;
}

/* last links thoda space me ho */
.nav-main .mobile-menu-card>a:last-child {
  margin-bottom: 10px;
}

/* ===============================
   SERVICES BLOCK (FLOW FIX)
================================ */

.nav-main .mobile-services {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;

}

/* services button */
.nav-main .mobile-services-btn {
  margin: 6px 0;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 16px;
}

/* ===============================
   SERVICES DROPDOWN (IMPORTANT)
   👉 sirf neeche open hoga
================================ */

.nav-main .mobile-services-links {
  margin-top: 14px;
  /* button ke neeche gap */
  padding-left: 0;
  /* clean center look */

  display: flex;
  flex-direction: column;
  gap: 12px;

  max-height: 0;
  overflow: hidden;

  transition: max-height 0.45s ease;
  align-items: baseline;
  padding-left: 5%;
}

/* child links */
.nav-main .mobile-services-links a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.2px;
  padding: 8px 0;
}

/* ===============================
   ACTIVE STATE (PUSH DOWN)
================================ */

.nav-main .mobile-services.active {
  margin: 0px;
  /* dropdown ke baad spacing */

}

/* ===============================
   VISUAL SEPARATION (SUBTLE)
================================ */

.nav-main .mobile-menu-card>a:not(:last-child) {
  position: relative;
}

.nav-main .mobile-menu-card>a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.has-dropdown .dropdown-menu a {
  margin: 0;
  padding: 5px;
  transition: .4s ease;
}

.has-dropdown .dropdown-menu a:hover {
  padding-left: 20px;
}

.has-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown span.service-chevren {
  transition: transform 0.4s ease;
}

.has-dropdown:hover span.service-chevren,
.has-dropdown:focus-within span.service-chevren {
  transform: rotate(180deg) translateY(1px);
}

.wrapper-slider {
  position: relative;
  width: 100%;
  margin: auto;
  color: #262626;
  background: black;
  margin-bottom: 80px;

  .item {
    position: relative;
    width: 100vw;
    height: 100vh;
    padding-inline: 2rem;

    picture {
      display: block;

      &:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        inset: 0;
        z-index: 1;
      }

      img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .video {
      &:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        inset: 0;
        z-index: 1;
      }
    }

    video {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      inset: 0;
    }
  }

  .parent-text {
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    color: white;

    .info-text {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    h2 {
      text-transform: uppercase;
      font-size: 3.9rem;
      font-weight: 300;
    }

    p {
      font-size: 2.1rem;
      font-weight: 300;
    }

    a {
      width: 100%;
      max-width: 17.2rem;
      height: 5.5rem;
      font-size: 1.4rem;
      margin-top: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      text-decoration: none;
      duration: .3s ease;

      &:hover {
        background: #ebebeb;
        color: #4c4c4c;
      }
    }
  }

  .swiper-pagination {
    width: 100%;
    bottom: 5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.4rem;
    font-weight: 500;
    padding-inline: 4rem;

    .svg-icon {
      width: 1.5rem;
      height: 1.5rem;

      path {
        fill: white;
      }
    }

    .swiper-pagination-bullet {
      color: white;
      opacity: 1;
      width: initial;
      height: initial;
      background: transparent;

      button {
        background: transparent;
        border: 0;
        display: flex;
        cursor: pointer;
      }
    }

    .bullet-content {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon {
      position: absolute;
      z-index: 1;
    }
  }
}

.percentage {
  --colorf3: #1C69D4;
  --color13: #1C69D4;
  width: 3.4rem;
  aspect-ratio: 1;
  mask: radial-gradient(transparent 55%, black 60% 100%);
  -webkit-mask: radial-gradient(transparent 55%, black 60% 100%);
  transition: opacity 0.6s ease;
  opacity: 0;
  background: conic-gradient(transparent 0,
      transparent var(--p),
      #c9d6d7 0),
    conic-gradient(var(--colorf3),
      #1C69D4,
      #1C69D4,
      #1C69D4,
      var(--colorf3)),
    conic-gradient(transparent, transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  &.show {
    opacity: 1;
  }

  .number {
    width: 80%;
    aspect-ratio: 1;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    background: white;
    border-radius: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    color: var(--color13);
  }
}

.wwd-section {
  padding: 90px 0;
  background: #ffffff;
  padding-top: 0;
}

.wwd-section .wwd-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.wwd-section .wwd-heading {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-section .wwd-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
}

.wwd-section .wwd-heading p {
  margin-top: 10px;
  color: #666;
  font-size: 15px;
}

/* GRID */
.wwd-section .wwd-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

/* CARD */
.wwd-section .wwd-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.wwd-section .wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ICON */
.wwd-section .wwd-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}

/* TITLE */
.wwd-section .wwd-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
}

/* LIST */
.wwd-section .wwd-card ul {
  padding-left: 18px;
}

.wwd-section .wwd-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  list-style: disc;
}


h2.projects-title {
  text-align: center;
  margin: 100px 0 20px 0;
  font-size: 48px;
  font-weight: 800;
  /* margin-bottom: 24px; */
  line-height: 1.2;
}

/* CARD UPGRADE */
.wwd-section .wwd-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* LEFT ACCENT LINE */
.wwd-section .wwd-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  opacity: 0;
  transition: 0.4s;
}

.wwd-section .wwd-card:hover::before {
  opacity: 1;
}

/* BADGE */
.wwd-section .wwd-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  padding: 5px 10px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 20px;
  font-weight: 500;
}

/* ICON ANIMATION */
.wwd-section .wwd-icon {
  transition: transform 0.4s ease;
}

.wwd-section .wwd-card:hover .wwd-icon {
  transform: rotate(-6deg) scale(1.1);
}

/* TEXT REVEAL */
.wwd-section .wwd-card ul {
  margin-top: 10px;
  transition: transform 0.4s ease;
}

.wwd-section .wwd-card:hover ul {
  transform: translateY(-4px);
}

/* OVERALL HOVER */
.wwd-section .wwd-card:hover {
  transform: translateY(-10px);
}

.innovation-section {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}

/* soft background glow */
.innovation-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.innovation-section .innovation-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

/* small tag */
.innovation-section .innovation-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  background: #eff6ff;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
  color: #2563eb;
}

/* heading */
.innovation-section h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.innovation-section h2 span {
  color: #2563eb;
}

/* lead line */
.innovation-section .innovation-lead {
  margin-top: 18px;
  font-size: 17px;
  color: #555;
}

/* text block */
.innovation-section .innovation-text {
  margin-top: 35px;
}

.innovation-section .innovation-text p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}

.innovation-section {
  padding: 120px 0;
  background: #ffffff;
}

.innovation-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.innovation-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.innovation-content h2 span {
  color: #2563eb;
}

.innovation-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 500;
}

.innovation-lead {
  margin: 18px 0;
  font-size: 17px;
  color: #555;
}

.innovation-content p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* RIGHT IMAGE */
.innovation-visual {
  position: relative;
}

.innovation-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* FLOATING TAGS */
.floating-tag {
  position: absolute;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  font-weight: 500;
}

.tag-one {
  top: 15%;
  left: -20px;
}

.tag-two {
  bottom: 20%;
  right: -25px;
}

.tag-three {
  top: 50%;
  right: 10%;
}

/* ================= SECTION ================= */
.web-d-section {
  position: relative;
  padding: 120px 20px;
  background: #000;
  color: #fff;
  overflow: visible;
  /* sticky ke liye MUST */
  margin: 80px 0;
}

/* BACKGROUND IMAGE */
.web-d-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/top-view-unrecognizable-hacker-performing-cyberattack-night.jpg") center top / cover no-repeat;
  z-index: 0;
}

/* DARK OVERLAY */
.web-d-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.95) 10%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.95) 90%);
  backdrop-filter: blur(2px);
  opacity: .9;
  z-index: 0;
}

/* ================= CONTAINER ================= */
.web-d-section .web-d-container {
  position: relative;
  z-index: 2;
  /* width: 90%; */
  max-width: 1100px;
  /* width: 100%; */
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

/* ================= LEFT STICKY ================= */
.web-d-section .web-d-left {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.web-d-section .web-d-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #006aca;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
}

.web-d-section .web-d-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.web-d-section .web-d-left p {
  font-size: 16px;
  /* opacity: 0.85; */
}

/* ================= RIGHT ================= */
.web-d-section .web-d-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.web-d-section .web-d-card {
  position: relative;
  padding: 25px 20px;
  border-radius: 22px;
  background: #525151;

  overflow: hidden;
  z-index: 1;

}

/* ROTATING BORDER (CENTERED & SMOOTH) */
.web-d-section .web-d-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  width: 220%;
  top: 43%;
  left: -57%;
  height: 50px;
  border-radius: 24px;
  /* background: conic-gradient(
    from 0deg,
    #d2ff6d,
    #00ffdc,
    #b6b915,
    #d2ff6d
  ); */
  /* background-image: linear-gradient(339deg, #595959 0%, #006aca 100%); */
  background-color: #fff;
  animation: webdRotate 5s linear infinite;
  opacity: 0;
  z-index: -1;

}

.web-d-section .web-d-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #1f252b;
  border-radius: 20px;
  z-index: -1;
}

.web-d-section .web-d-card:hover::before {
  opacity: 1;
}

/* TEXT */
.web-d-section .web-d-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.web-d-section .web-d-card p {
  font-size: 15px;
  /* opacity: 0.85; */
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev .about-hero {
  /* background-image: url(./img/programmer-night.jpg) !important; */
  /* background-image: url(./img/programming-background-with-person-working-with-codes-computer.jpg) !important; */
  background-image: url(./img/web-dev.jpeg) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev::before {
  backdrop-filter: blur(1px);
}


.seamless- {
  position: relative;
  padding: 120px 0;
  background-color: #020202;
  background-image: url(./img/dots-bg-img-softflix.png);
  color: #fff;
  overflow: hidden;
  /* box-shadow: 0px 60px 70px #020202; */
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.seamless-::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .85)),
    radial-gradient(circle at 15% 20%, rgba(0, 255, 220, .18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(182, 185, 21, .15), transparent 45%);
  z-index: 0;
}

.seamless- .container {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.seamless- h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 14px;
}

.seamless- .subtitle {
  margin: 0 auto 75px;
  font-size: 16px;
  color: #cfcfcf;
}


/* GRID */
.seamless- .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.seamless- .process-card {
  position: relative;
  padding: 46px 26px 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  overflow: hidden;
  text-align: left;

  /* reference-style depth */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.45);

  transition: transform .35s ease;
}

.seamless- .process-card:hover {
  transform: translateY(-6px);
}

/* 🔥 NUMBER — EXACT WATERMARK STYLE */
.seamless- .process-card::before {
  content: attr(data-step);
  position: absolute;
  top: -22px;
  right: 16px;
  font-size: 104px;
  font-weight: 800;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, 0.045);
  z-index: 0;
  pointer-events: none;
}

/* CONTENT ABOVE NUMBER */
.seamless- .process-card>* {
  position: relative;
  z-index: 1;
}

/* ICON */
.seamless- .icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: #00ffdc;
}

.seamless- h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.seamless- p {
  font-size: 14px;
  line-height: 1.65;
  color: #d6d6d6;
}

.seamless- .bottom-note {
  margin-top: 60px;
  font-size: 14px;
  color: #cfcfcf;
}

.seamless- .process-card:hover::before {
  /* color: rgba(255,255,255,0.12); */
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* ==============================
   TRANSFORMATIVE SERVICES – PREMIUM
================================ */

.Transformative-services {
  padding: 90px 0;
  /* background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%); */
  text-align: center;
  padding-top: 0;
}

.Transformative-services .container {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

/* SECTION TAG */
.Transformative-services .section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #006aca;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
}

/* HEADING */
.Transformative-services h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 18px;
}

/* SUBTITLE */
.Transformative-services .section-subtitle {
  max-width: 780px;
  margin: auto;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 70px;
}

/* GRID */
.Transformative-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ==============================
   CARD DESIGN
================================ */

.Transformative-services .service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(255, 255, 255, 0);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* GLOW BORDER */
.Transformative-services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(140deg,
      rgba(0, 106, 202, 0.6),
      rgba(89, 89, 89, 0.3),
      rgba(0, 106, 202, 0.6));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* SWEEP LIGHT */
.Transformative-services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 20%,
      rgba(0, 106, 202, 0.45),
      rgba(89, 89, 89, 0.35),
      transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

/* HOVER EFFECT */
.Transformative-services .service-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18);
}

.Transformative-services .service-card:hover::before {
  transform: translateX(120%);
}

.Transformative-services .service-card:hover::after {
  opacity: 1;
}

/* ==============================
   CONTENT
================================ */

.Transformative-services .service-card i {
  position: relative;
  z-index: 1;
  font-size: 42px;
  color: #006aca;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.Transformative-services .service-card:hover i {
  transform: translateY(-4px) scale(1.08);
}

.Transformative-services .service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 14px;
}

.Transformative-services .service-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.Modern-Technologies {
  padding: 90px 0;
  /* background: #f9fbff; */
  text-align: center;
}

.Modern-Technologies .container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
}

.Modern-Technologies .tech-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
}

.Modern-Technologies h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
}

/* TABS */
.Modern-Technologies .tech-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.Modern-Technologies .tech-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #dbeafe;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.Modern-Technologies .tech-tab.active,
.Modern-Technologies .tech-tab:hover {
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  border-color: #006aca;
}

/* CONTENT */
.Modern-Technologies .tech-content {
  display: none;
}

.Modern-Technologies .tech-content.active {
  display: block;
}

/* GRID */
.Modern-Technologies .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

/* CARD */
.Modern-Technologies .tech-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  text-align: left;
  border: 1px solid #e5e7eb;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.Modern-Technologies .tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.Modern-Technologies .tech-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.Modern-Technologies .tech-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #020617;
}

.Modern-Technologies .tech-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.dev-sec-one {
  padding: 110px 0;
  background: #ffffff;
}

.dev-sec-one .container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
}

.dev-sec-one__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* VISUAL */
.dev-sec-one__visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* CONTENT */
.dev-sec-one__content .section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 18px;
  background: rgba(0, 106, 202, 0.1);
}

.dev-sec-one__content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0f172a;
}

.dev-sec-one__content .intro {
  color: #64748b;
  margin-bottom: 32px;
  max-width: 480px;
}

/* AUDIENCE LIST */
.dev-sec-one .audience-list {
  list-style: none;
  padding: 0;
}

.dev-sec-one .audience-list li {
  margin-bottom: 22px;
}

.dev-sec-one .audience-list strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #020617;
}

.dev-sec-one .audience-list span {
  font-size: 15px;
  color: #475569;
}

/* ===============================
   DEV SEC TWO – PILLAR TIMELINE
================================ */

.dev-sec-two {
  padding: 120px 0;
  background: #f8f9fc;
}

.dev-sec-two .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.dev-sec-two .section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
}

.dev-sec-two h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 90px;
  color: #0f172a;
}

/* TIMELINE */
.dev-sec-two .pillar-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CENTER LINE */
.dev-sec-two .pillar-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 106, 202, 0),
      rgba(0, 106, 202, 0.35),
      rgba(0, 106, 202, 0));
  transform: translateX(-50%);
}

/* ITEM */
.dev-sec-two .pillar-item {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.dev-sec-two .pillar-item.left {
  justify-content: flex-start;
}

.dev-sec-two .pillar-item.right {
  justify-content: flex-end;
}

/* ICON */
.dev-sec-two .pillar-icon {
  width: 56px;
  height: 56px;
  background: #006aca;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0, 106, 202, 0.35);
  transition: transform 0.4s ease;
}

/* CONTENT BOX */
.dev-sec-two .pillar-content {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 16px;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER */
.dev-sec-two .pillar-item:hover .pillar-content {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.dev-sec-two .pillar-item:hover .pillar-icon {
  transform: scale(1.12) rotate(6deg);
}

/* ACTIVE (JS ADDS THIS) */
.dev-sec-two .pillar-item.active {
  opacity: 1;
  transform: translateY(0);
}

.blogs-container {
  padding: 100px 0;
  background: #f8fafd;
}

.blogs-container .blogs-inner {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
}

.blogs-container .blogs-header {
  text-align: center;
  margin-bottom: 70px;
}

.blogs-container .blogs-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #006aca;
  background: rgba(0, 106, 202, 0.1);
  margin-bottom: 16px;
  border: 1px solid #006aca;
}

.blogs-container .blogs-header h2 {
  font-size: 48px;
  color: #0f172a;
  margin: 12px 0 8px;
}

.blogs-container .blogs-header p {
  color: #64748b;
  max-width: 620px;
  margin: auto;
}

.blogs-container .blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blogs-container .blog-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.4s ease;
}

.blogs-container .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
}

.blogs-container .blog-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.blogs-container .blog-featured:hover::after {
  opacity: 1;
}

.blogs-container .blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

.blogs-container .blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s ease;
}

.blogs-container .blog-card:hover img {
  transform: scale(1.08);
}

.blogs-container .blog-content {
  padding: 20px 20px 0px 20px;
  position: relative;
  z-index: 1;
}

.blogs-container .blog-date {
  font-size: 13px;
  color: #2563eb;
}

.blogs-container .blog-content h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
}

.blogs-container .blog-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  min-height: 80px;

}

.blogs-container .blog-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.blogs-container .blog-link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: .4s ease;
}

.blogs-container .blog-link:hover {
  color: #939393;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}



.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1 .about-hero {
  background-image: url(./img/blog-img-1-sf.png) !important;
}

/* ================= COMMON ================= */
.blogs-subpage-one .subpage-inner,
.blogs-subpage-two .subpage-inner,
.blogs-subpage-three .subpage-inner,
.blogs-subpage-for .subpage-inner,
.blogs-subpage-five .subpage-inner {
  max-width: 1150px;
  margin: auto;
  padding: 0 22px;
}

/* ================= IMAGE FRAME ================= */
.blogs-subpage-one .blog-image-frame,
.blogs-subpage-two .blog-image-frame,
.blogs-subpage-three .blog-image-frame,
.blogs-subpage-for .blog-image-frame,
.blogs-subpage-five .blog-image-frame {
  margin-top: 36px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
}

.blogs-subpage-one img,
.blogs-subpage-two img,
.blogs-subpage-three img,
.blogs-subpage-for img,
.blogs-subpage-five img {
  width: 100%;
  display: block;
  transition: transform .9s ease;
}

.blogs-subpage-one .blog-image-frame:hover img,
.blogs-subpage-two .blog-image-frame:hover img,
.blogs-subpage-three .blog-image-frame:hover img,
.blogs-subpage-for .blog-image-frame:hover img,
.blogs-subpage-five .blog-image-frame:hover img {
  transform: scale(1.06);
}

/* ================= TOC ================= */
.blogs-subpage-one .blog-toc-box {
  margin: 30px 0;
  padding: 22px;
  background: #f8fafd;
  border-left: 4px solid #2563eb;
  border-radius: 14px;
}

.blogs-subpage-one .blog-toc-box ul {
  margin-top: 12px;
  padding-left: 18px;
}

.blogs-subpage-one .blog-toc-box a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* ================= HIGHLIGHT ================= */
.blogs-subpage-two .blog-highlight,
.blogs-subpage-three .blog-highlight,
.blogs-subpage-for .blog-highlight {
  margin: 30px 0;
  padding: 20px 24px;
  background: linear-gradient(90deg, #eef5ff, #ffffff);
  border-radius: 16px;
  font-size: 15px;
}

/* ================= SECTIONS ================= */
.blogs-subpage-two,
.blogs-subpage-for {
  padding: 90px 0;
}

.blogs-subpage-three {
  padding: 90px 0;
  background: #f1f5f9;
}

.blogs-subpage-five {
  padding: 110px 0;
  background: #020617;
  color: #ffffff;
}

.blogs-subpage-five p {
  color: #cbd5f5;
}

/* ================= BUTTON ================= */
.blogs-subpage-five .back-btn {
  display: inline-block;
  margin-top: 44px;
  color: #38bdf8;
  font-weight: bold;
  text-decoration: none;
  font-size: 22px;
  transition: .4s ease;
}

.blogs-subpage-five .back-btn:hover {
  color: #fff;
}

.subpage-inner ul {
  padding: 10px 0 0px 20px;
}

section#section-one {
  padding-top: 8%;
}

.subpage-inner h1,
.subpage-inner h2 {
  font-size: 40px;
}

.blogs-subpage-one .blog-toc-box li {
  margin-bottom: 8px;
}

.blogs-subpage-one .blog-toc-box strong {
  font-size: 20px;
}

.blogs-subpage-one .blog-toc-box li a {

  transition: .4s ease;
}

.blogs-subpage-one .blog-toc-box li a:hover {

  color: #999;
  padding-left: 10px;
}

.blog-footer.blog-footer-outer {
  margin-top: 50px;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-2 .about-hero {
  background-image: url(./img/dsgsdfg.jpg) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-3 #hero-bg {
  background-image: url(./img/bg-blog-sf-3.png) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1::before {
  backdrop-filter: blur(2px);
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-4 #hero-bg {
  background-image: url(./img/bg-blog-sf-4.avif) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-5 #hero-bg {
  background-image: url(./img/bg-blog-sf-5.png) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-6 #hero-bg {
  background-image: url(./img/bg-blog-sf-6.jpg) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-7 #hero-bg {
  background-image: url(https://img.freepik.com/free-photo/programming-background-collage_23-2149901770.jpg?t=st=1770031235~exp=1770034835~hmac=1e1d3aa39bf21638ad7926e46b4c0941ca6a6c1c09bbee67a66b27990199a506&w=1480) !important;
}



.case-study-experience {
  width: 100%;
  overflow-x: hidden;
}

.case-study-experience img {
  max-width: 100%;
  height: auto;
  display: block;

}

section.cs-challenges.cs-animate .cs-card-grid img,
section.cs-process.cs-animate .cs-process-grid img {
  border-radius: 20px 20px 0 0;
  height: 160px;
  width: 100%;

}

section.cs-process.cs-animate .cs-process-grid h4 {
  margin-top: 25px;
}

/* ===============================
   CONTAINER
=================================*/
.case-study-experience .cs-container {
  width: 100%;
  max-width: 1150px;
  margin: auto;
  padding: 110px 20px;
  position: relative;
  z-index: 3;
}

/* ===============================
   ANIMATION
=================================*/
.case-study-experience .cs-animate {
  opacity: 0;
  transform: translateY(50px);
  animation: csFadeUp 1s ease forwards;
}

@keyframes csFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   HERO
=================================*/
.case-study-experience .cs-hero {
  position: relative;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* HERO BG IMAGE (ADDED) */
.case-study-experience .cs-hero .cs-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  filter: blur(6px) scale(1.1);
  z-index: 1;
}

.case-study-experience .cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.case-study-experience .cs-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.case-study-experience .cs-hero h1 span {
  color: #cfe9ff;
}

.case-study-experience .cs-card-grid h4 {
  margin-top: 25px;
}

.case-study-experience .cs-hero p {
  max-width: 760px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

.case-study-experience .cs-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.case-study-experience .cs-stats div {
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 26px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.case-study-experience .cs-hero-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #fff;
  color: #006aca;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
  text-decoration: unset;

}

.case-study-experience .cs-hero-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-underline-offset: 5px;
  text-decoration: underline;
}

/* ===============================
   GRID HELPERS
=================================*/
.case-study-experience .cs-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-study-experience .cs-card-grid,
.case-study-experience .cs-process-grid,
.case-study-experience .cs-results-grid {
  display: grid;
  width: 100%;
}

/* ===============================
   CONTEXT
=================================*/
.case-study-experience .cs-context {
  background: #ffffff;
}

.case-study-experience .cs-context ul {
  margin: 20px 0;
  padding-left: 18px;
}

.case-study-experience .cs-context li {
  margin-bottom: 10px;
}

/* ===============================
   IMAGE BOX
=================================*/
.case-study-experience .cs-img-box img {
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transition: 0.5s;
}

.case-study-experience .cs-img-box img:hover {
  transform: scale(1.05);
}

/* ===============================
   CHALLENGES
=================================*/
.case-study-experience .cs-challenges {
  background: #f2f6fb;
}

.case-study-experience .cs-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.case-study-experience .cs-card-grid>div {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s;
}

.case-study-experience .cs-card-grid>div:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===============================
   PROCESS
=================================*/
.case-study-experience .cs-process {
  position: relative;
  background: #0b3c5d;
  color: #fff;
  overflow: hidden;
}

/* PROCESS BG IMAGE (ADDED) */
.case-study-experience .cs-process .cs-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c");
  background-size: cover;
  background-position: center;
  filter: blur(6px) scale(1.1);
  opacity: 0.35;
  z-index: 1;
}

.case-study-experience .cs-process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;

}

.case-study-experience .cs-process-grid>div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  transition: .4s ease;
}

.case-study-experience .cs-process-grid>div:hover {
  background-color: #fff;
  color: #000;
}

/* ===============================
   SOLUTION
=================================*/
.case-study-experience .cs-solution {
  background: #ffffff;
}

.case-study-experience .cs-solution ul {
  margin-top: 20px;
  padding-left: 18px;
}

.case-study-experience .cs-solution li {
  margin-bottom: 10px;
}

/* ===============================
   RESULTS
=================================*/
.case-study-experience .cs-results {
  background: #f7f9fc;
  text-align: center;
}

.case-study-experience .cs-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.case-study-experience .cs-results-grid strong {
  font-size: 42px;
  display: block;
}

/* ===============================
   CTA
=================================*/
.case-study-experience .cs-cta {
  position: relative;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.case-study-experience .cs-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.case-study-experience .cs-cta * {
  position: relative;
  z-index: 2;
}

.case-study-experience .cs-cta a {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: #fff;
  color: #006aca;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
  text-decoration: unset;

}

.case-study-experience .cs-cta a:hover {
  transform: translateY(-6px);
  text-decoration: unset;
  text-underline-offset: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero.about-hero-main.Blog.case-studies div#hero-bg {
  background-image: url(./img/case-studies-bg.jpeg) !important;
}

section.case-study-experience h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

/* ===============================
   TERMS PAGE – PARENT
================================ */
.terms-page {
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
  color: #1f2937;
  width: 100%;
  overflow-x: hidden;
}

.terms-page *,
.terms-page *::before,
.terms-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   CONTAINER
================================ */
.terms-page .terms-container {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
}

/* ===============================
   HERO
================================ */
.terms-page .terms-hero {
  position: relative;
  background:
    linear-gradient(339deg, #595959 0%, #006aca 100%),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.terms-page .terms-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.terms-page .terms-hero .terms-container {
  position: relative;
  z-index: 2;
}

.terms-page .terms-hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.terms-page .terms-hero p {
  max-width: 720px;
  margin: auto;
  opacity: 0.9;
  line-height: 1.7;
}

/* ===============================
   CONTENT
================================ */
.terms-page .terms-content {
  background: #ffffff;
}

.terms-page .terms-content h2 {
  font-size: 28px;
  margin: 40px 0 12px;
  color: #1e293b;
  font-weight: 600;
}

.terms-page .terms-content p {
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
}


.terms-page .terms-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-page .terms-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #4b5563;
}

.terms-page .terms-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;


  background-size: cover;
  background-position: center;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-7.terms-conditions div#hero-bg {
  background-image:
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216") !important;
}

.terms-page .terms-hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.terms-page .terms-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-7.privacy-hero div#hero-bg {
  background-image: url(https://img.freepik.com/free-photo/standard-quality-control-collage_23-2149631017.jpg?t=st=1770183385~exp=1770186985~hmac=708c0634f90f55586da0ebbe90efd233acc3e8e0944dc50c4f1f244e28393bdd&w=1480) !important;
}

a.contact-cta-btn {
  display: none;
}

/* ===============================
   ABOUT SECTION 1 – WHO WE ARE
================================*/
.about-sec-1 {
  background: #ffffff;
  padding: 100px 0;
}

.about-sec-1-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-sec-1-image {
  position: relative;
}

.about-sec-1-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.about-sec-1-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* CONTENT */
.about-sec-1-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-sec-1-content h2 span {
  color: #006aca;
}

.about-sec-1-lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #374151;
}

.about-sec-1-content p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #4b5563;
}

/* HIGHLIGHTS */
.about-sec-1-highlights {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-sec-1-highlights div {
  text-align: center;
}

.about-sec-1-highlights strong {
  display: block;
  font-size: 30px;
  color: #006aca;
}

.about-sec-1-highlights span {
  font-size: 14px;
  color: #6b7280;
}


/* ===============================
   ABOUT VALUES – PREMIUM SECTION
================================ */

.about-sec-2 {
  background: #f8fafc;
  padding: 110px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-sec-2__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.about-sec-2__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.about-sec-2__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 106, 202, 0.12);
  color: #006aca;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.about-sec-2__title {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  font-weight: 800;
}

.about-sec-2__title span {
  color: #006aca;
}

.about-sec-2__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* GRID – 3 x 2 PERFECT */
.about-sec-2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.about-sec-2__card {
  background: linear-gradient(180deg,
      #ffffff,
      #f1f5f9);
  border-radius: 22px;
  padding: 40px 34px;
  min-height: 230px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);

  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

/* GLOW LINE */
.about-sec-2__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  opacity: 0;
  transition: 0.5s;
}

/* TEXT */
.about-sec-2__card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  position: relative;
}

.about-sec-2__card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  position: relative;
}

/* HOVER MAGIC */
.about-sec-2__card:hover {
  transform: translateY(-14px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15);
  background: #0f172a;
}

.about-sec-2__card:hover::before {
  opacity: 1;
}

.about-sec-2__card:hover h4 {
  color: #ffffff;
}

.about-sec-2__card:hover p {
  color: #cbd5f5;
}

.about-sec-2__card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  border-radius: 22px;
  padding: 40px 34px;
  min-height: 230px;

  /* base shadow */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06);

  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

/* 🔥 COLORED BORDER */
.about-sec-2__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(120deg,
      rgba(0, 106, 202, 0.6),
      rgba(56, 189, 248, 0.6),
      rgba(0, 106, 202, 0.6));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.35;
  transition: 0.4s;
}

/* 🔥 HOVER PE BORDER STRONG */
.about-sec-2__card:hover::after {
  opacity: 1;
}

.about-sec-2__card:hover {
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 106, 202, 0.4);
}

/* ===============================
   ABOUT SECTION 3 – OUR TEAM
   (STRUCTURE BREAKER)
================================ */

.about-sec-3 {
  padding: 130px 20px;
  background: radial-gradient(circle at top,
      #f8fbff 0%,
      #ffffff 60%);
}

.about-sec-3__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.about-sec-3__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.about-sec-3__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0, 106, 202, 0.12);
  color: #006aca;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-sec-3__title {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.about-sec-3__title span {
  color: #006aca;
}

.about-sec-3__intro {
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
}

/* VISUAL */
.about-sec-3__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-sec-3__image {
  width: 100%;
  max-width: 900px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.2);
}

.about-sec-3__image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-sec-3__image:hover img {
  transform: scale(1.06);
}

/* FLOATING STATS */
.about-sec-3__stats {
  position: absolute;
  bottom: -40px;
  display: flex;
  gap: 28px;
  background: #ffffff;
  padding: 22px 30px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.about-sec-3__stats .stat-card {
  text-align: center;
  min-width: 120px;
}

.about-sec-3__stats strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #006aca;
}

.about-sec-3__stats span {
  font-size: 14px;
  color: #64748b;
}

.tech-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
  text-transform: uppercase;
}

/* ===============================
   ABOUT SEC 3 – WORK CULTURE
================================ */

.about-sec-3.work-culture {
  padding: 120px 20px;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #f6f9ff 100%);
}

.about-sec-3__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.work-culture__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* CONTENT */
.work-culture__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 106, 202, 0.12);
  color: #006aca;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.work-culture__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.work-culture__title span {
  color: #006aca;
}

.work-culture__text {
  font-size: 16.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.work-culture__highlights {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.work-culture__highlights div {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #006aca;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.work-culture__image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.2);
}

.work-culture__image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.work-culture__image:hover img {
  transform: scale(1.06);
}


/* ===========================
   ABOUT SEC 4 - THEME MATCH
=========================== */

.about-sec-4 {
  position: relative;
  padding: 120px 0;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  overflow: hidden;
  color: #fff;
}

.about-sec-4__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.about-sec-4__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* TEXT SIDE */

.about-sec-4__label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.about-sec-4__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-sec-4__title span {
  display: block;
  background: linear-gradient(90deg, #ffffff, #d0e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-sec-4__text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 520px;
}

/* BUTTONS */

.about-sec-4__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-sec-4__btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.about-sec-4__btn--primary {
  background: #fff;
  color: #006aca;
}

.about-sec-4__btn--primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-sec-4__btn--secondary {
  border: 2px solid #fff;
  color: #fff;
}

.about-sec-4__btn--secondary:hover {
  background: #fff;
  color: #006aca;
  transform: translateY(-6px);
}

/* IMAGE SIDE */

.about-sec-4__image-wrapper {
  position: relative;
}

.about-sec-4__image-wrapper img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transition: 0.5s ease;
}

.about-sec-4__image-wrapper img:hover {
  transform: scale(1.05);
}

/* ===============================
   ABOUT SEC 5 - G FAAD VERSION
================================ */

.about-sec-5 {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: #f8fafc;
}

/* Background Glow Effect */
.about-sec-5__blur-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 106, 202, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  z-index: 0;
}

/* Container */
.about-sec-5__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* IMAGE */

.about-sec-5__image-wrapper img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease;
}

.about-sec-5__image-wrapper img:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* CONTENT */

.about-sec-5__label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
  text-transform: uppercase;
}

.about-sec-5__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-sec-5__title span {
  background: linear-gradient(90deg, #006aca, #004e94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-sec-5__intro {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}

/* CARDS */

.about-sec-5__cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.about-sec-5__card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.about-sec-5__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-sec-5__icon {
  max-width: 55px;
  width: 100%;
  border-radius: 50%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
}

/* BUTTON */

.about-sec-5__btn {
  position: relative;
  padding: 15px 38px;
  border-radius: 50px;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: 0.4s ease;
}

.about-sec-5__btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  top: 0;
  left: -120%;
  transition: 0.6s;
}

.about-sec-5__btn:hover::before {
  left: 120%;
}

.about-sec-5__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 106, 202, 0.4);
}

.about-sec-5__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-sec-5__call span {
  font-size: 14px;
  color: #6b7280;
}

.about-sec-5__call strong {
  font-size: 18px;
  font-weight: 700;
}

/* ===============================
   ABOUT SEC 6 - G FAAAAD
================================ */

.about-sec-6 {
  position: relative;
  padding: 140px 0;
  background: #f8fafc;
  overflow: hidden;
}

/* Background glow */
.about-sec-6__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 106, 202, 0.12) 0%, transparent 70%);
  left: -200px;
  top: -200px;
  z-index: 0;
}

.about-sec-6__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}


.about-sec-6__label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
  text-transform: uppercase;
}


.about-sec-6__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-sec-6__title span {
  background: linear-gradient(90deg, #006aca, #004e94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.about-sec-6__desc {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}


.about-sec-6__features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.about-sec-6__feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.about-sec-6__feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}


.about-sec-6__icon {
  max-width: 55px;
  width: 100%;
  border-radius: 50%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
}



.about-sec-6__btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.about-sec-6__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 106, 202, 0.4);
}

.about-sec-6__image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease;
}

.about-sec-6__image img:hover {
  transform: scale(1.05) rotate(1deg);
}

.about-sec-approach {
  padding: 120px 20px;
  background: #f8fbff;
}

.about-sec-approach__container {
  max-width: 1100px;
  margin: auto;
}

.about-sec-approach__header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.about-sec-approach__label {
  display: inline-block;
  background: #e6f0ff;
  color: #006aca;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-sec-approach__header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-sec-approach__header h2 span {
  color: #006aca;
}

.about-sec-approach__header p {
  color: #6b7280;
  font-size: 16px;
}

.about-sec-approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-sec-approach__card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 106, 202, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.about-sec-approach__card span {
  font-size: 32px;
  font-weight: bold;
  color: #006aca;
  display: block;
  margin-bottom: 15px;
}

.about-sec-approach__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 106, 202, 0.15);
}

.about-sec-process {
  padding: 120px 8%;
  background: linear-gradient(to bottom, #f8f9fb, #eef2f7);
}

.about-sec-process__header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 80px;
}

.about-sec-process__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #006aca;
  border: 1px solid #006aca;
  margin-bottom: 16px;
  background: rgba(0, 106, 202, 0.1);
  text-transform: uppercase;
}

.about-sec-process__title {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
}

.about-sec-process__title span {
  color: #006aca;
}

.about-sec-process__subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}

.about-sec-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-sec-process__card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-sec-process__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  transition: width 0.3s ease;
}

.about-sec-process__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-sec-process__card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.process-number {
  font-size: 42px;
  font-weight: 800;
  color: #006aca;
  margin-bottom: 15px;
}

.about-sec-process__card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-sec-process__card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}

section.tech-unique {
  overflow: hidden;
}

@keyframes webdRotate {
  to {
    transform: rotate(360deg);
  }
}

.nav-inner .dropdown-menu {
  background: #f1f2f4;
  border-radius: 20px;
  padding: 20px;
  min-width: 950px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
  height: 430px;
  overflow-y: scroll;

  /* Firefox */
  scrollbar-width: none;

  /* IE & Edge */
  -ms-overflow-style: none;
}

/* Chrome, Safari, Edge (Webkit Browsers) */
.nav-inner .dropdown-menu::-webkit-scrollbar {
  display: none;
}


.nav-inner .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Make whole card clickable */
.nav-inner .dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 12px;
}

/* Hover card effect */
.nav-inner .dropdown-item:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.nav-inner .dropdown-item i {
  font-size: 25px;
  color: #006aca;
  margin-top: 5px;
}

/* Title */
.nav-inner .dropdown-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

/* Description */
.nav-inner .dropdown-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.nav-inner .dropdown-grid a.dropdown-item {
  display: flex;
}

nav.nav-main.is-scrolled .nav-inner .has-dropdown .dropdown-menu {
  position: absolute;
  top: 290%;
  left: -213px;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner div#hero-bg {
  background-image: url(./img/software-banner.png) !important;
}

.about-sec-process .about-sec-process__container {
  max-width: 1100px;
  margin: auto;
}

.case-card {
  height: max-content;

}

section.Manifesto.main {
  margin: 80px auto;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.ad-banner div#hero-bg {
  background-image: url(./img/ad-1.png) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.wd-banner div#hero-bg {
  background-image: url(./img/result_1.png) !important;
}

section.Manifesto.main {
  border-radius: 0;
  max-width: 100%;
  margin: 0;
}

section.Manifesto.main .accordion {

  max-width: 1150px;
  margin: auto;
}

section.Manifesto {
  border-radius: 0;
  max-width: 100%;
  margin: 0;
  margin-top: -80px;
}

section.Manifesto .accordion {

  max-width: 1150px;
  margin: auto;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.saas-banner div#hero-bg {
  background-image: url(https://img.freepik.com/free-photo/young-businesswoman-typing-laptop-using-wireless-connection-generated-by-ai_188544-26040.jpg?t=st=1773387414~exp=1773391014~hmac=0a34c80145af9dd900a0036eefb2bb5c64795602b1dffc4d94182c33b6cd846e&w=1480) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.cms-banner div#hero-bg {
  background-image: url(https://img.freepik.com/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010125.jpg) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.database-banner div#hero-bg {
  background-image: url(./img/database-bnr.png) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.quality-banner div#hero-bg {
  background-image: url(./img/business-new-sf.jpeg) !important;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.dev.sd-banner.quality-banner::before {
  backdrop-filter: blur(2px);
}

/* =============================
CHATBOT CONTAINER
============================= */

.sf-chatbot {
  position: fixed;
  bottom: 25px;
  right: 30px;
  z-index: 100;
  ;
  max-width: calc(100vw - 20px);
}


/* =============================
CHATBOT CONTAINER
============================= */

.sf-chatbot {

  position: fixed;
  bottom: 25px;
  right: 30px;
  z-index: 99;


}


/* =============================
ATTENTION IMAGE
============================= */

.sf-attention {

  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 100px;
  pointer-events: none;

  animation: attentionFloat 2s ease-in-out infinite;

}

@keyframes attentionFloat {

  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }

}


/* =============================
CHAT BUTTON
============================= */

.sf-chat-toggle {

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: linear-gradient(339deg, #595959 0%, #006aca 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 20px;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);

  animation: shake 3s infinite;
  width: 45px;
  height: 45px;
  font-size: 18px;

}

@keyframes shake {

  0% {
    transform: rotate(0deg)
  }

  20% {
    transform: rotate(-8deg)
  }

  40% {
    transform: rotate(8deg)
  }

  60% {
    transform: rotate(-4deg)
  }

  80% {
    transform: rotate(4deg)
  }

  100% {
    transform: rotate(0)
  }

}


.sf-chat-toggle:hover {
  background: #fff;
  color: #000;
}

/* =============================
CHAT WINDOW
============================= */

.sf-chat-window {
  position: fixed;
  bottom: 13px;
  right: 30px;
  width: 360px;
  height: 490px;
  /* top: 40px; */
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(.96);
  pointer-events: none;
  transition: all .35s ease;

}


/* =============================
OPEN STATE
============================= */

.sf-chat-window.open {

  opacity: 1;

  transform: translateY(0) scale(1);

  pointer-events: auto;

}


/* =============================
CLOSE ANIMATION
============================= */

.sf-chat-window.closing {

  opacity: 0;

  transform: translateY(40px) scale(.96);

}


/* =============================
HEADER
============================= */

.sf-chat-header {

  background: linear-gradient(339deg, #595959 0%, #006aca 100%);

  color: #fff;

  padding: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

}

.sf-header-left {

  display: flex;
  align-items: center;
  gap: 10px;

}

.sf-header-left img {
  width: 30px;
}


/* =============================
CHAT BODY
============================= */

.sf-chat-body {

  flex: 1;

  padding: 18px;

  background: #f4f4f4;

  overflow-y: auto;

}


/* =============================
MESSAGE BUBBLE
============================= */

.sf-bot-message {

  background: #e1e1e1;

  padding: 10px 16px;

  border-radius: 12px;

  font-size: 14px;

  display: inline-block;

  max-width: 75%;

}


/* =============================
FOOTER
============================= */

.sf-chat-footer {

  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #dcdcdc;
  background: #fff;
  background: #f7f7f7;

}

.sf-chat-footer input {

  flex: 1;

  padding: 10px 12px;

  border-radius: 8px;

  border: 1px solid #ddd;

  outline: none;

}


/* =============================
SEND BUTTON
============================= */

.sf-send-btn {

  width: 40px;
  height: 40px;

  border: none;

  border-radius: 8px;

  background: linear-gradient(339deg, #595959 0%, #006aca 100%);

  color: #fff;

  cursor: pointer;
  transition: .4s ease;

}

.sf-send-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  transition: .4s ease;
}

.sf-send-btn:hover i.fa-solid.fa-paper-plane {
  transform: rotate(45deg);
  transition: .4s ease;
}

.sf-header-left span {
  font-size: 20px;
  font-weight: 600;
}

button.sf-chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

a.login-btn {
  position: relative;
  display: inline-block;

  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  padding: 10px 18px;
  border-radius: 30px;

  color: #fff !important;
  text-decoration: none;
  font-weight: 600;

  overflow: hidden;
  z-index: 1;

  transition: all 0.3s ease;
}



a.login-btn:hover {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.3),
    0 6px 15px rgba(0, 106, 202, 0.4);
}



a.login-btn:active {
  transform: scale(0.95);
}



a.login-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
}

.hero.about-hero-main.Blog.conatct-us.services.Tech.blog-1.blog-7.devlopers div#hero-bg {
  background-image: url(https://img.freepik.com/premium-photo/saving-lot-time-going-shortcuts_926199-2944714.jpg?w=1480) !important;
  background-image: url("./img/bg-remove-dev.jpeg") !important;
  /* background-image: url(https://img.freepik.com/free-photo/beautiful-office-space-cartoon-style_23-2151043334.jpg?t=st=1775044276~exp=1775047876~hmac=514efeb1b0822387034dbda07ad93bbe410fd85a4f1908f836f274f6e3949ebb&w=1480) !important;
       background-image: url(https://img.freepik.com/premium-photo/technology-futuristic-networking-technology-technology-background_1043906-16363.jpg?ga=GA1.1.168239199.1748845094&w=740&q=80) !important;
         background-image: url(https://img.freepik.com/premium-photo/employees-company-work-laptop-with-information-development-company_926199-3851073.jpg?w=740) !important; */
}

button.shake-one {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 12px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.5s, opacity 0.5s;
  border-radius: 10px;
  background: linear-gradient(339deg, rgb(89, 89, 89) 0%, rgb(0, 106, 202) 100%);
  color: rgb(255, 255, 255);
  border: none;
  font-weight: 700;
}

.shake-one {
  transition: all 0.5s ease;
}

.shake-one.hide-hire {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

#playBtn {
  position: absolute;
  top: 65%;
  left: 50%;
}

button.shake-one {
  width: max-content;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;

}

.shake-one-main {
  position: relative;
  top: 12%;
  z-index: 11;
}

/* Hover text color */
button.shake-one:hover {
  color: #0f172a;
}

/* Background animation layer */
.shake-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover pe fill animation */
button.shake-one:hover::before {
  width: 100%;
}

button.shake-one i.fa-solid.fa-arrow-right {
  transform: rotate(45deg);
  transition: .4s ease;
}

button.shake-one:hover i.fa-solid.fa-arrow-right {
  transform: unset;
}

/* COMMON STYLE for both buttons */
button.shake,
button.shake-one {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hover text color */
button.shake:hover,
button.shake-one:hover {
  color: #0f172a;
}

/* BEFORE EFFECT */
button.shake::before,
button.shake-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover pe fill */
button.shake:hover::before,
button.shake-one:hover::before {
  width: 100%;
}

button#playBtn:hover {
  color: #0f172a;
}


/* ===============================
   HERO TEXT IMPROVEMENT
================================ */
.hero-title {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===============================
   BACKGROUND OVERLAY (CINEMATIC)
================================ */
.animated-video {
  position: relative;
}

/* .animated-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
} */

.hero-text {
  position: relative;
  z-index: 2;
}

/* ===============================
   BUTTON BASE STYLE
================================ */
button.shake,
button.shake-one {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* ===============================
   BUTTON HOVER TEXT COLOR
================================ */
button.shake:hover,
button.shake-one:hover {
  color: #0f172a;
}

/* ===============================
   BEFORE FILL EFFECT
================================ */
button.shake::before,
button.shake-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

button.shake:hover::before,
button.shake-one:hover::before {
  width: 100%;
}

/* ===============================
   BUTTON SHADOW ON HOVER
================================ */
button.shake:hover,
button.shake-one:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===============================
   HIRE BUTTON SPACING
================================ */
.shake-one {
  margin-bottom: 20px;
  width: max-content;
}

/* ===============================
   ARROW MICRO ANIMATION
================================ */
.shake-one i {
  transition: transform 0.3s ease;
}

.shake-one:hover i {
  transform: translateX(5px);
}

/* ===============================
   HIDE ANIMATION (CLICK PE)
================================ */
.shake-one.hide-hire {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.nav-main .mobile-services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 80%;
  display: flex;
  justify-content: end;
}

a.login-btn:hover::after {
  animation: pulseEnergy 1s ease-in-out infinite;
}

@keyframes pulseEnergy {
  0% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}



a.login-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;

  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;

  transform: translate(-50%, -50%);
  opacity: 0;
}

a.login-btn:hover::before {
  animation: clickWave 0.6s ease-out;
}


@keyframes clickWave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.see-more {
  display: block !important;
  z-index: 99;
  margin-top: 12%;
}

.bigsmalltxt {
  line-height: 1.2;
  margin-top: 50px;
}

#playBtn {

  top: 67%;
  width: max-content;
}

.see-more {
  display: block !important;
  z-index: 99;
  margin-top: 0;
  position: relative;
  top: 14%;
}

.hero-text {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: bold;
  margin-top: -100px;
}

.see-more {
  display: block !important;
  z-index: 90;
  margin-top: 0;
  position: relative;
  top: 30%;
}

div#mobileNav a.login-btn {
  font-size: 22px;
  padding: 14px 40px;
  margin-bottom: 30%;
}

.nav-main .mobile-nav {
  padding-bottom: 0;
}





/* MAIN FOOTER */
.footer-copyright {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* CONTAINER */
.footer-copyright .footer-copyright-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXT */
.footer-copyright p {
  color: #94a3b8;
  font-size: 14px;
}

.footer-copyright span {
  color: #007bff;
  font-weight: 500;
}

/* LINKS */
.footer-copyright .footer-links {
  display: flex;
  gap: 20px;
}

.footer-copyright .footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-copyright .footer-links a:hover {
  color: #60a5fa;
}

/* MOBILE */
@media(max-width:768px) {

  .footer-copyright .footer-copyright-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}







@media (max-width: 1200px) {
  .see-more {
    margin-top: 0 !important;
  }

  .hero-text {
    margin-top: -100px !important;
  }
}

@media (max-width: 767px) {
  .shake-one-main {
    position: relative;
    top: 8%;
    z-index: 11;
  }
}

@media (max-width: 576px) {
  .shake-one-main {
    position: relative;
    top: 6%;
    z-index: 11;
  }
}


@media(max-width:576px) {

  .sf-chat-window {

    position: fixed;

    bottom: 0;
    right: 0;

    width: 100vw;
    height: auto;

    border-radius: 0;
    top: 0;

  }


}



@media (max-width: 1200px) {
  .nav-main .nav-inner {
    padding: 0 10px;
  }

  .nav-main .dropdown-menu {
    left: -140px;
    min-width: 920px;
  }

  nav.nav-main.is-scrolled .nav-inner .has-dropdown .dropdown-menu {
    left: -140px;
    min-width: 920px;
  }

  .see-more {
    margin-top: 30%;
  }

  .hero-text {
    margin-top: 15%;
  }


  .nav-main .nav-left,
  .nav-main .nav-right {
    gap: 8px;
  }

  .nav-main.is-scrolled .nav-inner {
    padding: 14px 20px;
  }

}

@media (max-width: 1100px) {
  .about-sec-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 1024.98px) {
  .nav-main .nav-inner {
    width: 95%;
  }
}

@media (min-width: 991.98px) {
  div#mobileNav {
    display: none;
  }
}

@media (max-width: 991.98px) {
  nav.nav-main.is-scrolled a {
    color: #ffffff;
  }

  .nav-main.is-scrolled .nav-inner {
    padding: 14px 35px;
  }

  .about-sec-1-content {
    text-align: center;
  }

  .seamless- .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sec-1-highlights {
    justify-content: center;
  }

  .work-culture__highlights {
    justify-content: center;
  }

  .about-sec-5__container {
    display: flex;
    flex-direction: column-reverse;
  }

  p.about-sec-4__text {
    max-width: 100%;
  }

  .about-sec-5__content.aos-init.aos-animate {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  h2.about-sec-5__title {
    text-align: center;
  }

  p.about-sec-5__intro {
    text-align: center;
  }

  .about-sec-6__content.aos-init.aos-animate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  h2.about-sec-6__title {
    text-align: center;
  }

  p.about-sec-6__desc {
    text-align: center;
  }

  .about-sec-5__container {
    gap: 70px;
  }

  .about-sec-6__features {
    margin: 0;
  }

  .cs-context-text {
    text-align: center;
  }

  .cs-context-text ul {
    display: inline-block;
  }

  .case-study-experience .cs-container {
    text-align: center;
  }

  .case-study-experience .cs-grid-two {

    display: flex;
    flex-direction: column-reverse;
  }

  .case-study-experience .cs-solution ul {
    display: inline-block;
  }

  .cs-container.cs-grid-two.context {
    flex-direction: column;
  }

  .about-sec-5__image-wrapper.aos-init.aos-animate {
    width: 100%;
  }

  .work-culture__content {
    text-align: center;
  }

  .about-sec-1-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-sec-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sec-6__container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-sec-5__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-sec-4__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-sec-4__text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-sec-4__buttons {
    justify-content: center;
  }

  .about-sec-3__title {
    font-size: 36px;
  }

  .work-culture__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-culture__title {
    font-size: 34px;
  }

  .about-sec-3__stats {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-sec-2__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sec-1-content h2 {
    font-size: 32px;
  }

  .innovation-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dev-sec-two .pillar-timeline::before {
    left: 20px;
  }

  .dev-sec-two .pillar-item {
    justify-content: flex-start !important;
  }

  .dev-sec-one__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .case-study-experience .cs-grid-two {
    grid-template-columns: 1fr;
  }

  .case-study-experience .cs-hero h1 {
    font-size: 34px;
  }



  .web-d-section .web-d-container {
    grid-template-columns: 1fr;
  }

  .web-d-section .web-d-left {
    position: relative;
    top: 0;
  }

  .dev-sec-one__content {
    text-align: center;
  }

  .dev-sec-one__content .intro {

    max-width: unset;
  }

  .web-d-section .web-d-left {

    text-align: center;
  }

  .web-d-section .web-d-container {

    gap: 50px;
  }

  .dev-sec-two .pillar-content {
    max-width: 100%;
    width: 100%;
  }

  .dev-sec-one__visual {
    width: 100%;
  }
}




@media (max-width: 768px) {
  .innovation-section h2 {
    font-size: 32px;
  }

  .blogs-container .blog-image img {

    height: auto;

  }

  .terms-page .terms-hero h1 {
    font-size: 34px;
  }

  .innovation-section {
    padding: 80px 0;
  }

  .Transformative-services {
    padding: 70px 0;
  }

  .Transformative-services h2 {
    font-size: 30px;
  }

  .Transformative-services .service-card {
    padding: 32px 26px;
  }
}


@media (max-width: 576.98px) {
  .nav-main .mobile-nav {
    padding-top: 25%;
  }

  .see-more {
    margin-top: 50%;
  }

  .hero-text {
    margin-top: 0%;
  }

  .case-image {
    height: 250px;
  }

  .book-slider .book-slider-heading {
    display: flow;

    margin: 15px !important;
  }

  .book-slider .custom-arrows {
    justify-content: end;
  }

  .swiper-pagination {
    padding-inline: 2rem !important;
  }

  .about-sec-process__grid {
    grid-template-columns: 1fr;
  }

  .item {

    height: 50vh !important;

  }


  .about-sec-2__grid {
    grid-template-columns: 1fr;
  }

  .about-sec-approach__grid {
    grid-template-columns: 1fr;
  }

  .about-sec-2__title {
    font-size: 32px;
  }

  .web-d-section .web-d-right {
    grid-template-columns: repeat(1, 1fr);
  }

  .web-d-section .web-d-left h2 {
    font-size: 42px;
  }

  .hero.about-hero-main p:nth-of-type(1) {
    font-size: 42px;
  }

  .seamless- .process-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 36px !important;
  }

  .footer-top {
    padding: 50px 0px;
  }

  .divider {

    margin: 0;

  }

  .footer-content {
    padding: 50px 0 10px 0;
  }

  .Modern-Technologies .tech-tabs {
    gap: 20px;
    flex-wrap: wrap;
  }

  .blogs-container .blogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .blogs-container .blog-footer {
    flex-wrap: wrap;
    gap: 15px;
  }

  .about-sec-3__stats {
    position: static;
  }

  .about-sec-3__visual {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .about-sec-1-highlights {
    gap: 15px;

  }

  .about-sec-1-highlights strong {
    font-size: 25px;
  }

  .parent-text {
    padding: 20px 0 !important;
  }

  .case-study-experience .cs-process-grid {
    grid-template-columns: auto;
  }

  section.cs-challenges.cs-animate .cs-card-grid img,
  section.cs-process.cs-animate .cs-process-grid img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .footer-col.about p {
    margin-top: 20%;
    font-size: 16px;
    color: #fff;
  }

  .wrapper-slider {
    & .parent-text {
      p {
        font-size: 22px;
        font-weight: 300;
      }
    }
  }
}


@media (max-width: 400.98px) {
  .dev-sec-two .pillar-icon {
    font-size: 30px;
  }
}




/* MAIN */
.login-page {
  display: flex;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

/* LEFT */
.login-page .login-left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  padding-top: 10px;
  justify-content: space-between;
}

.inner-login-page {
  margin-top: 25px;
}

/* LOGO */
.login-page .logo {
  width: 260px;
  margin-left: -35px;
  margin-top: -30px;
}

/* TEXT */
.login-page .login-left h1 {
  font-size: 42px;
  color: #0f172a;
  line-height: 1.3;
  font-weight: 700;
}

.login-page .login-left span {
  color: #006aca;
}

.login-page .sub-text {
  margin-top: 15px;
  color: #475569;
  font-size: 20px;
}

/* FOOTER */
.login-page .left-footer {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  gap: 25px;
  justify-content: center;
  width: 100%;
  left: 0;
  right: 0;
}

.login-page .left-footer a {
  margin-right: 10px;
  color: #38bdf8;
  text-underline-offset: 3px;
}

.login-page .left-footer a:hover {
  text-decoration: unset;
}

/* RIGHT */
.login-page .login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #1e293b, #1e3a8a, #2563eb);
  background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
  position: relative;
}

.left-footer.left-footer-one {
  display: none;
}

/* LOGIN BOX */
.login-page .login-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* TITLE */
.login-page .login-box h2 {
  color: #fff;
  margin-bottom: 35px;
}


/* INPUT GROUP */
.login-page .input-group {
  position: relative;
  margin-bottom: 30px;
}


/* INPUT */
.login-page .input-group input {
  width: 100%;
  padding: 18px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, 0.05);
  color: #ffff;
  outline: none;
  transition: .3s;
}

/* INPUT FOCUS */
.login-page .input-group input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

/* LABEL */
.login-page .input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #c7d2fe;
  transition: .3s;
  pointer-events: none;
}

/* FLOAT LABEL */
.login-page .input-group input:focus+label,
.login-page .input-group input:not(:placeholder-shown)+label {
  top: -12px;
  font-size: 12px;
  color: #93c5fd;
  background: transparent;
  left: 8px;
}

/* TERMS */
.login-page .terms {
  font-size: 14px;
  color: #cbd5f5;
  margin: 15px 0;
}

.login-page .terms a {
  color: #fff;
  text-underline-offset: 4px;
}

.login-page .terms a:hover {
  color: #cbd5f5;
  text-decoration: unset;
}

/* ACTIONS */
.login-page .login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px !important;
}

/* FORGOT */
.login-page .forgot {
  color: #fff;
  font-weight: 500;
  text-underline-offset: 5px;
}

.login-page .forgot:hover {
  color: #cbd5f5;
  text-decoration: unset;
}

a.login-btn i.fa-solid.fa-arrow-right {
  transition: .3s ease;
  transform: rotate(45deg);
}

.login-page .login-right a.login-btn:hover {
  color: #cbd5f5 !important;
}

.left-footer.left-footer-one p {
  text-align: center;
}

.left-footer.left-footer-one span {
  color: #006aca;
}

a.login-btn:hover i.fa-solid.fa-arrow-right {
  transform: unset;

}

.login-box .input-group {
  position: relative;
}

.login-box .input-group input {
  padding-right: 45px;
  /* space for eye */
}

.login-box .input-group .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
  /* white eye */
  font-size: 16px;
}

/* INPUT GROUP + EYE ICON */
.login-box .input-group {
  position: relative;
}

.login-box .input-group input {
  padding-right: 45px;
}

.login-box .input-group input:focus {
  border-color: #4da3ff;
  box-shadow: 0 0 0 2px rgba(77, 163, 255, 0.2);
}

.login-box .input-group .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-box .input-group .toggle-password:hover {
  color: #cfd8ff;
}


/* LOGIN BOX DEPTH */
.login-right .login-box {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* LINKS HOVER */
.login-box a {
  transition: 0.3s ease;
}

.login-box a:hover {
  opacity: 0.8;
}

.login-page .login-left {
  justify-content: space-between;
}

.inner-login-page {
  margin-top: -100px;
}

.login-page .left-footer {
  position: unset;
}


/* NEW */


/* ================= BG (IMAGE + GRADIENT OVERLAY) ================= */
.login-page .login-right {
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, 0.9),
      rgba(30, 58, 138, 0.85),
      rgba(37, 99, 235, 0.8)),
    linear-gradient(320deg,
      rgba(0, 106, 202, 0.35) 0%,
      rgba(15, 23, 42, 0.4) 100%),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
}

/* ================= EXTRA GLOW ================= */
.login-page .login-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(59, 130, 246, 0.35), transparent 60%);
  pointer-events: none;
}

/* ================= LOGIN BOX ================= */
.login-page .login-box {
  position: relative;
  z-index: 2;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(37, 99, 235, 0.25);
}

/* ================= INPUT FOCUS ================= */
.login-page .input-group input:focus {
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.7);
}

/* ================= BUTTON ================= */
.login-page .login-btn {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

/* RIGHT SIDE FINAL BG */
.login-page .login-right {
  background-image:
    linear-gradient(135deg,
      rgba(2, 6, 23, 0.92),
      rgba(30, 58, 138, 0.85),
      rgba(37, 99, 235, 0.8)),
    url('https://img.freepik.com/free-vector/matrix-style-binary-code-digital-falling-numbers-blue-background_1017-37387.jpg');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* url('https://img.freepik.com/premium-photo/abstract-digital-landscape-with-flowing-binary-code-representing-data-technology_110373-14020.jpg?w=1480')
    center/cover no-repeat */
  /* url('https://img.freepik.com/free-vector/stream-binary-code-design-vector_53876-161367.jpg?t=st=1775561735~exp=1775565335~hmac=19337d7343b99023e183bbc16718f3cc3abba109bedcfb4b79c6524f138eb2a4&w=740')
    center/cover no-repeat; */
}




/* SUBTLE GLOW (premium feel) */
.login-page .login-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.25), transparent 60%);
  pointer-events: none;
}


/* .login-page .login-right{
    position: relative;
    background:
    linear-gradient(
      120deg,
      rgba(2,6,23,0.95),
      rgba(15,23,42,0.9)
    ),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1974&auto=format&fit=crop  ')
    center/cover no-repeat;
}


.login-page .login-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(circle at 80% 20%, rgba(37,99,235,0.25), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(6,182,212,0.2), transparent 50%);
    pointer-events:none;
} */





/* NEW */






/* MOBILE */
@media(max-width:900px) {
  .login-page {
    flex-direction: column;
  }


  .inner-login-page {
    margin-top: -25px;
  }

  .login-page .left-footer a {

    color: #006aca;

  }

  .login-page .left-footer {
    position: static;
    margin-top: 20px;
  }

  .login-page .login-right {
    background: transparent;
  }

  .login-page .login-box {
    width: 100%;
    background: unset;
    backdrop-filter: unset;
    border-radius: unset;
    padding: unset;
    border: unset;
    box-shadow: unset;
  }

  .login-page .login-box h2 {
    display: none;
  }

  .login-page .login-right {
    padding: 0 40px;
  }

  .login-page .login-left {
    position: unset;
  }

  .login-page .login-left {
    flex: unset;
  }

  .login-page .login-right {
    flex: unset;
  }




  .login-page .input-group input {
    width: 100%;
    padding: 18px 15px;
    border-radius: 10px;
    border: 1px solid #475569;
    background: transparent;
    color: #475569 !important;
    outline: none;
    transition: .3s;
  }




  .login-page .left-footer {
    position: absolute;
    margin-top: 20px;
    bottom: 0;
  }

  .login-page .input-group label {
    color: #475569;
  }

  .login-page .left-footer {
    position: absolute;
    margin-top: 20px;
    bottom: 25px;
    left: 44%;
    transform: translate(-44%);
    /* width: 100%; */
  }

  .login-page .terms {
    color: #475569;
  }

  .login-page .terms a {
    color: #006aca;
  }

  .login-page .terms a:hover {
    color: #006aca;
    text-decoration: unset;
  }

  .login-page .forgot {
    color: #006aca;
  }

  .login-page .forgot:hover {
    color: #006aca;
    text-decoration: unset;
  }

  .login-page .input-group input {

    padding: 24px 15px;
    padding-right: 45px;
  }

  .login-page .left-footer {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .login-page .input-group input:focus+label,
  .login-page .input-group input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: #006aca;
    background: transparent;
  }

  .login-box .input-group .toggle-password {
    color: #475569 !important;
  }

  .left-footer.left-footer-two {
    display: none;
  }

  .login-page .left-footer {
    position: unset;
    transform: unset;
  }

  .login-page .login-right::after {
    display: none;
  }

  .login-page .left-footer {
    justify-content: flex-start;
    padding-left: 30px;
    margin-top: 60px;
  }

  .login-page .left-footer {
    padding: 0 40px;
  }

  .login-page .left-footer {
    margin-top: 30px;
    margin-bottom: 30px;
  }

}


@media (max-width: 400.98px) {
  .login-page .login-left h1 {
    font-size: 36px;
  }

  .login-page .login-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .login-page .login-actions a.login-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-page {
    height: auto;
  }





}




/* ================= SECTION ================= */
.dev-section {
  position: relative;
  padding: 110px 20px;
  background: radial-gradient(circle at 20% 20%, rgba(0, 140, 255, 0.15), transparent 40%),
    linear-gradient(135deg, #020617, #0b1120, #020617);
  overflow: hidden;
}

/* background glow */
.dev-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.2), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(80px);
  opacity: 0.6;
}

/* ================= CONTAINER ================= */
.dev-section .dev-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

/* ================= HEADING ================= */
.dev-section .dev-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.dev-section .dev-subtext {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 60px;
}

/* ================= GRID ================= */
.dev-section .dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.dev-section .dev-card {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: pointer;

  transform-style: preserve-3d;
  height: -webkit-fill-available;
}

/* ===== mouse glow ===== */
.dev-section .dev-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%),
      rgba(0, 212, 255, 0.25),
      transparent 40%);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.dev-section .dev-card:hover::before {
  opacity: 1;
}

/* ===== shine effect ===== */
.dev-section .dev-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent);
  transform: skewX(-20deg);
}

.dev-section .dev-card:hover::after {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  100% {
    left: 130%;
  }
}

/* ===== hover ===== */
.dev-section .dev-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 140, 255, 0.25);
}

/* ================= IMAGE ================= */
.dev-section .dev-img {
  width: 110px;
  height: 110px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  position: relative;
}

.dev-section .dev-img::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(120deg, #00d4ff, #3b82f6);
  filter: blur(8px);
  opacity: 0.6;
}

.dev-section .dev-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

/* image hover */
.dev-section .dev-card:hover .dev-img img {
  transform: scale(1.1) rotate(2deg);
}

/* ================= TEXT ================= */
.dev-section .dev-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.dev-section .dev-role {
  display: block;
  font-size: 13px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.dev-section .dev-desc {
  font-size: 13px;
  color: #94a3b8;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.6;
  transition: 0.3s;
}

.dev-section .dev-card:hover .dev-desc {
  transform: translateY(-3px);
  color: #cbd5f5;
}

/* ================= SKILLS ================= */
.dev-section .dev-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.dev-section .dev-skills span {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 140, 255, 0.1);
  border: 1px solid rgba(0, 140, 255, 0.3);
  backdrop-filter: blur(6px);
  transition: 0.3s;
  color: #fff;
}

.dev-section .dev-card:hover .dev-skills span {
  transform: translateY(-3px);
}

.dev-section .dev-skills span:hover {
  background: rgba(0, 140, 255, 0.2);
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .dev-section .dev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dev-section .dev-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= STRIP ================= */
.rating-strip {
  background: #d9ff00;
  padding: 50px 20px;
  background: #f7f7f7;
  position: relative;
}

img.bg-gray111 {
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;

}

img.bg-gray112 {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  transform: rotate(180deg);
  width: 100%;
  height: 30px;
  top: -5px;
}

section.elite-stats.ultra.dev {
  background: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 170px;
}


/* container */
.rating-strip .rating-strip-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* item */
.rating-strip .rating-item {
  text-align: left;
}

/* logos */
.rating-strip .logo-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-strip .tp-star {
  color: #00b67a;
  font-size: 20px;
}

/* G2 style */
.rating-strip .logo-text.g2 {
  font-size: 32px;
  font-weight: 800;
}

.rating-strip .logo-text.g2 span {
  font-size: 18px;
  vertical-align: super;
}

/* stars */
.rating-strip .stars {
  font-size: 18px;
  margin-bottom: 5px;
}

.rating-strip .stars.green {
  color: #00b67a;
}

.rating-strip .stars.black {
  color: #000;
}

/* text */
.rating-strip p {
  font-size: 14px;
  color: #000;
}

.rating-strip strong {
  font-weight: 700;
}

/* responsive */
@media (max-width: 768px) {
  .rating-strip .rating-strip-container {
    flex-direction: column;
    text-align: center;
  }

  .rating-strip .rating-item {
    text-align: center;
  }
}

img.logo.tp {
  width: 170px;
}

.rating-strip .rating-item img {
  cursor: pointer;
  width: 180px;
  transition: .4s ease;
}

.rating-strip .rating-item img:hover {
  transform: scale(1.1);

}


/* UPDATED BG (IMAGE + OVERLAY + GLOW) */
.dev-section {
  position: relative;
  padding: 110px 20px;
  padding-bottom: 140px;

  background:
    linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95)),
    url("https://img.freepik.com/free-vector/matrix-style-binary-code-digital-falling-numbers-blue-background_1017-37387.jpg");


  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* subtle glow layer */
.dev-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 140, 255, 0.2), transparent 50%);
  pointer-events: none;
}

footer.footer.dev {
  position: relative;
}




/* ================= ROOT ================= */
.sf-profile-page {
  background: #f5f6f8;
}

.sf-profile-page .sf-profile-page__container {
  display: flex;
  align-items: flex-start;
}

/* ================= LEFT ================= */
.sf-profile-page .sf-profile-page__left {
  width: 35%;
  height: 100vh;
  top: 1px;
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 40px;
  overflow: auto;
}

.sf-profile-page .sf-profile-page__card {
  text-align: start;
  width: 100%;
  position: relative;
}

/* logo */
.sf-profile-page .sf-profile-page__logo img {
  width: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;


}

span.favicon-after-span {
  width: 60px;
  height: 60px;
  background: #f5f6f8;
  position: absolute;
  top: -8px;
  left: -9px;
  border-bottom-right-radius: 23px;
}

/* image */
.sf-profile-page .sf-profile-page__img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* text */
.sf-profile-page h2 {
  font-size: 30px;
}

.sf-profile-page .sf-profile-page__card h2 {
  margin-top: 10px;
}

.sf-profile-page .sf-profile-page__location {
  color: #666;
  font-size: 14px;
}

.sf-profile-page h4 {
  margin-top: 10px;
  font-size: 14px;
}

.sf-profile-page .sf-profile-page__verified {
  margin-top: 15px;
  padding: 10px;
  border: 2px dashed #007bff;
  border-radius: 6px;
  color: #007bff;
  font-size: 14px;
  margin: auto;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.sf-profile-page__experience {
  margin-top: 10px;
  margin-bottom: 10px;
}



/* ================= RIGHT ================= */
.sf-profile-page .sf-profile-page__right {
  width: 65%;
  background: #fff;
  overflow: hidden;
}

/* ================= CTA ================= */
.sf-profile-page .sf-profile-page__cta {
  padding: 20px 40px;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95));
  color: #fff;
}

.sf-profile-page .sf-profile-page__cta h3 {
  font-size: 42px;
  color: #fff;
}

.sf-profile-page .sf-profile-page__btns {
  margin-top: 15px;
}

.sf-profile-page .sf-profile-page__btn-outline {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  transition: .4s ease;
}

.sf-profile-page .sf-profile-page__btn-outline:hover {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
}

.sf-profile-page .sf-profile-page__card svg {
  width: 18px;
  fill: #006aca;
}


.sf-profile-page .sf-profile-page__btn-black {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  transition: .4s ease;
}


.sf-profile-page .sf-profile-page__btn-black:hover {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}




/* ================= SECTIONS ================= */
.sf-profile-page .sf-profile-page__section {
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.sf-profile-page .sf-profile-page__section h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sf-profile-page .sf-profile-page__section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.sf-profile-page .sf-profile-page__section p {
  color: #444;
  line-height: 1.7;
}

/* highlight name */
.sf-profile-page h1 span {
  padding: 0 10px;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95));
  color: #fff;

}

/* ================= TAGS ================= */
.sf-profile-page .sf-profile-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sf-profile-page .sf-profile-page__tags span {
  border: 1px dashed #aaa;
  padding: 6px 12px;
  font-size: 13px;
}

/* ================= TIMELINE ================= */
.sf-profile-page .sf-timeline .sf-item {
  margin-bottom: 20px;
}

.sf-profile-page .sf-timeline h4 {
  margin: 0;
}

.sf-profile-page .sf-timeline span {
  font-size: 12px;
  color: #888;
}

/* ================= PROJECTS ================= */
.sf-profile-page .sf-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.sf-profile-page .sf-project {
  background: #f1f1f1;
  padding: 10px 15px;
  border-radius: 6px;
}

/* ================= LIST ================= */
.sf-profile-page .sf-list {
  padding-left: 20px;
}

.sf-profile-page .sf-list li {
  margin-bottom: 8px;
}

/* ================= STEPS ================= */
.sf-profile-page .sf-steps {
  display: grid;
  gap: 10px;
}

.sf-profile-page .sf-steps div {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 6px;
}

/* ================= BENEFITS ================= */
.sf-profile-page .sf-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sf-profile-page .sf-benefits div {
  background: #eaf4ff;
  padding: 8px 12px;
  border-radius: 6px;
}

/* ================= FINAL CTA ================= */
.sf-profile-page .sf-profile-page__final {
  padding: 40px;
  text-align: center;
}

.sf-profile-page .sf-profile-page__btns {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


/* better paragraph readability */
.sf-profile-page .sf-profile-page__section p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
}

/* stronger section headings */
.sf-profile-page .sf-profile-page__section h2 {
  margin-bottom: 10px;
}

/* tags / skills / projects better visual */
.sf-profile-page .sf-profile-page__tags span,
.sf-profile-page .sf-project,
.sf-profile-page .sf-benefits div {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 106, 202, 0.14);
  transition: all 0.3s ease;
}

/* hover enhancement */
.sf-profile-page .sf-profile-page__tags span:hover,
.sf-profile-page .sf-project:hover,
.sf-profile-page .sf-benefits div:hover {
  background-image: linear-gradient(339deg, rgb(89, 89, 89) 0%, rgb(0, 106, 202) 100% 100%);
  color: #fff;
  transform: translateY(-2px);
}

/* VIDEO SECTION */

.sf-profile-page__video-parent {
  margin-top: 15px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #091225 0%, #0f1831 100%);
  border: 1px solid rgba(0, 183, 255, 0.15);
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95));
}

.sf-profile-page__video-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sf-profile-page__video-text {
  font-size: 14px;
  line-height: 1.7;
  color: #c9d4e5;
  margin-bottom: 20px;
}

.sf-profile-page__video-btn {
  width: 100%;
  height: 47px;
  border-radius: 14px;
  border: none;
    background: linear-gradient(90deg, #0ea5ff, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid #007bff;
}

.sf-profile-page__video-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #007bff;
  border: 1px solid #007bff;

}


/* VIDEO MODAL */

.sf-profile-page__video-modal-parent {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sf-profile-page__video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.sf-profile-page__video-modal-box iframe {
  width: 100%;
  height: 500px;
}

.sf-profile-page__video-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 10;
}






/* RESPONSIVE */

@media(max-width:768px) {

  .sf-profile-page__video-modal-box iframe {
    height: 260px;
  }

}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .sf-profile-page .sf-profile-page__container {
    flex-direction: column;
  }

  .sf-profile-page .sf-profile-page__left,
  .sf-profile-page .sf-profile-page__right {
    width: 100%;
    position: unset;
    height: auto;
  }

  .sf-profile-page .sf-profile-page__card {
    position: relative;
    top: 0;
  }
}








/* popup */

/* =========================
HIRE POPUP CSS
ADD IN softflix.css
========================= */

.sf-hire-popup-overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 99999;

  opacity: 0;

  visibility: hidden;

  transition: 0.4s ease;

  padding: 20px;

  /* FIX */
  overflow-y: auto;

}


.sf-hire-popup-overlay.active {

  opacity: 1;

  visibility: visible;

}


.sf-hire-popup {
  width: 100%;
  max-width: 900PX;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  animation: popupAnim 0.4s ease;
    max-height: 660px;

}


@keyframes popupAnim {

  from {

    transform: translateY(40px) scale(0.96);

    opacity: 0;

  }

  to {

    transform: translateY(0) scale(1);

    opacity: 1;

  }

}


.sf-hire-popup-left {

  background: linear-gradient(135deg, #060816, #0b1638);

  padding: 30px;

  color: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;
  position: relative;

}


.sf-hire-popup-left h2 {

  font-size: 42px;

  font-weight: 700;

  margin-bottom: 18px;

  line-height: 1.15;

}


.sf-hire-popup-left p {

  font-size: 16px;

  line-height: 1.8;

  color: #d6d6d6;

  margin-bottom: 35px;

}


.sf-hire-points {

  display: flex;

  flex-direction: column;

  gap: 18px;

}


.sf-hire-points div {

  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 15px;

  line-height: 1.6;

}


.sf-hire-points i {

  color: #4ea3ff;

}


.sf-hire-popup-right {

  padding: 30px;

  background: #fff;
      overflow-y: auto;
    height: 90vh;

}


.sf-hire-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-bottom: 15px;

}


.sf-hire-field {

  display: flex;

  flex-direction: column;

}


.sf-hire-field label {

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 8px;

  color: #111;

}


.sf-hire-field input,
.sf-hire-field select,
.sf-hire-field textarea {

  width: 100%;

  border: 1px solid #d8d8d8;

  border-radius: 14px;

  padding: 15px;

  font-size: 15px;

  outline: none;

  font-family: 'Poppins', sans-serif;

  transition: 0.3s ease;

  background: #fff;

}

.sf-hire-field input,
.sf-hire-field select
{
  height: 47px;
}


.sf-hire-field input:focus,
.sf-hire-field select:focus,
.sf-hire-field textarea:focus,
.sf-dropdown-selected:focus {

  border-color: #007bff;

  box-shadow: 0 0 0 4px rgba(36, 107, 255, 0.1);

}


.sf-hire-field textarea {

  height: 100px;

  resize: none;

}


.sf-hire-submit-btn {

  width: 100%;

  height: 47px;

  border: none;

  border-radius: 16px;

  background: linear-gradient(90deg, #0ea5ff, #2563eb);

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  margin-top: 12px;

  transition: 0.3s ease;

}


.sf-hire-submit-btn:hover {

    transform: translateY(-2px);
    background: #fff;
    color: #007bff;
    border: 1px solid #007bff;

}


.sf-hire-close {

    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s ease;
    z-index: 10;

}


.sf-hire-close:hover {

  background: #111;

  color: #fff;

}

.has-dropdown.dropdown-industries .dropdown-menu {
    height: auto;
    min-width: 500px;
}
.has-dropdown.dropdown-industries .dropdown-grid {
    grid-template-columns: unset;
}
/* =========================
TABLET
========================= */

@media(max-width:991px) {

  .sf-hire-popup {

    grid-template-columns: 1fr;

    max-height: 95vh;

    overflow-y: auto;

  }

  .sf-hire-popup-left {

    padding: 40px 28px;

  }
  .sf-hire-popup-left h2 {
    margin-top: 50px;
}

  .sf-hire-popup-right {

   padding: 35px 24px;
        height: 50vh;
        overflow: auto;

  }

}


/* =========================
MOBILE
========================= */

@media(max-width:600px) {

  .sf-hire-popup-overlay {

    padding: 12px;

  }

  .sf-hire-popup {

           border-radius: 22px;
        max-height: 85vh;

  }

  .sf-hire-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }

  .sf-hire-popup-left {

    padding: 34px 22px;
    

  }

  .sf-hire-popup-right {

    padding: 25px 18px;

  }

  .sf-hire-popup-left h2 {

    font-size: 30px;

  }

  .sf-hire-popup-left p {

    font-size: 14px;

    line-height: 1.7;

  }

  .sf-hire-points div {

    font-size: 14px;

  }

  .sf-hire-field input,
  .sf-hire-field select,
  .sf-hire-field textarea {

    padding: 14px;

    font-size: 14px;

  }

  .sf-hire-submit-btn {

    height: 54px;

    font-size: 15px;

  }

}


.sf-custom-dropdown{
  position:relative;
  width:100%;
}

.sf-dropdown-selected{
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /* background: #fff; */
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    padding: 15px;
    font-size: 15px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
    background: #fff;
}

.sf-dropdown-selected i{
  transition:.3s ease;
      font-size: 12px;
}

.sf-custom-dropdown.active .sf-dropdown-selected i{
  transform:rotate(180deg);
}

.sf-dropdown-options{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  border:1px solid #ddd;
  border-radius:16px;
  margin-top:8px;
  list-style:none;
  display:none;
  z-index:99;
  max-height:220px;
  overflow-y:auto;
}

.sf-custom-dropdown.active .sf-dropdown-options{
  display:block;
}

.sf-dropdown-options li{
  padding:13px 15px;
  cursor:pointer;
}

.sf-dropdown-options li:hover{
  background:#f5f5f5;
}

.sf-hire-popup-left span.favicon-after-span {
    width: 70px;
    height: 70px;
}
.sf-hire-popup-left .sf-profile-page__logo img {
    width: 50px;
}
img.sf-profile-page__logo-inner {
    width: 50px;
    /* width: 40px; */
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
}
/* ===========================
   HIRE BY EXPERTISE
=========================== */

.expert-filter-section{
  text-align:center;
  margin-bottom:50px;
}

.expert-filter-tag{
  display:inline-block;
  color:#3b82f6;
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:12px;
}

.expert-filter-title{
  font-size:34px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

.expert-filter-desc{
  max-width:700px;
  margin:auto;
  color:#b8c0cc;
  line-height:1.7;
  margin-bottom:30px;
}

.expert-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.expert-chip{
  border:none;
  cursor:pointer;
  padding:12px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:14px;
  font-weight:500;
  transition:.35s ease;
}

.expert-chip:hover{
  transform:translateY(-2px);
  border-color:#3b82f6;
}

.expert-chip.active{
  background:linear-gradient(
    135deg,
    #2563eb,
    #0ea5e9
  );

  border-color:transparent;

  box-shadow:
  0 0 25px rgba(37,99,235,.35);
}


.sf-experts-grid{
    display:grid;
    /* grid-template-columns:1fr 1fr; */
    gap:10px;
    margin-top:12px;
}

.sf-expert-card{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    border:1px solid #e6eaf0;
    border-radius:12px;
    background:#fff;
}

.sf-expert-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background: linear-gradient(135deg, #060816, #0b1638);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
}

.sf-expert-info h5{
      margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.sf-expert-info span{
    display:block;
    margin-top:3px;
    font-size:11px;
    line-height:1.4;
    color:#6b7280;
}

.sf-expert-info a{
      display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #4ea3ff;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
}
.sf-experts-section {
    margin-top: 15px;
}
h4.sf-experts-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.dev-icon-box{
    width:48px;
    height:48px;
    margin:0 auto 12px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(0,122,255,.12);
    border:1px solid rgba(0,122,255,.25);

    color:#4ea1ff;
    font-size:22px;
}

@media(max-width:768px){
    .sf-experts-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

  .expert-filter-title{
    font-size:26px;
  }

  .expert-filter-desc{
    font-size:14px;
  }

  .expert-chip{
    padding:10px 18px;
    font-size:13px;
  }

}


/* ===========================
   HIRE BY EXPERTISE
=========================== */

.expert-filter-section{
    text-align:center;
    margin-bottom:65px;
}

.expert-filter-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(59,130,246,.12);
    border:1px solid rgba(59,130,246,.30);
    color:#60a5fa;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.expert-filter-title{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
    line-height:1.2;
}

.expert-filter-desc{
    max-width:650px;
    margin:auto;
    color:#9ca3af;
    line-height:1.8;
    font-size:15px;
    margin-bottom:35px;
}

.expert-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.expert-chip{
    border:none;
    cursor:pointer;
    padding:14px 24px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-size:14px;
    font-weight:500;
    transition:all .35s ease;
    backdrop-filter:blur(10px);
}

.expert-chip:hover{
    transform:translateY(-3px);
    border-color:#3b82f6;
    box-shadow:0 0 15px rgba(59,130,246,.15);
}

.expert-chip.active{
    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );

    border-color:transparent;

    box-shadow:
    0 0 25px rgba(37,99,235,.40),
    0 0 50px rgba(14,165,233,.20);

    transform:translateY(-2px);
}

@media(max-width:768px){

    .expert-filter-section{
        margin-bottom:50px;
    }

    .expert-filter-title{
        font-size:28px;
    }

    .expert-filter-desc{
        font-size:14px;
        padding:0 15px;
    }

    .expert-filters{
        gap:10px;
    }

    .expert-chip{
        padding:11px 18px;
        font-size:13px;
    }
}


/* ===========================
   EXPERT DROPDOWN
=========================== */

.expert-dropdown{
    position:relative;
    width:365px;
    margin:30px auto 0;
}

.expert-dropdown-btn{
    width:100%;
    height:62px;
    border:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 22px;

    color:#fff;
    font-size:15px;
    font-weight:500;

    border-radius:16px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.35s ease;
}

.expert-dropdown-btn:hover{
    border-color:#3b82f6;

    box-shadow:
    0 0 20px rgba(59,130,246,.12);
}

.selected-filter{
    font-weight:900;
}

.dropdown-chevron{
    font-size:13px;
    transition:.35s ease;
}

.expert-dropdown.active .dropdown-chevron{
    transform:rotate(180deg);
}

.expert-dropdown-menu{

    position:absolute;

    top:75px;
    left:0;

    width:100%;

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    max-height:0;

    opacity:0;

    visibility:hidden;

    transition:
    max-height .45s ease,
    opacity .3s ease;

    z-index:5;
    transform:translateY(10px);
}

.expert-dropdown.active .expert-dropdown-menu{

    max-height:455px;

    opacity:1;

    visibility:visible;

    overflow-y:auto;
     transform:translateY(0);
}

/* SCROLLBAR */

.expert-dropdown-menu::-webkit-scrollbar{
    width:0px;
}

.expert-dropdown-menu::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:50px;
}

/* LABELS */

.expert-dropdown .dropdown-label{
    padding:14px 20px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#60a5fa;
    background:rgba(255,255,255,.03);
    text-align: left;
}

/* ITEMS */

.expert-dropdown .dropdown-item{
    padding:15px 20px;
    cursor:pointer;
    color:#fff;
    font-size:14px;
        text-align: left;
    transition:.25s ease;
}

.expert-dropdown .dropdown-item:hover{
    background:rgba(37,99,235,.15);
    padding-left:32px;
}

.expert-dropdown .dropdown-item.active{
    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );
    color:#fff;
    border-left:4px solid #fff;
}

/* MENU ANIMATION */

.expert-dropdown .expert-dropdown-menu{
    transform:translateY(10px);
}

.expert-dropdown.active .expert-dropdown-menu{
    transform:translateY(0);
}

/* DIVIDER */

.expert-dropdown .dropdown-divider{
    height:1px;
    background:rgba(255,255,255,.08);
}
/* MOBILE */


.dev-sub-role{
  display:block;
  font-size:11px;
  font-weight:500;
  color:#9ea7b8;
  margin-top:2px;
  margin-bottom:10px;
  letter-spacing:.4px;
}
.dev-role{
   display:block;
}

.dev-sub-role{
   display:block;
}

@media(max-width:768px){

    .expert-dropdown{
        width:100%;
    }

    .expert-dropdown-btn{
        height:58px;
        font-size:14px;
    }

}



/* ===================================
CONTACT FORM MAIN
=================================== */

.contact-form-main{
padding:80px 5%;
position:relative;
}

.contact-form-main__wrapper{
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items:flex-start;
    max-width: 1150px;


}
.contact-form-main__content {
    position: sticky;
    top: 90px;
}

/* ===================================
LEFT SIDE
=================================== */

.contact-form-main__badge{


display:inline-flex;

padding:12px 22px;

border-radius:100px;

background:#edf5ff;

border:1px solid #d9eaff;

color:#0d6efd;

font-size:13px;

font-weight:600;

letter-spacing:.8px;


}

.contact-form-main__title{

    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 14px;


}

.contact-form-main__title span{


    color: #2563eb;


}

.contact-form-main__desc{


max-width:600px;

font-size:18px;

line-height:1.9;

color:#667085;


}

.contact-form-main__trust{


margin-top:35px;

display:flex;

flex-direction:column;

gap:15px;


}

.trust-item{


display:flex;

align-items:center;

gap:12px;

color:#344054;

font-weight:500;

font-size:16px;


}

/* ===================================
FORM CARD
=================================== */

.contact-form-main__form-wrapper{


background:#fff;

padding:40px;

border-radius:28px;

border:1px solid #e4e7ec;

box-shadow:
0 20px 50px rgba(16,24,40,.08);


}

.contact-form-main__form{


display:flex;

flex-direction:column;

gap:18px;


}

/* ===================================
FIELDS
=================================== */

.contact-form-main__group{


display:flex;

flex-direction:column;

gap:8px;

transition:.4s ease;


}

.contact-form-main__group label{


font-size:16px;

font-weight:600;

color:#111827;


}

.contact-form-main__group input,
.contact-form-main__group textarea{


width:100%;

border:1px solid #d0d5dd;

border-radius:16px;

padding:18px 20px;

font-size:15px;

outline:none;

transition:.3s;


}

.contact-form-main__group input:focus,
.contact-form-main__group textarea:focus{


border-color:#0077ff;

box-shadow:
0 0 0 4px rgba(0,119,255,.10);


}

.contact-form-main__group textarea{


resize:none;

min-height:160px;


}

.contact-form-main__group input::placeholder,
.contact-form-main__group textarea::placeholder{


color:#98a2b3;


}

/* ===================================
SERVICE OPTIONS
=================================== */

.contact-form-main__services{


display:grid;

grid-template-columns:
repeat(2,1fr);

gap:12px;


}

.service-option{


border:1px solid #d0d5dd;

background:#fff;

border-radius:14px;

padding:16px;

cursor:pointer;

transition:.3s;

font-size:14px;

font-weight:500;

color:#344054;


}

.service-option:hover{


border-color:#0077ff;

transform:translateY(-2px);


}

.service-option.active{


background:
linear-gradient(
90deg,
#0077ff,
#5b63ff
);

color:#fff;

border:none;


}

/* ===================================
VALIDATION
=================================== */

.contact-error{


    min-height: 18px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;


}

/* ===================================
SECURITY TEXT
=================================== */

.contact-form-main__secure{


font-size:14px;

color:#667085;


}

/* ===================================
BUTTON
=================================== */

.contact-form-main__btn{


height:60px;

border:none;

border-radius:16px;

cursor:pointer;

font-size:16px;

font-weight:600;

color:#fff;

background:
linear-gradient(
90deg,
#0077ff,
#5b63ff
);

transition:.3s;


}

.contact-form-main__content {
    position: sticky;
    top: 30px;
}

.contact-form-main__btn:hover{

    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 119, 255, .25);
    background: #fff;
    color: #2563eb;
    border: 1px solid #2563eb;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;


}

.contact-form-main__services{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.service-option{

    padding:12px 18px;

    border-radius:999px;

    border:1px solid #d0d5dd;

    background:#fff;

    cursor:pointer;

    font-size:14px;

    font-weight:500;

    color:#344054;

    transition:.3s;
}

.service-option:hover{

    border-color:#0077ff;

    color:#0077ff;
}

.service-option.active{

    background:#0077ff;

    border-color:#0077ff;

    color:#fff;
        background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
}
.contact-form-main__secure{

    margin:10px 0 20px;

    display:flex;

    align-items:center;

    gap:8px;

    color:#667085;

    font-size:14px;
}
.contact-form-main__btn{

       width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #0077ff, #5b63ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    background-image: linear-gradient(339deg, #595959 0%, #006aca 100%);
     font-family: 'Poppins', sans-serif;
}
.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:#344054;

    font-weight:500;

    font-size:17px;

    line-height:1.6;
}
.contact-form-main__desc{

    max-width:620px;

    font-size:18px;

    line-height:1.7;

    color:#667085;
}

/* ===================================
SHOW / HIDE
=================================== */

.hidden{
display:none !important;
}

/* ===================================
FIELD ANIMATION
=================================== */

.contact-form-main__group{


animation:fadeField .4s ease;


}

@keyframes fadeField{


from{

    opacity:0;
    transform:translateY(20px);
}

to{

    opacity:1;
    transform:translateY(0);
}


}


span.contact-form-main__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #006aca;
    background: rgba(0, 106, 202, 0.1);
    margin-bottom: 16px;
    border: 1px solid #006aca;
}
.contact-form-main__desc {
    max-width: 100%;
}


.contact-form-main__group span.star {
    color: red;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1100px){


.contact-form-main__wrapper{

    grid-template-columns:1fr;

    gap:60px;
}

.contact-form-main__title{

    font-size:48px;
}
.contact-form-main__content {
    position: unset;
    text-align: center;
}
.contact-form-main__trust {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}


}

@media(max-width:768px){


.contact-form-main{

    padding:80px 20px;
}

.contact-form-main__title{

    font-size:36px;
}

.contact-form-main__desc{

    font-size:16px;
}

.contact-form-main__form-wrapper{

    padding:25px;
}

.contact-form-main__services{

    grid-template-columns:1fr;
}


}


.contact-popup{

    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);

    z-index:999999;

    opacity:1;
    visibility:visible;

    transition:.35s ease;
}

.contact-popup.hidden{

    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.contact-popup__box{

    width:min(92%,500px);

    background:linear-gradient(
        180deg,
        #071328,
        #0a1b3f
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 35px;

    text-align:center;

    box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 40px rgba(37,99,235,.25);

    transform:translateY(25px) scale(.95);

    transition:.35s ease;
}

.contact-popup:not(.hidden) .contact-popup__box{

    transform:translateY(0) scale(1);
}

.contact-popup__icon{

    width:90px;
    height:90px;

    margin:auto auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:42px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );

    box-shadow:
    0 0 35px rgba(37,99,235,.5);
}

.contact-popup__title{

    color:#fff;

    font-size:32px;
    font-weight:700;

    margin-bottom:12px;
}

.contact-popup__msg{

    color:#b8c5db;

    line-height:1.7;

    font-size:16px;

    margin-bottom:30px;
}

.contact-popup__btn{

    border:none;
    cursor:pointer;

    padding:14px 28px;

    border-radius:999px;

    font-size:15px;
    font-weight:600;

    color:#fff;

    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );

    transition:.3s ease;
}

.contact-popup__btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 30px rgba(37,99,235,.4);
}

/* BADGE */

.contact-popup__badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;

    color:#7dd3fc;

    background:rgba(14,165,233,.12);

    border:1px solid rgba(14,165,233,.2);

    margin-bottom:25px;
}

.contact-popup__badge i{

    font-size:12px;
}


/* ICON */

.contact-popup__icon{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:40px;

    color:#fff;

    background:linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );

    box-shadow:
    0 0 40px rgba(37,99,235,.45);

    animation:successPop .6s ease;
}

.contact-popup__icon i{

    color:#fff;
}


/* ANIMATIONS */

@keyframes popupShow{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes successPop{

    0%{
        transform:scale(.5);
        opacity:0;
    }

    70%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

.contact-popup__title{

    font-size:42px;
    line-height:1.2;

    max-width:420px;

    margin:0 auto 18px;
}

.contact-popup__btn{

    min-width:180px;
}





/* ===========================
   HEALTHCARE HERO
=========================== */

.healthcare-hero-main {
    position: relative;
    min-height: 100vh;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
        padding-bottom: 80px;
}

.healthcare-bg-image{
 .healthcare-bg-image{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.82) 40%,
        rgba(0,0,0,.75) 100%
    ),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?w=2000&auto=format&fit=crop");

    background-size:cover;
    background-position:center;
        background-attachment: fixed;
    filter:blur(2px);
}
}

/* GRID PATTERN */

.healthcare-grid-pattern{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    z-index:1;
}

/* Content Layer */

.healthcare-hero-container{
    position:relative;
    z-index:3;
}

/* BLUE GLOW */

.healthcare-hero-main::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: #006aca;
    border-radius: 50%;
    filter: blur(250px);
    opacity: .18;
}

.healthcare-hero-main::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -150px;
    background: #006aca;
    border-radius: 50%;
    filter: blur(200px);
    opacity: .15;
}

/* CONTAINER */

.healthcare-hero-container {
    width: 95%;
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: center;

    position: relative;
    z-index: 2;
}

/* =========================================
   HEALTHCARE HERO PREMIUM UPGRADE
========================================= */

.healthcare-hero-main{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    background:#050505;
    
}

/* Background Image */

.healthcare-bg-image{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(
        90deg,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.85) 35%,
        rgba(0,0,0,.55) 100%
    ),
    /* url("https://img.magnific.com/premium-photo/doctor-presenting-digital-healthcare-network-futuristic-medical-technology-concept_1132312-11578.jpg?w=1480"); */
    /* url("https://img.magnific.com/free-photo/stethoscope-clean-table-doctor-work-tool-generative-ai_188544-12525.jpg?t=st=1781770033~exp=1781773633~hmac=63fc56712f141b94e237004535b3b9f4ce41008269ec88287b5f73765d30cf1b&w=1480"); */
    /* url("https://img.magnific.com/premium-photo/close-up-male-hand-pointing-creative-polygonal-medical-interface-hologram-blurry-background-online-healthcare-cardiology-technology-concept-double-exposure_670147-4852.jpg?w=1480"); */
    /* url("https://img.magnific.com/free-vector/gradient-world-health-day-background_23-2149309101.jpg?t=st=1781776014~exp=1781779614~hmac=5f785c6963394dee1c005bc8d2a157111c9939081d143a5a75ba2ee22206bb76&w=1480"); */
    /* url("https://img.magnific.com/premium-photo/online-medical-healthcare-image_488220-9391.jpg?w=1480"); */
    url("https://img.magnific.com/premium-photo/close-up-businessman-hand-pointing-tablet-with-creative-polygonal-medical-interface-hologram-blurry-hospital-office-interior-background-online-healthcare-cardiology-technology-concept_670147-5814.jpg?w=1480");
    /* url("https://img.magnific.com/premium-photo/doctor-using-computer-document-management-system-dms-online-documentation-database-process-automation-efficiently-manage-files_10541-9811.jpg?w=1060"); */

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
        background-attachment: fixed;

    z-index:0;
    
    filter: blur(3px);
}

/* Grid Pattern */

.healthcare-grid-pattern{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    z-index:1;
}

/* Content Layer */

.healthcare-hero-container{
    position:relative;
    z-index:3;
}

/* Big Medical Cross */

.healthcare-hero-content{
    position:relative;
}



/* Heading Glow */

.healthcare-hero-content h1{
    text-shadow:
        0 0 20px rgba(0,106,202,.15);
}

/* Blue Line */

.healthcare-line{
    box-shadow:
        0 0 25px rgba(0,106,202,.6);
}

/* Gallery Glow */

.healthcare-hero-gallery{
    position:relative;
}

.healthcare-hero-gallery::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#006aca;

    filter:blur(180px);

    /* opacity:.18; */
    opacity:0;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    z-index:-1;
}

/* Premium Images */

.healthcare-track img{

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 1px rgba(0,106,202,.15),
        0 0 35px rgba(0,106,202,.12);

    transition:.5s ease;
}

.healthcare-track img:hover{

    transform:scale(1.04);

    box-shadow:
        0 0 0 1px rgba(0,106,202,.3),
        0 0 60px rgba(0,106,202,.4);
}

/* Floating Glow Orb */

.healthcare-hero-main::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    top:50%;

    transform:translateY(-50%);

    background:#006aca;

    border-radius:50%;

    filter:blur(250px);

    opacity:.12;

    z-index:0;
}

.healthcare-hero-main::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-150px;
    top:-100px;

    background:#006aca;

    border-radius:50%;

    filter:blur(180px);

    opacity:.12;

    z-index:0;
}


/* LEFT */

.healthcare-tag {
    color: #006aca;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.healthcare-hero-content h1 {
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.healthcare-hero-content h1 span {
    color: #006aca;
}

.healthcare-line {
    width: 100px;
    height: 4px;
    background: #006aca;
    margin-bottom: 20px;
}

.healthcare-hero-content p {
      max-width: 720px;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.healthcare-hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.healthcare-btn-primary {
    background: linear-gradient(135deg,#006aca,#0b8fff);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 600;
    transition: .4s;
}

.healthcare-btn-primary:hover {
    transform: translateY(-4px);
}

.healthcare-btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 14px;
    transition: .4s;
}

.healthcare-btn-secondary:hover {
    background: rgba(255,255,255,.05);
}

.healthcare-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.healthcare-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.healthcare-trust i {
    color: #006aca;
}

.healthcare-trust span {
    color: #fff;
    font-size: 15px;
}

/* RIGHT */

.healthcare-hero-gallery {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    height: 670px;
    overflow: hidden;
}



.healthcare-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.healthcare-grid-pattern{
    opacity:.25;
}

.healthcare-track img {
     height:340px;
    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.45),
    0 0 25px rgba(0,106,202,.08);

    transition:.5s ease;

}

.healthcare-track img:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 50px rgba(0,106,202,.25);
}

/* PREMIUM FADE EFFECT */

.healthcare-slider{
    position:relative;
    overflow:hidden;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
    );
}





.healthcare-track img{
    border-radius:24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 20px rgba(0,106,202,.08);
}

/* SLIDER ANIMATION */

.healthcare-slider-up .healthcare-track {
    animation: healthcareUp 35s linear infinite;
}

.healthcare-slider-down .healthcare-track {
    animation: healthcareDown 35s linear infinite;
}

@keyframes healthcareUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@keyframes healthcareDown {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

/* IMAGE FADE TOP BOTTOM */





/* RESPONSIVE */

@media(max-width:1200px){

    .healthcare-hero-content h1{
        font-size:70px;
    }

    .healthcare-hero-gallery{
        height:700px;
    }

}

@media(max-width:991px){

    .healthcare-hero-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .healthcare-hero-content{
        text-align:center;
    }

    .healthcare-line{
        margin:auto auto 30px;
    }

    .healthcare-hero-btns,
    .healthcare-trust{
        justify-content:center;
    }

    .healthcare-hero-content h1{
        font-size:58px;
    }

    .healthcare-hero-gallery{
        height:550px;
    }
}

@media(max-width:576px){

    .healthcare-hero-main{
        padding:100px 0 60px;
    }

    .healthcare-hero-content h1{
        font-size:42px;
    }

    .healthcare-hero-content p{
        font-size:17px;
        line-height:1.8;
    }

    .healthcare-hero-gallery{
        grid-template-columns:1fr 1fr;
        gap:15px;
        height:420px;
    }

    .healthcare-track img{
        height:180px;
    }

    .healthcare-btn-primary,
    .healthcare-btn-secondary{
        width:100%;
        text-align:center;
    }
}


/* ==========================
WHY CHOOSE SOFTFLIX
========================== */

.healthcare-why-main{
    padding:120px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.healthcare-why-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.healthcare-why-heading{
    text-align:center;
    max-width:900px;
    margin:auto auto 70px;
}

.healthcare-section-tag{
    color:#006aca;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:20px;
}

.healthcare-why-heading h2{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

.healthcare-why-heading h2 span{
    color:#006aca;
}

.healthcare-why-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}


.healthcare-feature-card{
    position:relative;
}

.healthcare-feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#006aca;
    transform:scaleX(0);
    transition:.4s;
}

.healthcare-feature-card:hover::before{
    transform:scaleX(1);
}

.healthcare-stat-box{
    padding:40px;
    display:flex;
    align-items:center;
    gap:20px;
}

.healthcare-stat-box:not(:last-child){
    border-right:1px solid #e2e8f0;
}

.stat-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#006aca,#0b8fff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 15px 30px rgba(0,106,202,.25);
}

.healthcare-stat-box h3{
    font-size:40px;
    color:#006aca;
    font-weight:800;
    margin:0;
}

.healthcare-stat-box h4{
    font-size:22px;
    margin:5px 0;
    color:#0f172a;
}

.healthcare-stat-box p{
    color:#64748b;
    margin:0;
}

/* FEATURES */

.healthcare-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.healthcare-feature-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    position:relative;
    transition:.4s;
    overflow:hidden;
}

.healthcare-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,106,202,.12);
}

.feature-number{
    position:absolute;
    top:25px;
    right:30px;
    font-size:60px;
    font-weight:800;
    color:#edf2f7;
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#006aca,#0b8fff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.healthcare-feature-card h3{
    font-size:28px;
    color:#0f172a;
    margin-bottom:15px;
}

.healthcare-feature-card p{
    color:#64748b;
    line-height:1.8;
}
.healthcare-stat-box{
    transition:.4s ease;
}

.healthcare-stat-box:hover{
    transform:translateY(-8px);
}

.healthcare-feature-card{
    transition:.4s ease;
}

.healthcare-feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,106,202,.12);

    border-color:#006aca;
}

.feature-icon{
    transition:.4s ease;
}

.healthcare-feature-card:hover .feature-icon{

    transform:scale(1.08) rotate(5deg);
}
/* RESPONSIVE */

@media(max-width:991px){

    .healthcare-stats-row{
        grid-template-columns:1fr;
    }

    .healthcare-stat-box{
        border-right:none !important;
        border-bottom:1px solid #e2e8f0;
    }

    .healthcare-feature-grid{
        grid-template-columns:1fr;
    }

    .healthcare-why-heading h2{
        font-size:46px;
    }
    .healthcare-tabs-nav {
    position: static !important;
}
}

@media(max-width:576px){

    .healthcare-why-heading h2{
        font-size:34px;
    }

    .healthcare-feature-card{
        padding:25px;
    }
    .healthcare-panel-stats {
 
    grid-template-columns: unset !important;
  
}
}



/* ==========================
   HEALTHCARE SOLUTIONS
========================== */

.healthcare-solutions-main{
      position:relative;
    padding:140px 0;
    /* overflow:hidden; */

    background:
    radial-gradient(circle at top left,
    rgba(0,106,202,.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(0,198,255,.08),
    transparent 35%),

    #f8fbff;
}

.healthcare-grid-bg{
     position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(0,106,202,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,106,202,.04) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.7;

    animation:gridMove 25s linear infinite;

    pointer-events:none;
}

.healthcare-solutions-main::before{
     content:"";
    position:absolute;

    width:600px;
    height:600px;

    left:-250px;
    top:-250px;

    border-radius:50%;

    background:#006aca;

    opacity:.08;

    filter:blur(180px);

    animation:glowMove 10s ease-in-out infinite;
}

.healthcare-solutions-main::after{
      content:"";
    position:absolute;

    width:500px;
    height:500px;

    right:0px;
    bottom:-180px;

    border-radius:50%;

    background:#00c6ff;

    opacity:.08;

    filter:blur(160px);

    animation:glowMove 12s ease-in-out infinite;
}

.healthcare-solutions-container{
    width:90%;
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    align-items:start;

    position:relative;
    z-index:2;
}

/* LEFT */

.healthcare-solutions-left{
   position:sticky;
    top:120px;
    align-self:start;
}
/* .healthcare-solutions-left::before{
    content:"HEALTH";

    position:absolute;

    left:-20px;
    top:-150px;

    font-size:120px;

    font-weight:900;

    color:#006aca;

    opacity:.03;

    z-index:-1;

    pointer-events:none;
} */

.healthcare-section-tag{
       display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #006aca;
    background: rgba(0, 106, 202, 0.1);
    margin-bottom: 16px;
    border: 1px solid #006aca;
}

.healthcare-solutions-left h2{
    font-size:52px;
    line-height:1.05;
    font-weight:800;

    color:#111827;

    margin-bottom:25px;
}

.healthcare-solutions-left h2 span{
    color:#006aca;
}

.healthcare-solutions-left p{
    font-size:18px;
    line-height:1.8;

    color:#64748b;

    margin-bottom:40px;
}

/* STATS */

.healthcare-solution-highlights{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.healthcare-solution-highlights div{
    background:#fff;

    border:1px solid #dbe5f0;

    border-radius:20px;

    padding:22px;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.healthcare-solution-highlights div:hover{
    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,106,202,.12);
}

.healthcare-solution-highlights h3{
    color:#006aca;

    font-size:34px;
    font-weight:800;

    margin-bottom:5px;
}

.healthcare-solution-highlights span{
    color:#64748b;
    font-size:14px;
}

/* RIGHT */

.healthcare-solutions-right{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* CARD */

.healthcare-solution-card{
        position:relative;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(0,106,202,.08);

    transition:.5s ease;

    box-shadow:
    0 20px 50px rgba(15,23,42,.06);
}

.healthcare-solution-card:hover{
     transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,106,202,.18);
}

/* IMAGE */

.healthcare-solution-card img{
    width:100%;
    height:280px;

    object-fit:cover;

    transition:.6s ease;
}

.healthcare-solution-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.solution-content{
    padding:30px;
}

.solution-content span{
    display:flex;

    align-items:center;
    justify-content:center;

    width:55px;
    height:55px;

    border-radius:50%;

    background:#eef6ff;

    color:#006aca;

    font-size:18px;
    font-weight:700;

    margin-bottom:18px;
}

.solution-content h3{
    font-size:30px;
    font-weight:700;

    color:#111827;

    margin-bottom:15px;
}

.solution-content p{
    color:#64748b;

    line-height:1.8;
    font-size:16px;
}

/* FLOATING EFFECT */

.healthcare-solution-card:nth-child(1){
    animation:floatCard 6s ease-in-out infinite;
}

.healthcare-solution-card:nth-child(2){
    animation:floatCard 6s ease-in-out infinite 1s;
}

.healthcare-solution-card:nth-child(3){
    animation:floatCard 6s ease-in-out infinite 2s;
}

.healthcare-solution-card:nth-child(4){
    animation:floatCard 6s ease-in-out infinite 3s;
}

@keyframes floatCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}
@keyframes glowMove{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-30px);
    }
}

@keyframes gridMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(60px);
    }
}
/* RESPONSIVE */

@media(max-width:1100px){

    .healthcare-solutions-container{
        grid-template-columns:1fr;
    }

    .healthcare-solutions-left{
        position:relative;
        top:auto;
    }

    .healthcare-solutions-left h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .healthcare-solutions-main{
        padding:90px 0;
    }

    .healthcare-solutions-left h2{
        font-size:38px;
    }

    .healthcare-solution-card img{
        height:220px;
    }

    .solution-content{
        padding:25px;
    }

    .solution-content h3{
        font-size:24px;
    }
}

/* ==========================
   CARD CONTENT UPGRADE
========================== */

.solution-content{
    padding:32px;
}

.solution-content span{
    display:flex;
    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    border-radius:50%;

    background:#eef6ff;
    color:#006aca;

    font-size:16px;
    font-weight:700;

    margin-bottom:20px;
}

.solution-content h3{
    font-size:28px;
    font-weight:700;
    color:#111827;

    margin-bottom:12px;
}

.solution-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

/* FEATURE LIST */

.solution-features{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.solution-features li{
    position:relative;

    padding-left:22px;
    margin-bottom:10px;

    color:#475569;
    font-size:15px;
    font-weight:500;
}

.solution-features li::before{
    content:"";

    position:absolute;
    left:0;
    top:8px;

    width:8px;
    height:8px;

    border-radius:50%;
    background:#006aca;

    box-shadow:0 0 12px rgba(0,106,202,.5);
}

/* CTA */

.solution-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#006aca;
    font-size:15px;
    font-weight:700;

    text-decoration:none;

    transition:.35s ease;
}

.solution-link i{
    transition:.35s ease;
}

.solution-link:hover{
    color:#004f97;
}

.solution-link:hover i{
    transform:translateX(6px);
}

/* CARD PREMIUM EFFECT */

.healthcare-solution-card{
    position:relative;
}

.healthcare-solution-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #006aca,
        #00c6ff
    );

    opacity:0;

    transition:.4s;
}

.healthcare-solution-card:hover::before{
    opacity:1;
}

/* IMAGE OVERLAY */

.healthcare-solution-card img{
    display:block;
}

.healthcare-solution-card .solution-image,
.healthcare-solution-card{
    overflow:hidden;
}

.healthcare-solution-card img{
    transition:.8s ease;
}

.healthcare-solution-card:hover img{
    transform:scale(1.08);
}

/* HOVER GLOW */

.healthcare-solution-card:hover{
    border-color:rgba(0,106,202,.25);

    box-shadow:
    0 25px 60px rgba(0,106,202,.12),
    0 10px 30px rgba(15,23,42,.08);
}

/* FEATURE ICON NUMBER GLOW */

.solution-content span{
    box-shadow:
    0 10px 25px rgba(0,106,202,.15);
}

/* RESPONSIVE */

@media(max-width:768px){

    .solution-content{
        padding:25px;
    }

    .solution-content h3{
        font-size:22px;
    }

    .solution-features li{
        font-size:14px;
    }

    .solution-link{
        font-size:14px;
    }
}


/* ==========================
   HEALTHCARE PROCESS
========================== */

.healthcare-process-main{
    position:relative;
    padding:140px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(0,106,202,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(0,198,255,.08),
    transparent 35%),

    #f8fbff;
}

.healthcare-process-main::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    top:-200px;
    left:-200px;

    border-radius:50%;

    background:#006aca;

    opacity:.08;

    filter:blur(180px);
}

.healthcare-process-main::after{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    bottom:-200px;
    right:-200px;

    border-radius:50%;

    background:#00c6ff;

    opacity:.08;

    filter:blur(180px);
}

.healthcare-process-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    position:relative;
    z-index:2;
}

/* HEADING */

.healthcare-process-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:80px;
}

.healthcare-process-heading h2{
    font-size:48px;
    line-height:1.1;
    font-weight:800;

    color:#111827;

    margin-bottom:20px;
}

.healthcare-process-heading h2 span{
    color:#006aca;
}

.healthcare-process-heading p{
    font-size:18px;
    line-height:1.8;

    color:#64748b;
}

/* GRID */

.healthcare-process-grid{
    position:relative;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.healthcare-process-grid::before{
    content:"";

    position:absolute;

    top:50%;
    left:0;
    right:0;

    height:2px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #006aca,
    transparent);

    opacity:.20;

    z-index:0;
}

/* CARD */

.healthcare-process-card{
    position:relative;

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid #dbe5f0;

    overflow:hidden;

    transition:.4s ease;

    z-index:2;

    box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.healthcare-process-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #006aca,
    #00c6ff);
}

.healthcare-process-card:hover{
    transform:translateY(-10px);

    border-color:#006aca;

    box-shadow:
    0 25px 60px rgba(0,106,202,.15);
}

/* NUMBER */

.process-number{
      position: absolute;
    top: 12%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 900;
    color: #006aca;
    opacity: .05;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* TEXT */

.healthcare-process-card h3{
    position:relative;
    z-index:2;

    font-size:24px;
    font-weight:700;

    color:#111827;

    margin-bottom:15px;
}

.healthcare-process-card p{
    position:relative;
    z-index:2;

    font-size:16px;
    line-height:1.8;

    color:#64748b;
}

/* FLOAT EFFECT */

.healthcare-process-card:nth-child(1){
    animation:floatProcess 6s ease-in-out infinite;
}

.healthcare-process-card:nth-child(2){
    animation:floatProcess 6s ease-in-out infinite .5s;
}

.healthcare-process-card:nth-child(3){
    animation:floatProcess 6s ease-in-out infinite 1s;
}

.healthcare-process-card:nth-child(4){
    animation:floatProcess 6s ease-in-out infinite 1.5s;
}

.healthcare-process-card:nth-child(5){
    animation:floatProcess 6s ease-in-out infinite 2s;
}

.healthcare-process-card:nth-child(6){
    animation:floatProcess 6s ease-in-out infinite 2.5s;
}

@keyframes floatProcess{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

/* RESPONSIVE */

@media(max-width:1100px){

    .healthcare-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .healthcare-process-grid::before{
        display:none;
    }

    .healthcare-process-heading h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .healthcare-process-main{
        padding:90px 0;
    }

    .healthcare-process-grid{
        grid-template-columns:1fr;
    }

    .healthcare-process-heading h2{
        font-size:34px;
    }

    .healthcare-process-card{
        padding:30px;
    }

    .process-number{
        font-size:60px;
        right:15px;
    }
}



.healthcare-ecosystem-main{
    padding:140px 0;
    background:#ffffff;
}

.healthcare-ecosystem-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.healthcare-ecosystem-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.healthcare-ecosystem-heading h2{
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    /* margin: 15px 0; */
    line-height: 1.3;
}

.healthcare-ecosystem-heading h2 span{
    color:#006aca;
}

.healthcare-ecosystem-heading p{
    color:#64748b;
    line-height:1.8;
}

.healthcare-tabs-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
}

.healthcare-tabs-nav{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.healthcare-tab-btn{
    border:none;
    background:#fff;
    border:1px solid #dbe5f0;
    border-radius:18px;
    padding:20px 25px;
    text-align:left;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s ease;
}

.healthcare-tab-btn:hover{
    border-color:#006aca;
    transform:translateX(8px);
}

.healthcare-tab-btn.active{
    background:#006aca;
    color:#fff;
    border-color:#006aca;
    box-shadow:0 15px 40px rgba(0,106,202,.25);
}



.healthcare-tab-panel{
    display:none;
}

.healthcare-tab-panel.active{
    display:block;
    animation:fadeContent .5s ease;
}

.healthcare-tab-panel h3{
    font-size:34px;
    margin-bottom:20px;
    color:#111827;
}

.healthcare-tab-panel p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:30px;
    max-width:700px;
}

.healthcare-feature-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.healthcare-feature-tags span{
    background:#fff;
    border:1px solid #dbe5f0;
    border-radius:50px;
    padding:12px 18px;
    font-weight:600;
    color:#111827;
}

@keyframes fadeContent{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){

    .healthcare-tabs-wrapper{
        grid-template-columns:1fr;
    }

    .healthcare-tabs-nav{
        flex-direction:row;
        overflow:auto;
    }

    .healthcare-tab-btn{
        white-space:nowrap;
    }
}

.healthcare-panel-stats{
    display:flex;
    gap:15px;
    margin:30px 0;
}

.healthcare-mini-stat{
    flex:1;
    background:#fff;
    border:1px solid #dbe5f0;
    border-radius:14px;
    padding:18px;
    text-align:center;
    transition:.3s;
}

.healthcare-mini-stat:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,106,202,.10);
}

.healthcare-mini-stat h4{
    font-size:22px;
    font-weight:800;
    color:#006aca;
    margin-bottom:5px;
}

.healthcare-mini-stat span{
    font-size:13px;
    color:#64748b;
}
/* ==========================
   HEALTHCARE TECH STACK
========================== */

.healthcare-tech-main{
    padding:120px 0;
    overflow:hidden;
    position:relative;

    background:
    linear-gradient(
    135deg,
    #021428,
    #05254a
    );
}

.healthcare-tech-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.healthcare-tech-heading{
    text-align:center;
    margin-bottom:70px;
}

.healthcare-tech-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
}

.healthcare-tech-heading h2 span{
    display:block;
    color:#1ea5ff;
}

.healthcare-tech-heading p{
    color:rgba(255,255,255,.7);
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.healthcare-tech-marquee{
    overflow:hidden;
    margin-bottom:25px;
}

.healthcare-tech-track{
    display:flex;
    gap:20px;
    width:max-content;

    animation:
    healthcareScroll 30s linear infinite;
}

.healthcare-tech-marquee.reverse .healthcare-tech-track{
    animation:
    healthcareScrollReverse 30s linear infinite;
}

.healthcare-tech-track span{
    flex-shrink:0;

    padding:18px 30px;

    border-radius:60px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(10px);

    color:#fff;

    font-weight:600;

    transition:.4s ease;
}

.healthcare-tech-track span:hover{
    transform:translateY(-5px);

    background:#006aca;

    border-color:#006aca;
}

@keyframes healthcareScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@keyframes healthcareScrollReverse{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }
}

@media(max-width:768px){

    .healthcare-tech-main{
        padding:90px 0;
    }

    .healthcare-tech-heading h2{
        font-size:38px;
    }

    .healthcare-tech-track span{
        padding:14px 22px;
        font-size:14px;
    }
}

section.Manifesto.healthcare {
    margin: 0;
}
section.Manifesto.healthcare section.Manifesto {
    padding-bottom: 0;
}


.healthcare-tab-panel{
    background:#fff;
    border:1px solid #dce4ef;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.healthcare-panel-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.healthcare-panel-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#006aca;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.healthcare-panel-label{
    color:#006aca;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.healthcare-panel-top h3{
    margin-top:6px;
    font-size:34px;
    line-height:1.2;
}

.healthcare-panel-description{
    color:#667085;
    line-height:1.8;
    max-width:850px;
    margin-bottom:25px;
}

.healthcare-panel-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:25px;
}

.healthcare-mini-stat{
    padding:20px;
    text-align:center;
    border:1px solid #dce4ef;
    border-radius:16px;
    background:#f8fbff;
}

.healthcare-mini-stat h4{
    color:#006aca;
    font-size:24px;
    margin-bottom:5px;
}

.healthcare-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.healthcare-feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 18px;
    border:1px solid #dce4ef;
    border-radius:14px;
    background:#f8fbff;
}

.healthcare-feature-item i{
    color:#006aca;
}

@media(max-width:768px){

    .healthcare-panel-stats{
        grid-template-columns:1fr;
    }

    .healthcare-feature-grid{
        grid-template-columns:1fr;
    }

    .healthcare-panel-top h3{
        font-size:26px;
    }

    .healthcare-tab-panel{
        padding:25px;
    }
}
.healthcare-panel-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}
.healthcare-tabs-nav {
    position: sticky;
    top: 120px; /* header ki height ke hisaab se adjust kar lena */
    align-self: flex-start;

    display: flex;
    flex-direction: column;
    gap: 12px;
}



/* ===============================
   HEALTHCARE WHY CHOOSE SECTION
================================= */

.healthcare-why-main{
    padding:100px 0;
    background:#f8fbff;
}

.healthcare-why-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* HEADING */

.healthcare-why-heading{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.healthcare-why-heading h2{
    font-size:52px;
    line-height:1.2;
    margin:15px 0;
}

.healthcare-why-heading h2 span{
    color:#006aca;
}

.healthcare-why-heading p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:750px;
    margin:auto;
}

/* STATS */

.healthcare-stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.healthcare-stat-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:20px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.healthcare-stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,106,202,0.15);
}

.healthcare-stat-box .stat-icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#006aca,#31b6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.healthcare-stat-box .stat-icon i{
    color:#fff;
    font-size:30px;
}

.healthcare-stat-box h3{
    font-size:34px;
    color:#006aca;
    font-weight:700;
    margin-bottom:5px;
}

.healthcare-stat-box h4{
    font-size:18px;
    margin-bottom:5px;
}

.healthcare-stat-box p{
    font-size:14px;
    color:#666;
    margin:0;
}

/* FEATURE GRID */

.healthcare-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.healthcare-feature-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.healthcare-feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,106,202,0.15);
}

.healthcare-feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#006aca,#31b6ff);
}

/* FEATURE NUMBER */

.healthcare-feature-card .feature-number{
    position:absolute;
    top:10px;
    right:20px;
    font-size:90px;
    font-weight:800;
    color:rgba(0,106,202,0.05);
    line-height:1;
    pointer-events:none;
}

/* ICON */

.healthcare-feature-card .feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#006aca,#31b6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.healthcare-feature-card .feature-icon i{
    color:#fff;
    font-size:28px;
}

.healthcare-feature-card h3{
    font-size:24px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.healthcare-feature-card p{
    color:#666;
    line-height:1.8;
    position:relative;
    z-index:2;
}

/* RESPONSIVE */

@media(max-width:991px){

    .healthcare-stats-row{
        grid-template-columns:1fr;
    }

    .healthcare-feature-grid{
        grid-template-columns:1fr;
    }

    .healthcare-why-heading h2{
        font-size:38px;
    }

    .healthcare-feature-card .feature-number{
        font-size:70px;
    }
}


.healthcare-process-card{
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e7eef8;
    transition: .3s ease;
    overflow: hidden;
}

.healthcare-process-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.process-number{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(0,106,202,.08);
}

.process-icon{
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg,#006aca,#0d7eff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.process-icon i{
    color:#fff;
    font-size:22px;
}


@media(max-width:991px){
.healthcare-section-tag {
    /* display: block; */
    color: #006aca;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}
.hlthcr {
    text-align: center;
}
    .healthcare-solutions-left h2 {
        text-align: center;
    }
    .healthcare-solutions-left p {
    text-align: center;
}
  
}


@media(max-width:576px){
.healthcare-solutions-main::before
{
  display: none !important;
}
.healthcare-panel-top {
    flex-direction: column;
}


  
}