@font-face {
  font-family: 'Switzer';
  src: url('path-to-font/switzer.woff2') format('woff2'),
    url('path-to-font/switzer.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* For Joyride STD font */
@font-face {
  font-family: 'Joyride STD';
  src: url('path-to-font/JoyrideSTD.ttf') format('truetype');
  /* Modify path to the font file */
  font-weight: normal;
  font-style: normal;
}


/* Font family applied correctly */
.font-primary {
  font-family: 'Switzer', sans-serif !important;
}

* {
  font-family: 'Switzer', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

html,
body {
  /* height: 100%; */
  background-color: #000;
  width: 100%;
  /* overflow-x: hidden; */
}

.mainContainer {
  min-width: 100%;
  padding: 0;
  margin: 0;
  --bs-gutter-x: 0 !important;

}

.mainContainer>* {
  width: 100%;
  padding: 1px;
  box-sizing: border-box;
  margin-bottom: 10px;
}



.make-Logo {
  width: 80px;
  height: 50px;
}

.container-fluid {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  /* Optional, to limit the content width */
  padding: 0;
  /* padding: 1rem; */
}

/* Make the navbar responsive */
.navbar {
  margin-bottom: 0 !important;
  background-color: #000 !important;
}

/* Navbar-toggler icon (hamburger) styling */
.navbar-toggler-icon {
  filter: invert(1);
  /* Inverts the color to make it white */
}

/* Navbar links styling */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Container to hold the scrolling text */
.scrolling-text-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #000;
  display: block !;
  /* Background color for visibility */
  padding: 10px 0;
}

/* Scrolling animation for the text */
.scrolling-text {
  display: flex;
  animation: scroll-left 25s linear infinite;

}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* Styling for the second text */
.years-text {
  font-size: 1rem;
  margin-right: 30px;
  /* Space between the two texts */
  color: #fff;
}

.video-container {
  position: relative;
  height: 80vh;
  overflow: hidden;
  width: 100%;
  margin-top: -10px;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  /* Adds a dark overlay */
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Ensure overlay is above the video */
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity as needed */
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  /* Ensure video is below overlay */
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* Ensures video fills container */
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  line-height: 1.3vh;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.button1 {
  display: inline-block;
  background-color: white;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  line-height: 1.25rem;
  margin: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  border-radius: 2rem;
  margin-top: 20px;
}

.button1:hover {
  background-color: #FFFF00;
  color: #000;
}

.buttonLight {
  display: inline-block;
  background-color: #000 !important;
  color: white !important;
  border: none;
  padding: 1rem 2rem;
  line-height: 1.25rem;
  margin: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  border-radius: 2rem;
  margin-top: 20px;
}

.buttonLight:hover {
  background-color: #FFFF00 !important;
  color: #000 !important;
}

.button2 {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 1rem 2rem;
  line-height: 1.25rem;
  margin: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  border-radius: 2rem;
  margin-top: 20px;
}

.button2:hover {
  background-color: white;
  color: #000;
}

.custom-container {
  padding: 60px 20px;
  background-color: #151515;
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
  padding-top: 9rem;
  width: 100%;
  box-sizing: border-box;
  /* Ensure padding is included in the element's total width */
}

.core-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  /* Optional, to limit the content width */
  padding: 0;
}



.left-content {
  margin-top: 1.5rem;
  width: 75%;
}

.left-content h3 {
  color: white;
  font-size: 35px;
  word-wrap: break-word;
  /* Ensure text wraps properly */
}

.left-content p {
  color: white;
  font-size: 15px;
  width: 73%;
  word-wrap: break-word;
  /* Ensure text wraps properly */
}

.right-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  /* padding-left: 15rem; */
}

.right-content img {
  width: 100%;
  max-width: 80px;
  height: auto;
  margin-top: 12px;
}

.right-content p {
  font-size: 15px;
  font-weight: bold;
  text-align: center !important;
  max-width: 160px;
  margin: 5px 0 40px 0;
}


/* Background container with gradient */
.custom-background {
  background-color: #151515;
  /* Solid background color */
  background:
    linear-gradient(180deg,
      rgba(21, 21, 21, 0) 0%,
      rgba(75, 75, 183, 0.65849) 43.23%,
      rgba(21, 21, 21, 0) 100%),
    #151515;
  /* Adding the solid color behind the gradient */
  height: 80vh;
  /* 80% of the viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: -20px;
}

/* Centered content block */
.centered-content {
  text-align: center;
  color: white;
  width: 100%;
  max-width: 1000px;
}

/* Heading styling */
.centered-content h2 {
  font-size: 2rem;
  /* Heading size */
  margin-bottom: 40px;
}

/* Styling for the image row (set to display images in a row by default) */
.image-row {
  display: flex;
  justify-content: space-between;
  /* Space images evenly */
  gap: 20px;
  /* Space between images */
  width: 100%;
  text-wrap: wrap;
}

/* Styling for each image and its caption */
.image-item {
  text-align: center;
  width: 22%;
  /* Adjusted width for each image item */
}

.image-item img {
  width: 70%;
  height: auto;
  max-width: 70%;
  margin-bottom: 20px;
}

/* Footer message styling */
.footer-message {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
  flex-direction: column;
}

.footer-message h2 {
  margin: 0;
  text-align: center;
  font-weight: bold;
}

.footer-message p {
  margin: 5px 0 0;
  text-align: center;
  font-weight: bold;
}

.box-container {
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

/* Styling for each box */
.box {
  width: 430px;
  height: 420px;
  overflow: hidden;
  border: none;
  position: relative;
}


@media (min-width:1601px) {
  .box {
    width: 580px;
  }
}

@media (min-width:1200px)and (max-width:1600px) {
  .box {
    width: 550px;
  }
}

@media (min-width:1050px)and (max-width:1199px) {
  .box {
    width: 500px;
  }
}

@media (max-width:915px) {
  .box-container {
    flex-direction: column;
    /* Stack the cards vertically */
    align-items: center;
    /* Center the cards */
    padding: 0 50px;

  }

  .box {
    width: 100%;
    /* Full width of the container */
    margin-bottom: 20px;
    /* Space between the cards */

  }
}

/* Styling for the background video container */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* Send the video behind the button */
}

/* Ensure the video fills the box */
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the video covers the entire box */
}

/* Dark overlay on top of the video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay with 50% opacity */
  z-index: 0;
}

/* Centered button styling */
.center-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the button */
  padding: 15px 20px;
  font-size: 14px;
  background-color: white;
  /* Button color */
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.center-button:hover {
  background-color: #FFFF00;
  color: #000;
}

.pioneering-container {
  background-color: #151515;
  margin-top: 100px;
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pioneering-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.main-heading {
  color: white;
  padding-top: 20px;
}

/* Container for the entire image gallery */
.image-gallery-container {
  position: relative;
  width: 80vw;
  /* Default width: 80% of the viewport width */
  max-width: 1500px;
  /* Restrict the maximum width */
  display: flex;
  justify-content: flex-start;
  /* Align content to the left */
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  margin-left: auto;
  /* Push it toward the right */
  background-color: transparent;
}


@media (min-width: 1920px) {
  .image-gallery-container {
    width: 80vw;
    /* Increase the width slightly for larger screens */
    max-width: 1700px;
    padding: 50px 0;
    /* Increase padding for spacious layout */
    margin-left: auto;
    /* Ensure right-side alignment */
  }
}


/* Adjustments for larger screens */
@media (min-width: 1531px)and (max-width:1700px) {
  .image-gallery-container {
    width: 86vw;
    /* Increase the width slightly for larger screens */
    max-width: 1700px;
    padding: 50px 0;
    /* Increase padding for spacious layout */
    margin-left: auto;
    /* Ensure right-side alignment */
  }
}

@media (min-width: 2000px) {
  .image-gallery-container {
    width: 70vw;
    max-width: 1700px;
    padding: 50px 0;
    margin-left: auto;
  }
}

/* Adjustments for medium screens */
@media (min-width: 1351px) and (max-width: 1530px) {
  .image-gallery-container {
    width: 90vw;
    /* Reduced width to ensure it looks balanced */
    max-width: 1500px;
    /* Restrict maximum width */
    padding: 30px 0;
    /* Reduced padding for medium screens */
    margin: 0 auto;
    /* Center align the container */
  }
}

/* Adjustments for medium screens */
@media (min-width: 1100px) and (max-width: 1350px) {
  .image-gallery-container {
    width: 85vw;
    /* Reduced width to ensure it looks balanced */
    max-width: 1500px;
    /* Restrict maximum width */
    padding: 30px 0;
    /* Reduced padding for medium screens */
    margin: 0 auto;
    /* Center align the container */
  }
}

/* Adjustments for smaller screens */
@media (max-width: 1099px) {
  .image-gallery-container {
    width: 95vw;
    padding: 20px 0;
    margin-left: 0;
    /* Ensure it's fully left-aligned */
  }
}

/* Gallery section that holds all images */
.image-gallery {
  display: flex;
  gap: 20px;
  /* Space between images */
  transition: transform 1s ease;
  border: none;
  /* Smooth scroll transition */
}

/* Scroll button styles (left and right arrows) */
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eaf765;
  /* Button background */
  color: black;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  /* Circular button */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;

  /* Smooth opacity transition */
}

/* Left button styling */
.scroll-button.left {
  left: 10px;
  padding-top: 6px;
}

/* Right button styling */
.scroll-button.right {
  right: 10px;
  padding-top: 6px;
}

.scroll-button:hover {
  background-color: #abb8c3;
  /* Change background color on hover */
  color: #fff;
  /* Change icon color to white */
  border-color: #abb8c3;
  /* Optional: change border color to match background */
}

/* Optional: Focus styling */
.scroll-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(171, 184, 195, 0.5);
}

/* Styling for the image gallery items */
.gallery-item {
  width: 250px;
  /* Width of each image */
  height: 350px;
  /* Height of each image */
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  /* Remove border */
  box-sizing: border-box;
  position: relative;
  /* Make sure text and dark overlay are positioned inside */
  overflow: hidden;
  /* Hide overflow content */
}

/* Darken the background image on hover using the ::after pseudo-element */
.gallery-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 0;
  /* Place the dark overlay behind the text */
}

/* Text styling */
.gallery-item .text {
  position: absolute;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .text {
  opacity: 1;
}



/* Container for text and button inside each gallery item */
.content-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  /* Initially hidden */
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  transition: opacity 0.3s ease;
  z-index: 1;
  /* Ensure the dark overlay comes on top of the image */
}

/* Show the content when hovering over the item */
.gallery-item:hover .content-container {
  opacity: 1;
  /* Show on hover */
}

/* Styling for the text */
.text {
  color: white;
  font-size: 15px !important;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
  transition: margin-bottom 0.3s ease;
  /* Smooth transition for margin */
  z-index: 2;
  /* Text is always above the button */
}

/* Initially, button is hidden and positioned below the text */
.content-container .btn {
  opacity: 0;
  /* Button is initially hidden */
  margin-top: 10px;
  /* Space between the text and button */
  transition: opacity 0.3s ease, margin-top 0.3s ease;
  z-index: 3;
  /* Ensure the button is on top of the overlay but below the text */
}

/* Show button when hovering over the gallery item */
.gallery-item:hover .btn {
  opacity: 1;
  /* Button appears */
  margin-top: 20px;
  /* Move the button down */
}

/* Styling for the button */
.btn {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

/* Button hover effect */
.btn:hover {
  background-color: black;
  color: white;
}



blockquote {
  margin: -5rem 0 1rem;
}

.blockquote-block {
  background-color: #151515;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  /* Add horizontal padding for smaller screens */
  font-family: 'Joyride STD', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: 1px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.blockquote-block.active {
  display: block;
  opacity: 1;
}

.quote-slider {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}

.container-wide {
  width: 100%;
  max-width: 800px;
  /* Limits the width of the content */
  margin: 0 auto;
}

/* .row {
  display: flex;
  flex-direction: column;
  align-items: center;
} 
*/

.quote-content {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 10px;
  word-wrap: break-word;
  /* Prevents content overflow */
}

.content-wrap {
  max-width: 800px;
  margin: 20px auto;
  position: relative;
  padding: 0 1rem;
  /* Add padding for smaller screens */
}

.content-wrap .opening-quote,
.content-wrap .closing-quote {
  position: absolute;
}

.opening-quote {
  top: -3rem;
  left: -1rem;
}

.closing-quote {
  bottom: -3rem;
  right: -1rem;
  transform: rotate(180deg);
}

.opening-quote svg,
.closing-quote svg {
  max-width: 2rem;
}

.quote-image {
  display: block;
  margin: 0 auto;
  max-width: 100px;
  height: auto;
}

.statsSection{
  padding-bottom: 50px !important;
  margin-bottom: 0px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-wrap {
    padding: 10px;
  }

  .custom-container {

    padding-top: 3rem;

  }

  .statsSection{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  .quote-content {
    font-size: 1rem;
  }

  .container-wide {
    max-width: 100%;
  }

  .opening-quote {
    top: -2rem;
    left: -0.5rem;
  }

  .closing-quote {
    bottom: -2rem;
    right: -0.5rem;
  }

  .opening-quote svg,
  .closing-quote svg {
    max-width: 1.5rem;
  }
}

@media (max-width: 480px) {
  .quote-content {
    font-size: 0.9rem;
  }

  
  .opening-quote {
    top: -1.5rem;
    left: -0.25rem;
  }

  .closing-quote {
    bottom: -1.5rem;
    right: -0.25rem;
  }
}

@media screen and (min-width: 930px) {
  .blockquote-block {
    font-size: 1.4rem;
  }

  .content-wrap .opening-quote {
    top: -1rem;
    left: -4rem;
  }

  .content-wrap .closing-quote {
    bottom: -1rem;
    right: -3rem;
  }

  .opening-quote svg,
  .closing-quote svg {
    max-width: 100%;
  }
}

/* Dots Styling */
.slick-dots li button:before {
  color: #fff !important;
}



.dots-container {
  text-align: center;

  margin-top: -5rem !important;
}

.dot {
  height: 6px;
  width: 6px;
  margin: 0 10px;
  display: inline-block;
  border-radius: 50%;
  background-color: gray;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

.text-image-container {
  text-align: center;
  padding: 150px 300px;
  text-wrap: wrap;
}


.latest-articles-section {
  background-color: #151515;
  margin-top: -20px;
  padding-bottom: 5rem;
  padding-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;

}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  /* Optional, to limit the content width */
  padding: 0;
}

.head {
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
  padding: 10px;
  text-align: left;
  /* Align heading to the left */
}

/* Card container to display cards in a row */
.card-container {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
  /* Ensures the cards wrap on smaller screens */
  cursor: pointer;
}

/* Each individual card */
.homeCard {
  width: 33%;
  /* Width of the card */
  border: none;
  border-radius: 20px;
  box-shadow: none;
  padding: 15px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  height: 100%;
}

@media (min-width:1300px) and (max-width:1350px) {
  .homeCard {
    width: 410px;
    margin: 10px;


  }
}

@media (min-width:1200px) and (max-width:1299px) {
  .homeCard {
    width: 390px;
    margin: 5px;

  }
}

@media (min-width:1100px) and (max-width:1199px) {
  .homeCard {
    width: 360px;
    margin: 2px;

  }
}

@media (min-width:900px) and (max-width:1000px) {
  .homeCard {
    width: 300px;
    margin: 2px;

  }
}

@media (max-width:899px) {
  .card-container {
    flex-direction: column;
    /* Stack the cards vertically */
    align-items: center;
    /* Center the cards */
  }

  .card {
    width: 100%;
    /* Full width of the container */
    margin-bottom: 20px;
    /* Space between the cards */
  }

  .card-image {
    width: 100%;
  }
}






/* Card image styling */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Card title styling */
.homeCard-title {
  color: white;
  font-size: 24px;
  margin: 12px 0 8px 0;
  text-align: left;
  /* Align title to the left */
}

/* Card description styling */
.homeCard-description {
  color: #f8f8f899;
  font-size: 15px;
  text-align: left;
  /* Align description to the left */
  margin-top: 8px;
  /* Add space between description and title */
}

.motivation-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #151515;
  width: 100%;
  margin-top: -10px;
  padding-bottom: 200px;
  color:white;


}

.content-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  /* Optional, to limit the content width */
  padding: 0;
}

.content-display h2 {
  font-size: 45px;
  display: block;
  white-space: nowrap;
}


.navbar-toggler{
  padding: 5px 5px !important;
  background: white;
}

.navbar-toggler-icon{
  width: 1em !important;
  height: 1em !important;
}


.footer {
  color: white;
  background-color: #151515;
  padding: 2rem 0;
  margin-top: -15px;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.footer-column.links-column,
.footer-column.social-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  font-size: 13px;
  margin-bottom: 15px;
  color: #f8f8f899;
  padding: 10px 0;
}

.footer-column p {
  font-size: 14px;
  padding: 10px 0;
  color: white;
}

.footer-column input[type="email"] {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
  outline: none;
  width: 100%;
  max-width: 22rem;
}

.footer-column button {
  padding: 10px;
  background-color: #eaf765;
  border: none;
  color: black;
  font-size: 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1.2rem;
  font-weight: bold;
  width: 100%;
  max-width: 7rem;
  margin-top: 1rem;
}


/* Responsive adjustments */
@media (max-width: 920px) {
  .footer-section {
    flex-direction: column;
  }
  .footer-column {
    margin-bottom: 1.5rem;
  }
  .footer-column.links-column,
  .footer-column.social-column {
    flex: 1;
  }
}

.card-body p {
  color: #f8f8f899;
}
.card-body h3 {
  color: white;
}
.card {
  background: transparent !important;
}


.navigation-header {
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
  color:white;
  width: 100%;
  box-sizing: border-box;
}

.scroll-top-section {
  display: flex;
  justify-content: space-between;
  /* Ensures space between the children */
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 0;
}

.scrolling-button {
  margin-top: -1rem;
  width: 5%;
}

.custom-arrow-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


.footer-info {
  background-color: #151515;
  margin-top: -20px;
  padding: 5px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Align items to the start vertically */
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* Centers the footer on the page */
  padding: 0;

}

.footer-info img {
  width: 40%;
  /* Maintains aspect ratio */
  margin-bottom: 18px;
  /* Space below the image */
  align-items: center;
}


.footer-info .d-flex {
  position: relative;
  top: -0.2em;
}

.footer-info p {
  color: #f8f8f899;
  font-size: 0.8rem;
}


@media (max-width: 480px) {
  .container-fluid {
    max-width: 100%;
    /* Utilize full width */
    padding: 0 15px;
    /* Add padding for smaller screens */
  }

  .content h1 {
    font-size: 2rem !important;
    /* Smaller heading size */
    padding: 10px !important;
    /* Adjust padding */
    margin-bottom: 15px;
  }

  .core-content {
    flex-direction: column;
    /* Stack items vertically */
    gap: 1.5rem;
    /* Reduce spacing */
  }

  .left-content,
  .right-content {
    width: 100%;
    /* Full width for both sections */
  }

  .right-content {
    flex-direction: column;
    /* Stack images and text */
    align-items: center;
  }

  .left-content p {
    color: white;
    font-size: 14px;
    /* Slightly smaller text size */
    width: 100%;
    word-wrap: break-word;
    line-height: 28px;
    
    /* Ensure proper wrapping */
  }

  .right-content img {
    width: 80%;
    /* Scale down images */
    max-width: 100px;
    /* Ensure smaller images */
  }

  .centered-text {
    width: 100%;
    font-size: 0.9rem;
    /* Slightly smaller font */
    padding: 8px;
    /* Adjust padding */
  }

  .custom-background {
    height: 120vh;
  }

  .image-row {
    flex-wrap: wrap;
    justify-content: center;

  }

  .image-item {
    padding: 30px 0;
    flex: 1 1 40%;
  }


  .footer-message h2 {
    font-size: 1.5rem;
    /* Adjust heading size */
    margin-bottom: 8px;
  }


  .footer-message p {
    font-size: 0.9rem;
    /* Adjust paragraph size */
    margin: 0;
  }
}


@media (min-width:481px) and (max-width:767px) {
  .container-fluid {
    max-width: 1400px;
    padding: 0 20px;

  }

  .content h1 {
    font-size: 2.8rem !important;
    padding: 15px !important;
    margin-bottom: 20px;
  }

  .core-content {
    flex-direction: column;
    /* Switch to a row layout on larger screens */
    gap: 2rem;
    /* Increase spacing */
  }

  .left-content,
  .right-content {
    width: 100%;
    /* Each takes half the width */
  }

  .right-content {
    flex-direction: column;

  }

  .left-content p {
    color: white;
    font-size: 15px;
    width: 100%;
    word-wrap: break-word;
    /* Ensure text wraps properly */
  }

  .right-content img {
    width: 100%;
    max-width: 120px;
  }

  .centered-text {
    width: 100%;
    /* Ensure full width on small screens */
    font-size: 1rem;
    /* Maintain readability */
    padding: 10px;
    /* Adds some padding for better spacing */
  }

  .custom-background {
    height: 120vh;
  }

  .image-row {
    flex-wrap: wrap;
    justify-content: center;

  }

  .image-item {
    padding: 30px 0;
    flex: 1 1 40%;
  }
}



/* .content-display p{
width: 100% !important;
max-width: 1000px !important ;
padding-left: 25px;
} */

.scroll-top-section {
  width: 100%;
  max-width: 800px;
}

.footer-section {
  flex-direction: row;
  /* Switch to row layout */
  flex-wrap: wrap;
  /* Allow wrapping of children */
}

.links-column,
.social-column {
  flex: 1 1 50%;
  /* Half width for links and social columns */
}



@media (min-width:768px) and (max-width:920px) {
  .container-fluid {
    max-width: 1400px;
    padding: 0 20px;

  }

  .core-content {
    max-width: 1400px;
  }

  .content-wrapper {
    max-width: 1400px;
  }

  /* Each individual card */




  .scroll-top-section {
    width: 100%;
    max-width: 1000px;

  }

  .scroll-top-section {
    max-width: 1400px;
  }

  .footer-section {
    flex-direction: row;
    /* Switch to row layout */
    flex-wrap: wrap;
    /* Allow wrapping of children */
  }



  .links-column,
  .social-column {
    flex: 1 1 50%;
    /* Half width for links and social columns */
  }

}

@media (min-width:921px) and (max-width:1349px) {
  .container-fluid {
    max-width: 1800px;
    padding: 0 20px;

  }

  .core-content {
    max-width: 1800px;
  }

  .content-wrapper {
    max-width: 1800px;
  }

  /* Each individual card */




  .scroll-top-section {
    display: flex;
    justify-content: space-between;
    /* Ensures space between the children */
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 0;
  }

  .scroll-top-section {
    max-width: 1800px;
  }

  .footer-section {
    max-width: 1800px;
  }

  .footer-logo-container {
    max-width: 1800px;
  }

}

@media (min-width:1250px) and (max-width:1750px) {
  .container-fluid {
    max-width: 1250px;


  }

  .core-content {
    max-width: 1250px;
    margin: -70px 0;
  }

  .content-wrapper {
    max-width: 1250px;

  }

  .custom-background {
    margin-top: 40px;
    margin-bottom: 80px;

  }

  .box-container {

  }

  /* Each individual card */
  .card {
    width: 415px;
    /* Width of the card */
    border: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 15px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    height: 100%;
  }



  .pioneering-content {
    max-width: 1250px;


  }

  .scroll-top-section {
    max-width: 1000px;
   


  }

  .scroll-top-section {
    max-width: 1250px;
  }

  .footer-section {
    max-width: 1250px;



  }

  .footer-logo-container {
    max-width: 1250px;
  }


}


@media (min-width:1750px) {
  .container-fluid {
    max-width: 1250px;


  }

  .core-content {
    max-width: 1250px;
  }

  .content-wrapper {
    max-width: 1250px;
  }

  /* Each individual card */
  .card {
    width: 415px;
    /* Width of the card */
    border: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 15px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    height: 100%;
  }



  .pioneering-content {
    max-width: 1250px;


  }

  .scroll-top-section {
    display: flex;
    justify-content: space-between;
    /* Ensures space between the children */
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 0;
  }

  .scroll-top-section {
    max-width: 1250px;
  }

  .footer-section {
    max-width: 1250px;
  }

  .footer-logo-container {
    max-width: 1250px;
  }

}


/* Our Work Page */

.case-card {
  background-color: #000;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
}



.case-card.gift-card1 {
  background-color: rgba(0, 0, 0, 1);
}

.case-card.gift-card2 {
  background-color: rgba(27, 28, 58, 1);
}

.case-card.gift-card3 {
  background-color: rgba(25, 82, 142, 1);
}

.case-card.gift-card4 {
  background-color: rgba(104, 137, 140, 1);
}

.case-card.gift-card5 {
  background: linear-gradient(79.73deg, #AF2112 -0.44%, #E68314 33.84%, #715B6A 65.04%, #184951 101.87%);

}

.case-card.gift-card6 {
  background-color: rgba(3, 5, 30, 1);
}

.case-card.gift-card7 {
  background-color: rgba(237, 24, 144, 1);
}

.case-content {
  padding: 3rem;

  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.tag-container {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.case-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  max-width: 400px;
}

.case-study-btn {
  background-color: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  /* Changed from inline-block to inline-flex */
  align-items: center;
  /* Vertically center the items */
  gap: 3px;
  /* Add space between text and image */
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  width: 150px;
}

.case-study-btn img {
  width: 20px;
  /* Adjust image size if needed */
  height: 20px;
}



.case-study-btn:hover {
  color: #000;
}

.mockup-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.price-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.price-card img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ddd;
}

.price-info {
  color: #000;
}

.price-amount {
  font-weight: 600;
  font-size: 14px;
}

.price-text {
  color: #666;
  font-size: 13px;
}

.mockup-image {
  height: 500px;
  object-fit: inherit;
}

.gift-mockups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.gift-mockup {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  aspect-ratio: 1;
}


.section-container {

  padding: 5rem 1rem;
}

.intro-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #000;
}

.section-description {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

.ccard {
  color: black;
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s;
}

.ccard:hover {
  transform: translateY(-2px);
}

.ccard-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.ccard-title {
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
}

.get-in-touch-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  transition: background-color 0.2s;
}

.get-in-touch-btn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .section-container {
      padding: 3rem 1rem;
  }

  .intro-section {
      margin-bottom: 2rem;
  }

  .section-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
  }

  .ccard {
      margin-bottom: 1rem;
  }
}
@media (max-width: 450px) {
 .tag{
  font-size: 12px;
  padding: 6px 10px;
  flex-wrap: wrap;
 }
}


.breakSpacer{
  margin-bottom: 100px;
}


/* Services Page */

.company-logo {
  opacity: 0.6;
  width: 70%;
}

.portfolio-section {
  background: #000;
}

.lead {
  width: 80%;
}

.section-container {

  padding: 5rem 1rem;
}

.intro-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #000;
}

.section-description {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

.serCard {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s;
}

.serCard:hover {
  transform: translateY(-2px);
}

.serCard-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.serCard-title {
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
  color:#000;
}

.get-in-touch-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  transition: background-color 0.2s;
}

.get-in-touch-btn:hover {
  background-color: #333;
}

.process-item {
  margin: 4rem 0;
}

.process-title {
  font-size: 24px;
  color: rgba(21, 21, 21, 1);
  font-weight: 500;
}

.process-description {
  color: rgba(110, 110, 110, 1);
  font-size: 20px;
  font-family: 500;
}

.portfolio-serCard {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* background: #111; */
  transition: transform 0.3s ease;
}

.portfolio-serCard:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin: 1rem 0 0.5rem 0;
}

.portfolio-description {
  color: rgba(110, 110, 110, 1);
  font-size: 18px;
  line-height: 1.5;
  margin-top: 15px;
}

.serCard-body {
  padding: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.first_col{
      padding-left: 18% !important;
     
  }
@media (min-width: 992px) {

  /* Large Screens */
  .first_col{
      padding-left: 8% !important;
     
  }
}

@media (max-width: 991px) {

  /* Medium & Small Screens */
  .first_col {
      padding-left: 0 !important;
      /* Normal layout */
      text-align: center;
  }

  .first_col img {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-container {
      padding: 3rem 1rem;
  }

  .intro-section {
      margin-bottom: 2rem;
  }

  .section-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
  }

  .serCard {
      margin-bottom: 1rem;
  }

  .lead {
      width: 100%;
  }

  .lead2 {
      font-size: 20px !important;
  }

  .lap_img div {
      padding: 16px !important;
  }

  .lap_img-wrapper {
      display: flex;
      justify-content: center;
  }

  .lap_img {
      width: 100%;
      max-width: 720px;
      /* Bootstrap container width at 768px */
      padding-left: 15px;
      padding-right: 15px;
  }

  .flow_diag {
      justify-content: center !important;
  }
}




.nav-link {
  color: white !important;
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.hero-section {
  padding: 6rem 0;
  text-align: center;
  background-image: url('/public/assets/Images/herobg.png');
  background-size: cover !important;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.highlight {
  color: rgba(234, 247, 101, 1);
  display: inline;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(110, 110, 110, 1);
  line-height: 1.6;
  font-size: 18px;
}

.btn-primary {
  background-color: white;
  color: black;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  margin: 0 0.5rem;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  margin: 0 0.5rem;
}

.trusted-section {
  margin-top: 5rem;
  text-align: center;
}

.trusted-text {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.client-logo {
  height: 30px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}








.aiCard {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s;
}

.aiCard:hover {
  transform: translateY(-2px);
}

.aiCard-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.aiCard-title {
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
}

.get-in-touch-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  transition: background-color 0.2s;
}

.get-in-touch-btn:hover {
  background-color: #333;
}

.process-item {
  margin: 4rem 0;
}

.process-title {
  font-size: 24px;
  color: rgba(21, 21, 21, 1);
  font-weight: 500;
}

.process-description {
  color: rgba(110, 110, 110, 1);
  font-size: 20px;
  font-family: 500;
}

.portfolio-aiCard {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* background: #111; */
  transition: transform 0.3s ease;
}

.portfolio-aiCard:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin: 1rem 0 0.5rem 0;
}

.portfolio-description {
  color: rgba(110, 110, 110, 1);
  font-size: 18px;
  line-height: 1.5;
  margin-top: 15px;
}

.aiCard-body {
  padding: 1.5rem;
}

.section-title {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.section-description{
  color: #6E6E6E;
}


@media (max-width: 768px) {
  .hero-title{
      font-size: 3rem;
  }
  .section-container {
      padding: 3rem 1rem;
  }

  .intro-section {
      margin-bottom: 2rem;
  }

  .section-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
  }

  .aiCard {
      margin-bottom: 1rem;
  }

  .lead {
      width: 100%;
  }

  .lead2 {
      font-size: 20px !important;
  }

  .lap_img div {
      padding: 16px !important;
  }

  .lap_img-wrapper {
      display: flex;
      justify-content: center;
  }

  .lap_img {
      width: 100%;
      max-width: 720px;
      /* Bootstrap container width at 768px */
      padding-left: 15px;
      padding-right: 15px;
  }
}




.bannermain-content h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
}

.bannermain-content h2 span {
  color: #FFFF00;
}

.bannermain-content p {
  font-size: 18px;
  color: #fff;
}
.bannermain-img img {
  width: 100%;
}

section.bannermain .row {
  align-items: center;
}

section.bannermain {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0 55px 0;
}
.bannermain-btn a {
  text-decoration: none;
}
.bannermain-item {
  width: 75%;
}
.faster-heading h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.faster-heading p {
  font-size: 28px;
  color: #000;
}

.faster-heading {
  padding-bottom: 45px;
}

section.faster {
  padding: 55px 0;
}
.faster-heading h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}



.faster-heading {

  padding-bottom: 45px;
}

section.faster {
  padding: 55px 0;
}

.faster-box-img {
  margin: 0 auto 0 auto;
}

.faster-box-img img {
  width: 100%
}

.faster-box-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.faster-box-content p {
  font-size: 13px;
  color: #000;
}
.features-box .faster-box-content {
  padding: 20px;
  text-align: left;
  background: #fff;
}
.faster-box-content {
  text-align: center;
  padding: 0 70px;
}
section.features {
  background: #F3F4E6;
}

.features-box .faster-box-img {
  margin-bottom: 0;
}

.features-box .faster-box-content p {
  margin: 0;
}
.mobile-img img {
  width: 100%;
}
.sweatbox-item {
  display: flex;
  align-items: center;
}

.sweatbox-cintent h2 {
  font-size: 28px;
  color: #000;
  font-weight: 500;
}

.sweatbox-cintent p {
  font-size: 14px;
  color: #000;
}

.sweatbox-cintent {
  margin-left: 20px;
}

section.sweatbox {
  padding: 50px 0;
}
.iphone-heading h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  padding-bottom: 20px;
}

.iphoneo-img img {
  width: 100%;
}

section.iphone {
  padding-bottom: 55px;
}

.review {
  background-color: #F3F4E6;
}

.review-img img {
  width: 100%;
}

.review-content p {
  color: #000;
}
.review-img {
  width: 80%;
  margin: 0 auto;
}
.quote-img {
  margin: 20px 0;
}

.review-content {
  width: 100%;
}
.ready-item-content {
  text-align: center;
  padding-bottom: 30px;
}

.ready-item {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0;
  border-radius: 25px;
}

.ready-item-btn {
  text-align: center;
}
section.review .row {
  align-items: center;
}
.ready-item-btn a {
  background: #EAF765;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
.bannermain-btn {
  text-align: left;
}
section.page2bannar .bannermain-btn {
  margin-top: 35px;
} 
.page2bannar-counter-content {
  margin-top: 40px;
}
.page2bannar-counter-content p {
  margin: 0;
}

.logo-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.logo {
  padding: 25px 0;
}
.download-content {
  color: #000;
}

.download-content h2 {
  font-size: 36px;
  font-weight: 700;
  width: 65%;
}

.download-content p {
  width: 80%;
}

.download-btn {
  text-align: left;
  margin-top: 40px;
}

.download-img img {
  width: 100%;
}

section.download .row {
  align-items: center;
}
section.page2faster {
  background: #000;
}

section.page2faster .faster-heading h2, section.page2faster .faster-heading p {
  color: #fff;
}

section.page2faster .faster-box-content h2, section.page2faster .faster-box-content p {
  color: #fff;
}

section.page2faster {
  margin-top: 55px;
}
.strip-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.strip-content p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.strip-content {
  text-align: center;
  width: 46%;
  margin: 0 auto;
}

section.strip {
  padding: 40px 0;
}
.suucess-box-content h2 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.suucess-box-content {
  text-align: center;
}
.suucess-box-img {
  margin: 0 auto 20px auto;
  display: table;
}
.suucess-box-content img {
  text-align: left;
  display: block;
  margin-bottom: 20px;
}
.suucess-box {
  background: #010C80;
  padding: 20px;
}section.suucess .row .col-lg-4:nth-child(2) .suucess-box {
  background: #067616;
}
section.suucess .row .col-lg-4:nth-child(3) .suucess-box {
  background: #FFFF00;
}
section.suucess .row .col-lg-4:nth-child(3) .suucess-box .suucess-box-content {
  color: #000;
}
section.suucess .row .col-lg-4:nth-child(3) .suucess-box .suucess-box-content h2 {
  color: #000;
}
/*Responsive*/







@media only screen and (min-width : 100px) and (max-width : 1400px) {

}



@media only screen and (min-width : 100px) and (max-width : 1100px) {
.bannermain-content h2 {
  font-size: 30px;
}
.bannermain-content p {
  font-size: 16px;
}
.faster-box-content {
  padding: 0 20px;
}
.faster-heading {
  width: 72%;
}
.faster-box-img img {
  width: 100%;
}
.bannermain-item {
  width: 100%;
}
.strip-content {
  width: 55%;
}
.suucess-box {
  padding: 15px;
}



}


@media only screen and (min-width : 100px) and (max-width : 900px) {
.bannermain-img {
  margin-top: 20px;
}
.faster-heading {
  width: 100%;
padding-bottom: 20px;
}
.faster-box {
  margin-bottom: 20px;
}
.iphoneo-img {
  margin-bottom: 30px;
}
.review-img {
  width: 100%;
  margin: 30px auto 0 AUTO;
}
.ready-item {
  padding: 52px 0;
}
section.ready {
  PADDING-TOP: 30px;
}
  .suucess-box {
      MARGIN-BOTTOM: 20px;
  }
  .strip-content {
      width: 100%;
  }
.strip-content h2 {
  font-size: 28px;
}
.strip-content p {
  font-size: 18px;
}
.download-img {
  MARGIN-TOP: 40px;
}
.download-content h2 {
  font-size: 30px;
  width: 100%;
}
.logo-main {
  flex-wrap: wrap;
}


}





@media only screen and (min-width : 100px) and (max-width : 500px) {
.download-content h2 {
      font-size: 20px;
  }
.download-content p {
  width: 100%;
}
  .bannermain-content h2 {
      font-size: 24px;
  }
.faster-heading h2 {
  font-size: 18px;
}
  .strip-content h2 {
      font-size: 18px;
  }
.strip-content p {
      font-size: 15px;
  }
section.strip {
  padding: 40px 0 0 0;
}
  .strip-content p {
      margin: 0;
  }



}


/* Blog Page */



.blog-item {
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-item:hover {
  transform: translateY(-5px);
  color: inherit;
}

.blog-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem 0;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
}

section.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 130px;
  gap: 20px;
}

.hero-text {
  max-width: 70%;
  padding-left: 60px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-text button {
    background-color: #000;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.hero-media-wrapper {
    position: relative;
    width: 350px;
    height: 600px;
}

.bg-box {
    background-color: #f5f6e9;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-media-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    section.hero {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px;
    }

    .hero-text, .hero-media-wrapper {
      max-width: 100%;
    }

    .hero-media-wrapper {
      margin-top: 40px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

.process-section {
  padding: 50px 60px;
  position: relative;
  background-color: #fff;
}

.process-section .container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-top: 100px;
}

.background-text {
  font-size: 72px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 0;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}

.foreground-heading {
  font-size: 24px;
  font-weight: 800;
  z-index: 1;
  position: relative;
  margin-bottom: 60px;
}

.step {
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #111;
}


  /* Styling for the background video container */
.work-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  /* Send the video behind the button */
}

/* Ensure the video fills the box */
.work-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the video covers the entire box */
}

/* Dark overlay on top of the video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay with 50% opacity */
  z-index: 0;
}

.store-buttons {
  display: flex;
  gap: 12px; /* space between buttons */
  justify-content: left;
  align-items: center;
  padding: 20px 0;
}

.store-buttons a img {
  height: 50px; /* consistent height */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.store-buttons a img:hover {
  transform: scale(1.05); /* optional hover effect */
}
