* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #ffffff;
  color: #000000;
}
.logo img {
  max-width: 180px; /* adjust as needed */
  height: auto;
}


/* BANNER */
.home-banner {
  background: #ffffff;
  padding: 80px 20px;
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.banner-content {
  flex: 1;
}

.banner-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.banner-content p {
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000;
}

.btn-primary {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  /* border-radius: 30px; */
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #333;
}

/* FORM CARD */
.banner-form {
  background: #ffffff;
  color: #000000;
  padding: 35px;
  border-radius: 20px;
  width: 520px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
  font-size: 28px !important;
  line-height: 40px !important;
}

.banner-form label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
  color: #000;
}

.banner-form input,
.banner-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  color: #000;
}

.form-row {
  display: flex;
  gap: 15px;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row select {
  width: 35%;
}

.phone-row input {
  width: 65%;
}

.btn-submit {
  background: #2353d2;
  border: none;
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .banner-content h1 {
    font-size: 38px;
    text-align: center;
  }

  .banner-content p {
    text-align: center;
    margin: auto auto 30px;
  }

  .banner-content {
    text-align: center;
  }

  .banner-form {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 30px;
  }

  .form-row {
    flex-direction: column;
  }

  .phone-row {
    flex-direction: column;
  }

  .phone-row select,
  .phone-row input {
    width: 100%;
  }
}

/* NAVBAR */
.site-header {
  background: #ffffff;
  padding: 25px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #555;
}

/* CTA BUTTON */
.nav-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-btn:hover {
  background: #333;
}

/* MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
}

/* RESPONSIVE NAV */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    width: 260px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .menu-toggle {
    display: flex;
  }
}







/* CLIENT LOGOS SECTION */
.clients-section {
  padding: 80px 20px;
  background: #fff;
}

.clients-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.clients-heading {
  margin-bottom: 40px;
}

.small-title {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.clients-heading h2 {
  font-size: 42px;
  font-weight: 700;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200%); 
  animation: scroll 30s linear infinite;
}

/* LOGO CARD */
.logo-item {
  min-width: 200px;
  height: 90px;
  margin-right: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 1;
  transition: 0.3s;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.formF{
    width: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .formF{
    width: 100%;
}
  .clients-heading h2 {
    font-size: 32px;
  }

  .logo-item {
    min-width: 160px;
    height: 80px;
  }

  .logo-item img {
    max-width: 110px;
  }
  .clients-section{
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    min-width: 140px;
    height: 70px;
  }

  .logo-item img {
    max-width: 100px;
  }
}





/* PROCESS SECTION */
.process-section {
  padding: 80px 20px;
  background: #fff;
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-item {
  border-top: 1px solid #ddd;
  padding: 25px 0;
}

.process-item:last-child {
  border-bottom: 1px solid #ddd;
}

/* HEADER */
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.process-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-number {
  font-size: 22px;
  color: #aaa;
}

.process-title h3 {
  font-size: 26px;
  font-weight: 700;
}

/* TOGGLE */
.toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* CONTENT */
.process-content {
  display: none;
  margin-top: 30px;
  align-items: center;
  gap: 50px;
}

.process-item.active .process-content {
  display: flex;
}

.process-text {
  flex: 1;
}

.process-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.process-text ul {
  margin-bottom: 25px;
  padding-left: 18px;
}

.process-text li {
  margin-bottom: 10px;
}

/* IMAGE */
.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-content {
    flex-direction: column;
  }

  .process-title h3 {
    font-size: 22px;
  }
}




/* 4rth */

.services-section {
  padding: 80px 0px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  margin-bottom: 40px;
  font-size: 22px;
  letter-spacing: 2px;
}

.accordion-wrapper {
  display: flex;
  gap: 16px;
  height: 480px;
}

/* Accordion item */
.accordion-item {
  background: #f5f5f5;
  border-radius: 30px;
  width: 90px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical label */
.accordion-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* Active state */
.accordion-item.active {
  width: 100%;
  flex: 1;
  background: #fff;
}

/* Hide label when active */
.accordion-item.active .accordion-label {
  display: none;
}

/* Content */
.accordion-content {
  display: none;
  height: 100%;
  padding: 40px;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse; /* IMAGE ON TOP */
  text-align: center;
}


/* Show content only when active */
.accordion-item.active .accordion-content {
  display: flex;
}

/* Text */
.content-text {
  max-width: 100%;
}

.content-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.content-text p {
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Image */
.content-image img {
  max-width: 260px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .accordion-wrapper {
    flex-direction: column;
    height: auto;
  }

  .accordion-item {
    width: 100%;
    height: auto;
  }

  .accordion-label {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 20px;
  }

  .accordion-content {
    flex-direction: column;
    text-align: center;
  }

  .content-text,
  .content-image {
    max-width: 100%;
  }

  .content-image img {
    max-width: 200px;
  }
}










.case-study-section {
  padding: 80px 40px;
  background: #fff;
}

.case-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.case-track {
  display: flex;
  gap: 32px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 30px;
}

.case-card {
  min-width: 360px;
  background: #fff;
  border-radius: 28px;
  /*box-shadow: 0 0px 20px rgba(0,0,0,0.08);*/
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}

.case-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}

.case-body {
  padding: 26px;
  background: #f0f5ff;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.case-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #9a9a9a;
}

.case-body h3 {
  margin: 10px 0 20px;
  font-size: 22px;
}

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

.case-stats li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.case-stats strong {
  font-weight: 600;
}

.case-duration {
  margin: 18px 0;
  font-size: 13px;
  color: #999;
}

.case-link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.case-header h2 {
  font-size: 44px;
  margin-top: 10px;
}

.case-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* NAV BUTTONS */
.nav-btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #000000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.nav-btn2.prev { left: -20px; }
.nav-btn2.next { right: -20px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .case-card { min-width: 320px; }
}

@media (max-width: 768px) {
  .case-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .case-card {
    min-width: 125%;
    scroll-snap-align: center;
  }

  .nav-btn2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .case-image img {
    height: 220px;
  }
}






.faq-section {
  padding: 80px 20px;
  /* background: #f7f7f9; */
  margin: auto;
  max-width: 1200px;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-tag {
  font-size: 14px;
  font-weight: 600;
  color:black ;
  letter-spacing: 1px;
  position: relative;
  padding-left: 40px;
}

.faq-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: black;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-item {
  border-bottom: 1px solid #d9d9df;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ICON */
.icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(-135deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 16px;
  }
}





.services-carousel-section {
  padding: 80px 40px;
  background: #f7f7f9;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.service-card {
  min-width: 280px;
  background: #fff;
  border-radius: 28px;
  padding: 30px 24px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-img img {
  max-width: 160px;
  max-height: 140px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.learn-more {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-card {
    min-width: 240px;
  }

  .carousel-btn {
    display: none;
  }
}


.seperator{
    background-color: black;
    color: white;
    max-width: 100%;
    margin: auto;
    text-align: center;
    padding: 80px 40px;
}
.seperator h3{
    font-size: 1rem;
}
.seperator p{
    font-size: 4rem;
    padding: 10px 0;
}

.sepBtn {
  padding: 12px 24px;
  border-radius: 999px;          /* fully rounded */
  background-color: #000;        /* default background */
  color: #fff;                   /* default text color */
  border: 2px solid white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sepBtn:hover {
  background-color: #fff;        /* white background on hover */
  color: #000;                   /* black text on hover */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seperator p{
    font-size: 1.2rem;
}
.sepBtn {
    margin-top: 20px;
}
.services-section{
    padding: 80px 20px;
}
.case-study-section{
    padding: 80px 20px;
}
.case-card{
    min-width: 120%;
}
}




/* footer */
.site-footer {
  background: #ffffff;
  color: #000;
  padding: 80px 40px;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.3fr;
  gap: 60px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 42px;
}

.tagline {
  font-size: 12px;
  letter-spacing: 1px;
}

/* ABOUT */
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.footer-about h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

/* FORM */
.footer-form {
  display: flex;
  max-width: 420px;
}

.footer-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.footer-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 14px;
}

/* LINKS */
.footer-links h4 {
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about h3 {
    font-size: 24px;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-form button {
    width: 100%;
  }
}


.btn-primary.navbar {
    color: #2353d2 !important;
    background-color: #ffffff !important;
    background-image: none !important;
    background-position: 93%;
    border: 1px solid #2353d2 !important;
    border-radius: 30px;
    margin-top: 0;
    padding: 8px 12px 8px 12px;
    font-weight: 600;
}
.btn-primary.navbar:hover {
    color: #ffffff !important;
    background-color: #2353d2 !important;
    background-image: none !important;
    background-position: 93%;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    border-color: #121527;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: #2353d2 !important;
    background-color: #ffffff !important;
    background-image: none !important;
    background-position: 93%;
    border: 1px solid #2353d2 !important;
    border-radius: 30px;
    margin-top: 0;
    padding: 12px !important;
    font-weight: 600;
	
}
.btn-primary:hover {
    color: #ffffff !important;
    background-color: #2353d2 !important;
    background-image: none !important;
    background-position: 93%;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    border-color: #121527;
    transform: none !important;
    box-shadow: none !important;
}

/*.btn-primary {
    z-index: 1;
    text-align: center;
    background-color: #2353d2;
    background-image: none !important;
    background-position: 90%;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    margin-top: 32px;
    padding: 16px 40px 16px 20px;
    font-weight: 600;
    transition: all 0.1s;
    position: relative;
}
.btn-primary:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 4px 4px rgba(0, 0, 0, 0.25);
}*/



/* ===== TOOLS SECTION ===== */
.tools-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.tools-container {
  max-width: 1200px;
  margin: auto;
  /* text-align: center; */
}

.tools-heading h2 {
  font-size: 36px;
  margin: 10px 0 40px;
}

/* Slider Wrapper */
.tools-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* SINGLE ROW TRACK */
.tools-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* Cards */
.tool-card {
  flex: 0 0 180px;
  height: 90px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-card img {
  max-height: 28px;
  opacity: 0.85;
}

/* Pagination */
.tools-pagination {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tools-pagination span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.tools-pagination span.active {
  width: 22px;
  background: #000;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .tools-heading h2 {
    font-size: 26px;
  }

  .tool-card {
    flex: 0 0 140px;
    height: 64px;
  }

  .tool-card img {
    max-height: 24px;
  }
}

