html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 30px;
  background-color: rgba(
    94,
    94,
    94,
    0.4
  ) !important; /* semi-transparent gray */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px); /* For Safari */
  border: none !important;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.logo img {
  height: 32px;
  margin-right: 10px;
}

.nav-links {
  color: #ffffff;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-weight: 500;
}

.nav-links li {
  cursor: pointer;
}

.btn-black {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 60px;

  flex-wrap: wrap;
  height: 120vh;
}

.hero-content {
  max-width: 45%;
  min-width: 300px;
  margin-bottom: 40px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
.hero-content h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 18px;
  color: #6d6b94;
  margin-bottom: 30px;
}

.hero-images {
  position: relative;
  width: 50%;
  min-width: 300px;
  height: 400px;
}

.hero-images video {
  position: absolute;
  border-radius: 25px;
  object-fit: cover;
  width: 280px;
  height: 310px;
}

/* Positioning individual videos */
.img-yellow {
  top: 30%;
  right: 0%;
}

.img-blue {
  top: 0%;
  left: 10%;
}

.img-pink {
  top: 85%;
  right: 47%;
}
.img-black {
  top: 115%;
  right: 0%;
}

/* ✅ Responsive design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 40px 30px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-images {
    width: 100%;
    height: 450px;
  }

  .hero-images video {
    width: 100%;
    height: auto;
    max-width: 200px;
  }
}

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

  .btn-black {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .hero-images video {
    margin-bottom: 15px;
    max-width: 100%;
  }
}

.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 30px;

  flex-wrap: wrap;
  text-align: center;
}

.counter-box {
  flex: 1 1 250px;
  margin: 20px;
}

.counter {
  font-size: 70px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 18px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .counter {
    font-size: 42px;
  }
  .counter-box p {
    font-size: 16px;
  }
}

.process-section {
  padding: 80px 30px;
  text-align: center;
  background: #f9fafc;
  width: 100%;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.process-box {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.process-box p {
  font-size: 18px;
  color: #555;
}

.process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-box {
  text-align: center;
}

.cta-box .btn-black {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 12px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }

  .process-box h3 {
    font-size: 32px;
  }

  .process-box p {
    font-size: 16px;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Target only the 5th box */
.process-grid .process-box:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 50%;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid .process-box:nth-child(5) {
    width: 100%;
    grid-column: auto;
  }
}

.scroll-message {
  background-color: #ffffff;
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  font-weight: 500;
  font-family: "Satoshi-Regular", sans-serif;
  position: relative;
  height: 150px;
}

.scroll-wrapper {
  display: flex;
  width: 200%;
  animation: scroll-left 30s linear infinite;
}

.scroll-text {
  display: flex;
  align-items: center;
  font-size: 80px;
  gap: 50px;
}

.scroll-text span {
  display: flex;
  align-items: center;
}

/* Grayscale effect for images */

/* Restore color on image hover */
.scroll-text img:hover {
  filter: grayscale(0%);
}

/* Pause scroll on hover */
.scroll-message:hover .scroll-wrapper {
  animation-play-state: paused;
}

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

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #111;
}

.accordion-header span {
  margin-right: 12px;
  color: #777;
  min-width: 30px;
}

.accordion-header .arrow {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #444;
  padding-right: 20px;
}

.accordion-content p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-header.active + .accordion-content {
  max-height: 200px;
}

@media (max-width: 768px) {
  .strategy-services-section {
    padding: 60px 20px;
  }

  .strategy-services-section h2 {
    font-size: 2rem;
  }

  .accordion-header {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #111;
}

.accordion-header .arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #444;
}

.accordion-content p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-header.active + .accordion-content {
  max-height: 200px;
}

.carousel-wrapper {
  max-width: 100vw;
  padding-top: 5%;
  height: 600px;
  margin: auto;
  overflow-x: hidden;
  position: relative;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel video {
  flex: 0 0 auto;
  aspect-ratio: 9 / 16;
  height: 450px;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.5s ease-in-out;
}

/* Highlight the center video */
.carousel video.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel video {
    flex: 0 0 90%;
    max-width: 90%;
    height: 550px;
  }
}

.nav-buttons {
  text-align: center;
  margin-top: 20px;
}

.nav-buttons button {
  padding: 10px 20px;
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin: 0 10px;
}

.nav-buttons button:hover {
  background-color: #333;
}

.footer {
  background: #0e0e0e;
  color: #fff;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  position: relative;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f01800;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 2 1 500px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

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

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

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

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 14px;
}

.footer-contact i {
  color: #ccc;
  margin-right: 15px;
  font-size: 18px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.scroll-top a {
  background: #fff;
  color: #ff6a00;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.scroll-top a:hover {
  background: #ff3700;
  color: #fff;
}

.testimonial-section {
  position: relative;

  background-size: cover;
  background-position: center;
  height: 70vh;
  color: white;
  font-family: "Satoshi-Regular", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay1 {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;

  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  text-align: center;
  padding: 0 20px;
}

.testimonial {
  display: none;
  animation: fade 1s ease-in-out;
}

.testimonial.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sub-heading {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}

.testimonial h2 {
  font-size: 48px;
  margin: 10px 0;
  font-weight: 700;
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: #f0f0f0;
}

.controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.controls button {
  background: none;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial h2 {
    font-size: 32px;
  }
  .testimonial p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial h2 {
    font-size: 26px;
  }
  .testimonial p {
    font-size: 15px;
  }
}

/* For tablets and below */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    flex-direction: column;
    padding: 40px 30px;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-images {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-images video {
    margin-bottom: 15px;
    width: 90%;
    height: auto;
  }

  .counter {
    font-size: 42px;
  }

  .counter-box p {
    font-size: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }

  .process-box h3 {
    font-size: 32px;
  }

  .process-box p {
    font-size: 16px;
  }

  .process-grid .process-box:nth-child(5) {
    width: 100%;
    grid-column: auto;
  }

  .strategy-services-section {
    padding: 60px 20px;
  }

  .strategy-services-section h2 {
    font-size: 2rem;
  }

  .accordion-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .testimonial h2 {
    font-size: 32px;
  }

  .testimonial p {
    font-size: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 20px;
  }

  .carousel video {
    width: 100%;
    height: auto;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* For mobile phones */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .btn-black {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .testimonial h2 {
    font-size: 26px;
  }

  .testimonial p {
    font-size: 15px;
  }

  .scroll-text {
    font-size: 32px;
  }

  .carousel-wrapper {
    padding: 0 15px;
  }

  .footer-brand .logo {
    width: 100px;
  }

  .footer-contact i {
    margin-right: 8px;
  }

  .nav-buttons button {
    width: 90%;
    margin-bottom: 10px;
  }
}

.logo112 {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}
.nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #353535 !important;
  transition: color 0.3s ease;
}
.nav-link.active1 {
  color: #000000 !important;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .hero-images video {
    position: absolute;
    border-radius: 25px;
    object-fit: cover;
    width: 30px;
    height: 310px;
  }
  .img-yellow {
    top: 0;
    right: 0%;
  }

  .img-blue {
    top: 0%;
    left: 10%;
  }

  .img-pink {
    top: 85%;
    right: 47%;
  }
  .img-black {
    top: 115%;
    right: 0%;
  }
}
@media (max-width: 576px) {
  .hero-images {
    position: relative; /* Ensure video children use absolute */
    height: 300px;
  }
  .hero-images video {
    position: absolute;
    border-radius: 25px;
    object-fit: cover;
    width: 100px;
    height: 150px;
  }
  .img-yellow {
    top: 0 !important;
    right: 15%;
  }

  .img-blue {
    top: -10% !important;
    left: 20%;
  }

  .img-pink {
    top: 45%;
    left: 20%;
  }
  .img-black {
    top: 55%;
    right: 15%;
  }
  .carousel-wrapper {
    padding-top: 1%;
    height: 200px;
  }
  .scroll-message {
    height: 90px;
    font-size: 25px;
  }
}

.services-hero {
  position: relative;
  width: 100%;
  height: 700px;
  top: -100px;
  display: flex;
  align-items: center;
}

.services-bg {
  position: absolute;
  width: 100%;
  height: 106vh;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(55%);
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #d0d0d0c3;
}

.services-hero1 {
  position: relative;
  width: 100%;
  height: 400px;
  top: -250px;
  display: flex;
  align-items: center;
}

.services-bg1 {
  position: absolute;
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(55%);
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #d0d0d0c3;
}

.services-overlay {
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
  font-size: 2.5rem;
  font-weight: bold;
}

.services-overlay p {
  font-size: 1.1rem;
  font-weight: normal;
  max-width: 500px;
  line-height: 1.6;
  color: #ffffff;
}
.services-overlay1 {
  position: relative;
  z-index: 2;
  color: rgb(0, 0, 0);
  font-size: 2.5rem;
  font-weight: bold;
}

.services-overlay1 p {
  font-size: 1.1rem;
  font-weight: normal;
  max-width: 500px;
  line-height: 1.6;
  color: #000000;
}

/* Right side image that overlaps a bit */
.services-extra-img {
  width: 60%;
  position: relative;

  z-index: 55555;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
}

@media (max-width: 768px) {
  .services-hero {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    width: 100%;
    height: 650px;
    top: -250px;
  }

  .services-overlay {
    font-size: 2rem;
    text-align: center;
    top: 250px;
  }

  .services-extra-img {
    display: none;
  }
}

.case-studies-section {
  background-color: #0d0d0d;
}

.filters .filter-btn {
  background: transparent;
  color: #bbb;
  border: none;
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.filters .filter-btn.active,
.filters .filter-btn:hover {
  background-color: white;
  color: black;
}

.case-card {
  transition: transform 0.3s ease-in-out;
}

.case-card:hover {
  transform: scale(1.02);
}

.video112 {
  width: 500px !important;
  height: 300px !important;
}

section {
  background-color: #ffffff;
}

h4 {
  font-size: 1.75rem;
}

p {
  font-size: 1.1rem !important;
}

.btn-link svg {
  transition: transform 0.2s ease;
}

.btn-link:hover svg {
  transform: translateX(5px);
}
.srsimg {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.srsimg1 {
  width: 100%;
  max-width: 480px !important;
  height: 300px;
  margin-bottom: 20px;
}

.form-container {
  max-width: 700px;
  margin: 5vh auto;
  padding: 40px;

  border-radius: 10px;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question-number {
  color: #dc0b08;
  font-size: 1rem;
}

.question-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

input[type="text"] {
  background: transparent;
  border: none !important;
  border-bottom: 2px solid #d4342f !important;
  color: #d4342f;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  margin-bottom: 1rem;
}
textarea {
  height: 60px;
}
input,
textarea {
  appearance: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 2px solid #d4342f !important;
  color: #d4342f;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  margin-bottom: 1rem;
}
input:active,
input:focus,
textarea:active,
textarea:focus {
}
.btn-ok {
  background-color: #fcd900;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
}

.btn-ok:hover {
  background-color: #e6c200;
}

.result-summary {
  font-size: 1.2rem;
  color: #d4342f;
}

.service-box {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.02);
}

.service-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.portfolio-btn {
  margin-top: auto;
  align-self: flex-start;
}

.fa-brands {
  font-size: 16px;
}
.fa-brands:hover {
  color: #0d6efd; /* Bootstrap primary */
}

.btn-black {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
}

.button112 {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  border: none !important;
}

.button112-1 {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  border: none !important;
}
.button113 {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  border: none;
  font-size: 18.72px;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
}

.video-carousel-section {
  background-color: #000000;
  position: relative;
}

.carousel-scroll {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.video-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  padding: 16px;
  scroll-snap-align: start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.video-card video {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.carousel-arrow {
  position: absolute;
  top: 67%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #a0a0a0;
  background-color: rgba(70, 70, 70, 0.6);
  color: #000000;
  border: none;
  padding: 8px 19px;
  font-size: 24px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.faq-info {
  flex: 1 1 35%;
}

.faq-accordion {
  flex: 1 1 60%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
}

.accordion-header {
  cursor: pointer;
  padding: 15px 10px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border-radius: 6px;
}

.accordion-header:hover {
  background: #efefef;
}

.accordion-content {
  display: none;
  padding: 10px 10px 15px;
  font-size: 0.95rem;
  color: #444;
  height: 100% !important;
}

.accordion-item.active .accordion-content {
  display: block;
  max-height: 100% !important;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.industries-section {
  background-color: #ffffff;
  padding: 80px 40px;
}

.industries-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.industry-card {
  flex: 0 0 20%;
  scroll-snap-align: start;
  text-align: center;
}

.industry-card video {
  height: 450px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.industry-card video:hover {
  transform: scale(1.05);
}

.trusted {
  padding: 100px;
}

.btn-rounded {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1.7rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-gradient-red {
  background: linear-gradient(to right, #f44336, #8b0000);
  color: white !important;
  border: none;
}

.btn-gradient-red:hover {
  transform: scale(1.05);
}

.btn-dark-blue {
  background-color: #000000 !important;
  color: white !important;
  border: none;
  height: 300px !important;
}

.btn-dark-blue:hover {
  transform: scale(1.05);
}

.video-section {
  padding: 60px 20px;
  text-align: center;
}
.video-section h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 600;
  padding: 0 20%;
}
.video-section p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  padding: 0 20%;
}
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.video-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  cursor: grab;
}
.video-wrapper video {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
}
.carousel-control.prev {
  left: -20px;
}
.carousel-control.next {
  right: -20px;
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .video-section h1 {
    font-size: 2.5rem;
    padding: 0 10%;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .video-section h1 {
    font-size: 2rem;
    padding: 0 5%;
  }
}
@media (max-width: 768px) {
  .video-section button {
    font-size: 0.5rem;
    padding: 0 10%;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .video-section button {
    font-size: 0.5rem;
    padding: 0 5%;
  }
}

.stats-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.stats-section h2 {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.stats-section p.lead {
  color: #ddd;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff3b30;
}

.stat-label {
  font-size: 0.95rem;
  color: #ccc;
}

.trusted-by {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

.why-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-card {
  background-color: #000000;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: auto;
}

.why-card h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 30px;
}

.icon-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 10px;
  color: #ffffff;
}

.evolve-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.evolve-section h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.evolve-section ul {
  list-style-type: disc;
  text-align: left;
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
  font-size: 1rem;
}

.evolve-section .red-text {
  color: #ff3b30;
  font-weight: 600;
  margin-top: 20px;
}

.icon-img {
  width: 48px;
  height: 48px;
}

.video-benefits-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
}

.video-benefits-section .benefits-box {
  background-color: #000000;
  padding: 50px 20px;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-benefits-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
}

.benefits-icons .item {
  margin-bottom: 30px;
}

.benefits-icons .icon-circle {
  background-color: #d1f3e000;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.benefits-icons .icon-circle img {
  width: 30px;
  height: 30px;
}

.benefits-icons .label {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

.video-types .card {
  background-color: #1a1a1a;
  border: none;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  width: 110%;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.video-types .card:hover {
  transform: translateY(-5px);
}

.video-types .card-placeholder {
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.video-types .card-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.results-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #000;
}

.results-section h2 {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

.result-stat {
  color: #ff3b30;
  font-weight: 700;
  font-size: 1.6rem;
}

.result-label {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
}

.testimonial-box {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 20px 30px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-box p {
  margin: 0;
  font-weight: 600;
  color: #1a202c;
  font-size: 1.05rem;
}

.testimonial-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #999;
}

@media (min-width: 992px) {
  .pppp {
    padding: 0 20%;
  }
}

.insight-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: "Satoshi-Regular", sans-serif;
  text-align: center;
}

.insight-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.insight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.insight-card {
  background-color: #111;
  border-radius: 16px;
  padding: 24px;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.insight-desc {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 16px;
}

.insight-tag {
  background-color: #fff;
  color: #ff3c3c;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.read-more {
  display: block;
  font-weight: 600;
  color: #ff3c3c;
  text-decoration: none;
  margin-top: 6px;
}

.cta-btn-wrapper {
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #ddd;
}

.faq-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  font-family: "Satoshi-Regular", sans-serif;
  text-align: center;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin: 12px auto;
  max-width: 720px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.faq-item.active {
  background-color: #ffeeee;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 24px;
  color: #000 !important;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: #f33;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  padding: 0 24px;
  color: #444;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.healthcare-section {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;

  text-align: center;
  padding: 6% 16px;
}

.healthcare-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.healthcare-subtext {
  font-size: 18px;
  color: #000000;
  max-width: 600px;
  margin-bottom: 32px;
}

.healthcare-button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.healthcare-btn {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.healthcare-btn-primary {
  background: linear-gradient(to right, #f44336, #b71c1c);
  color: #ffffff;
}

.healthcare-btn-primary:hover {
  opacity: 0.9;
}

.healthcare-btn-secondary {
  background-color: #000000;
  color: #ffffff;
}

.healthcare-btn-secondary:hover {
  background-color: #000000;
}

@font-face {
  font-family: "Satoshi-Light";
  src: url("../font/Satoshi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("../font/Satoshi-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Regular";
  src: url("../font/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Italic";
  src: url("../font/Satoshi-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Medium";
  src: url("../font/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("../font/Satoshi-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Bold";
  src: url("../font/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("../font/Satoshi-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Black";
  src: url("../font/Satoshi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("../font/Satoshi-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
.satoshi-regular {
  font-family: "Satoshi-Regular", sans-serif !important;
}
p {
  font-family: "Satoshi-Regular", sans-serif !important;
}

.visiblembd {
  display: none;
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .visiblembd {
    display: block;
  }
  .visiblembd1 {
    display: none;
  }
}

.team-section {
  background-color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.meet-storytellers {
  font-size: 2.5rem;
  color: #d40000;
  font-weight: bold;
  margin-bottom: 3rem;
}

.profile-image-container {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;

  flex-shrink: 0;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-details {
  padding-top: 5px;
}

.member-details .role {
  font-size: 1.1rem;
  color: #d40000;
  font-weight: 600;
}

.member-details .name {
  font-size: 1.8rem;
  color: #212529;
  font-weight: bold;
}

.member-details .description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  font-family: "Satoshi-Light", sans-serif;
  font-weight: 350;
}

.linkedin-icon {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

.linkedin-icon:hover {
  color: #0077b5;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .profile-image-container {
    margin-right: 0 !important;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .profile-image-container img {
    width: 30%;
  }

  .member-details {
    text-align: center;
  }

  .member-details .d-flex {
    justify-content: center;
    flex-direction: column !important;
  }

  .linkedin-icon {
    margin-top: 0.5rem;
  }

  .member-details .name {
    font-size: 1.5rem;
  }

  .meet-storytellers {
    font-size: 2rem;
  }
}

.desp p {
  line-height: 1.2;
}

.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.navbar-scrolled {
  background-color: rgba(139, 139, 139, 0.724); /* Light background */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Optional: ensure nav links are still readable if bg is white */
.navbar .nav-link,
.navbar .navbar-brand {
  color: #ffffff !important;
}

/* Main section styles */
.lightbulb-process {
  background: linear-gradient(to bottom, #000000, #000000);
  color: #fff;
  font-family: "Satoshi-Bold";
}

.section-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.scroll-hint {
  color: #000000;
  font-size: 0.9rem;
}

/* Scrollable wrapper */
.process-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.process-steps {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}

.process-card {
  min-width: 220px;
  max-width: 340px;
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #000 !important;
  border-radius: 16px;
  padding: 24px;
  scroll-snap-align: center;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.step-icon {
  font-size: 2rem;
  color: #ff3b30;
  margin-bottom: 10px;
}

.step-number {
  color: #000000;
  font-weight: bold;

  margin-bottom: 6px;
}

.step-title {
  color: #040404;
  font-weight: 700;
  font-size: 1.1rem;
}

.stage-description {
  max-width: 650px;
  margin: 0 auto;
  color: #ffffff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .process-card {
    min-width: 180px;
    padding: 16px;
  }

  .step-icon {
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1rem;
  }
}

.lstsectn {
  background-color: #ffffffec;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  height: 100%;
  width: 80% !important;
  border-radius: 20px;
  border: 1px solid #d6d6d6;
}

.gradient-text {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.custom-toggler {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  z-index: 1051;
}
@media (min-width: 769px) {
  .custom-toggler {
    display: none;
  }
}
.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Toggle to X */
.custom-toggler.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .middle-bar {
  opacity: 0;
}

.custom-toggler.active .bottom-bar {
  transform: rotate(-45deg) translate(5px, -5px);
}

.brand-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.brand-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Satoshi-Bold", sans-serif;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.logo-row span {
  flex: 0 0 auto;
}

.logo-row img {
  max-height: 60px;
  object-fit: contain;
}

.logo-row img:hover {
  filter: grayscale(0%);
}

.hero-section3 {
  position: relative;
  height: 102vh;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -60px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
  border: none;
}

.hero-content h1 {
  font-weight: bold;
  font-size: 5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
}
.btn-outline-light {
  background-color: rgba(
    94,
    94,
    94,
    0.4
  ) !important; /* semi-transparent gray */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px); /* For Safari */
  border: 0.6px solid rgba(255, 255, 255, 0.401) !important; /* semi-transparent white border */
  transform: translateX(0);
  transition: transform 0.2s ease-in !important;
}
.btn-outline-light:hover{
  color: #ff3b30 !important;
  transform: scale(1.07);
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    margin: 5px 5px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-card1 video {
  max-width: 820px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.519);
}

.section-title {
  font-weight: 800;
  font-size: 3.7rem;
  text-align: center;
  margin-top: 40px;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 10px;
  color: #000000;
}

.section-description {
  text-align: center;
  font-size: 1rem;
  max-width: 750px;
  margin: 20px auto 60px;
  color: #000000;
}

.service-card {
  background: #efefef;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 36px;
  color: #f44336;
  margin-bottom: 15px;
}

.process-box {
  background-color: #f4f4f4;
  border-radius: 16px;
  padding: 30px;
  margin-top: 50px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.circle {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.cta-btn {
  background-color: #f44336;
  color: white;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 30px;
}

.bg-colour {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}
.section-container {
  padding: 20px 20px;
  background-color: #ffffff;
  text-align: center;
  width: 1250px;
  border-radius: 20px;
}

.video-wrapper {
  max-width: 820px;
  margin: 50px auto 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.556);
}

.section-title {
  font-weight: 800;
  font-size: 3.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
  margin: 10px auto 20px;
  max-width: 800px;
}

.section-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto 60px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 32px;
  color: #ff3b30;
  margin-bottom: 15px;
}

.process-flow {
  background: #fafafa;
  padding: 60px 20px;
  border-radius: 16px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
}

.process-step-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.final-message {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-top: 40px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.process-number1 {
  color: #e74c3c;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.cta-button {
  display: inline-block;
  background-color: #f35023;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #d53c14;
}
.feature-card {
  background: #efefef;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #e2430f;
}

.cta-btn {
  background-color: #e2430f;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.cta-btn:hover {
  background-color: #c9390d;
}

.section-text {
  font-size: 1.1rem;
  color: #555;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 20px;
  }
}

.process-card1 {
  background-color: #f1f1f1;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
}
.process-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 15px;
}

.process-card1 h5 {
  font-weight: 700;
}

.process-card1 p {
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .process-card1 {
    margin-bottom: 20px;
  }
}
.btn-primary {
  border: none !important;
}
.btn-outline-primary:hover {
  background: linear-gradient(to right, #ff3b30, #990000) !important;
  color: white !important;
}
.paro-foot {
  margin-bottom: 0 !important;
  color: #777777;
}

.flexerdude {
  flex: 1 1 45%;
}
@media (max-width: 768px) {
  .flexerdude {
    flex: 1 1 100%;
    margin-bottom: 20px;
    padding-right: 10%;
    padding-left: 10%;
  }
  .flexerdude1 {
    flex: 1 1 100%;
    padding-right: 10%;
    padding-left: 10%;
  }
}
.carousel-arrow11
{
  position: absolute;
  top: 350% !important;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
}
@media (max-width: 768px) {
.spaceissue{
  padding: 0 !important;
  margin: 0 !important;
}
}