/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a0a0c;
  color: #b3b3b3;
  text-align: center;
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 0;
  position: fixed;
  width: calc(100% - 40px);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease-in-out;
  align-items: center;
  text-align: center;
  border-radius: 30px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
}

header:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15),
    0 0 30px rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
}

.nav-links li {
  margin: 0 20px;
  text-align: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  opacity: 0.8;
}

.nav-links a:hover {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7),
    0 0 10px rgba(255, 255, 255, 0.7);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

.profile-pic {
  border: 0px;
  margin: 0px;
  padding: 0px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #4ed9ff;
  box-shadow: 0 0 10px rgba(78, 217, 255, 0.7), 0 0 20px rgba(78, 217, 255, 0.7);
  object-fit: cover;
}

section {
  padding: 80px 20px;
  margin-top: 70px;
}

h1,
h2 {
  color: #8a2be2;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.7),
    0 0 20px rgba(138, 43, 226, 0.7);
}

button {
  background: linear-gradient(45deg, #4ed9ff, #0072ff);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(78, 217, 255, 0.5), 0 0 20px rgba(0, 114, 255, 0.5);
  transition: box-shadow 0.3s ease-in-out;
  font-size: 18px;
  margin-right: 15px;
}

button:hover {
  background: linear-gradient(45deg, #0072ff, #4ed9ff);
  box-shadow: 0 0 20px rgba(78, 217, 255, 0.7), 0 0 30px rgba(0, 114, 255, 0.7);
}

/* Video Section */
video {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: #0a0a0c;
  color: #b3b3b3;
  padding: 15px;
  margin-top: 90px !important;
}

.intro-div {
  width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(0, 0, 0, 0.02)
    ),
    url("your-image-url.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.intro-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0.5;
  animation: moveLine 25s linear infinite;
}

.line:nth-child(1) {
  top: 20%;
  animation-duration: 30s;
}

.line:nth-child(2) {
  top: 40%;
  animation-duration: 35s;
}

.line:nth-child(3) {
  top: 60%;
  animation-duration: 40s;
}

.line:nth-child(4) {
  top: 80%;
  animation-duration: 45s;
}

@keyframes moveLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.phone-video {
  width: 30vh;
  height: 60vh;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 45px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 5px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 135px;
  margin-right: 290px;
  overflow: hidden;
  top: 200px;
  transform: rotate(-0.4deg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/*mac*/
@media only screen and (min-width: 1024px) and (max-width: 2560px) and (-webkit-min-device-pixel-ratio: 2) {
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    margin-right: 290px;
    overflow: hidden;
    top: 200px;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .grow {
    position: relative;
    left: 533px !important;
  }
  .with {
    position: relative;
    left: 533px !important;
  }
  .sub-line {
    position: relative;
    left: 120px !important;
  }
  .call {
    position: relative;
    left: 210px !important;
  }
  .trusted-section {
    position: relative;
    left: -200px !important;
  }
}
@media only screen and (max-width: 375px) and (max-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  .trusted-section {
    position: absolute;

    padding-right: 405px !important;
  }
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 105px;
    margin-right: 290px;
    overflow: hidden;
    top: 200px;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .section-content {
    width: none;
  }
  .section-line {
    width: 30px;
    word-wrap: break-word;
    white-space: normal;
  }
  .section-description {
    font-size: 0.2rem;
    max-width: 300px !important;

    height: auto;
  }

  /* Styles for iPhone SE */
}
/*Iphone 12 pro */
@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (-webkit-device-pixel-ratio: 3) {
  .section-content {
    width: 100%;
  }
  .trusted-section {
    position: absolute;

    padding-right: 445px !important;
  }
  .text {
    position: absolute;
    padding-right: 60px !important;
  }
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 105px;
    margin-right: 290px;
    overflow: hidden;
    top: 200px;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .section-line {
    width: 30px;
    word-wrap: break-word;
    white-space: normal;
  }

  .section-description {
    font-size: 1rem;
    max-width: 300px !important;
    height: auto;
  }
}
/*iphone 14 pro max */
@media only screen and (min-device-width: 430px) and (max-device-width: 932px) and (-webkit-device-pixel-ratio: 3) {
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 130px;
    margin-right: 290px;
    overflow: hidden;
    top: 200px;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
/* sumsung galaxy s8+ */
@media only screen and (min-device-width: 360px) and (max-device-width: 740px) and (-webkit-device-pixel-ratio: 4) {
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 98px;
    margin-right: 290px;
    overflow: hidden;
    top: 200px;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .section-line {
    width: 30px;
    word-wrap: break-word;
    white-space: normal;
  }

  .section-description {
    font-size: 1rem;
    max-width: 300px !important;
    height: auto;
  }
  .section-content {
    width: 100%;
  }
  .trusted-section {
    position: absolute;

    padding-right: 425px !important;
  }
  .text {
    position: absolute;
    padding-right: 20px !important;
  }
}
/*ipad mini*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-device-pixel-ratio: 2) {
  .main-line {
    font-size: 380% !important;
  }
  .call {
    top: 680px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    font-size: clamp(16px, 2.5vw, 20px); /* Responsive font size */
    text-align: center;
    margin: 0 auto;
    left: 270px !important;
  }
  .trusted-section {
    position: relative;
    top: 700px !important;
    margin-top: 184px !important;
    left: 200px !important;
    margin-left: 450px !important;
  }
  .text {
    position: relative;
    left: 200px !important;
    margin-left: 10px !important;
  }
  .grow {
    position: relative;
    margin-left: 43px !important;
    margin-top: 59px;
    font-size: 90% !important;
  }
  .with {
    position: relative;
    margin-right: 150px;
    margin-top: 75px;
    font-size: 90% !important;
  }
  .sub-line {
    position: relative;
    margin-left: -210px !important;
    max-width: 60%;
    text-align: center !important; /* center the text horizontally */
    white-space: normal !important; /* allows wrapping */
    word-break: break-word;
  }
  .phone-video {
    width: 30vh;
    height: 60vh;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 298px;
    margin-right: 290px;
    overflow: hidden;
    top: 900px !important;
    transform: rotate(-0.4deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  #main-section {
    margin-bottom: 200px !important;
  }
}

/* Responsive adjustments */

.phone-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.phone-video::before {
  content: "";
  width: 95px;
  height: 22px;
  background-color: #000;
  border-radius: 42px;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-video .camera {
  width: 18px;
  height: 18px;
  background-color: #555;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.phone-video .camera::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #e1e1e1;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

.phone-video .side-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.phone-video .side-buttons .button {
  width: 6px;
  height: 40px;
  background-color: #d4af37;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.phone-video .side-buttons .power-button {
  position: absolute;
  top: -50px;
  right: 0;
  width: 8px;
  height: 40px;
  background-color: #d4af37;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

h1.first {
  font-family: Roboto;
  color: #ffffff;
  text-shadow: none;
  background: linear-gradient(135deg, #333, #1a1a1a);
  border-radius: 50px;

  /* Responsive Font Size */
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: normal;
  padding: 10px 20px;
  font-weight: 300;

  /* Use relative margin values to keep position flexible */
  margin-right: clamp(100px, 75vw, 910px);
  margin-bottom: clamp(400px, 15vh, 400px);
}

p {
  font-family: Roboto;
  color: #b3b3b3;
  text-shadow: none;
  margin-right: 755px;
  font-style: normal;
  padding: 10px 20px;
  font-weight: 300;
  width: 640px;
  position: absolute;
  height: 400px;
}

.main-line {
  position: absolute;
  top: 25%;
  width: 100%;
  height: 2px;
  font-size: 60px;
}

.grow {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  background: linear-gradient(45deg, #4ed9ff, #0072ff);
  color: rgb(0, 0, 0);
  display: inline-block;
  border-radius: 0px;
  width: fit-content;
  text-align: center;

  /* Responsive font size */
  font-size: clamp(22px, 3vw, 58px);

  /* Responsive padding */
  padding: clamp(2px, 0.5vw, 8px) clamp(5px, 1vw, 15px);

  /* Keep it in the same position */
  position: absolute !important;
  top: 430%; /* Keeps it vertically aligned */
  left: 38%; /* Centers it horizontally */

  /* Prevents unwanted movement */
  white-space: nowrap;
}

.sub-line {
  position: absolute;
  top: 56%;
  left: 330px;
  width: 670px;
  font-size: 25px;
  text-wrap: wrap;
  background: linear-gradient(45deg, #ffffff, #4a4a4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: left;
  line-height: 1.5;
  margin-top: 60px !important;
}

.call {
  position: absolute;
  top: 680px;
  left: 22%;
  transform: translateX(-50%);
  font-size: clamp(16px, 2.5vw, 25px); /* Responsive font size */
  background: linear-gradient(45deg, #4ed9ff, #0072ff);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(78, 217, 255, 0.5), 0 0 20px rgba(0, 114, 255, 0.5);
}

.call:hover {
  background: linear-gradient(45deg, #0072ff, #4ed9ff);
  box-shadow: 0 0 20px rgba(78, 217, 255, 0.7), 0 0 30px rgba(0, 114, 255, 0.7);
  color: transparent;
  background-image: url("phone\ \(1\).png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.call::after {
  content: "";
  display: block;
  transition: opacity 0.3s ease-in-out;
}

.call:hover::after {
  opacity: 0;
}

.trusted-section {
  top: 705px !important;
  align-items: center;
  font-weight: bold;
  position: absolute !important;
  left: 0; /* Move it to the left */
  transform: translateX(-10%); /* Slight adjustment for better alignment */
  font-size: clamp(12px, 2vw, 18px); /* Responsive font size */
}

.circle-container {
  display: flex;
  align-items: center;
  position: absolute;
  left: 530px;
}

.circle-container img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  position: absolute;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.circle-container img:nth-child(1) {
  left: 0;
  z-index: 1;
}
.circle-container img:nth-child(2) {
  left: 22px;
  z-index: 2;
}
.circle-container img:nth-child(3) {
  left: 44px;
  z-index: 2;
}
.circle-container img:nth-child(4) {
  left: 66px;
  z-index: 2;
}
.circle-container img:nth-child(5) {
  left: 88px;
  z-index: 5;
}

.text {
  font-size: 17px;
  color: #808080;
  white-space: nowrap;
  left: 665px;
  position: absolute;
  font-weight: 300;
}
#main-section {
  margin: 0;
  padding: 0;
  border: 0;
}
.with {
  position: absolute;
  top: clamp(191px, 10vh, 185px); /* Adjusts dynamically */
  right: clamp(898px, 5120vw, 234px); /* Prevents it from moving too far left */
  font-size: clamp(60px, 2.5vw, 60px); /* Responsive font size */
  transform: translate(0, 0); /* Keeps it in place */
  white-space: nowrap; /* Ensures it stays in one line */
  max-width: fit-content; /* Prevents unnecessary stretching */
  text-align: center; /* Keeps text aligned */
}
@media (width: 414px) and (height: 896px) {
  .sub-line {
    position: absolute;
    top: 50% !important; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Ensure exact centering */
    font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
    text-align: center; /* Center the text */
    word-wrap: break-word; /* Ensure text wraps properly */
    background: linear-gradient(
      45deg,
      #ffffff,
      #68ff9a28
    ); /* Same as grow and monetize */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", sans-serif; /* Updated font for better appearance */
    font-weight: 500; /* Slightly bold for readability */
    width: clamp(350px, 90%, 330px); /* Responsive width */
  }
}
@media (width: 390px) and (height: 844px) {
  .sub-line {
    position: absolute;
    top: 50% !important; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Ensure exact centering */
    font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
    text-align: center; /* Center the text */
    word-wrap: break-word; /* Ensure text wraps properly */
    background: linear-gradient(
      45deg,
      #ffffff,
      #68ff9a28
    ); /* Same as grow and monetize */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", sans-serif; /* Updated font for better appearance */
    font-weight: 500; /* Slightly bold for readability */
    width: clamp(350px, 90%, 330px); /* Responsive width */
  }
}
@media (width: 430px) and (height: 844px) {
  .sub-line {
    position: absolute;
    top: 50% !important; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Ensure exact centering */
    font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
    text-align: center; /* Center the text */
    word-wrap: break-word; /* Ensure text wraps properly */
    background: linear-gradient(
      45deg,
      #ffffff,
      #68ff9a28
    ); /* Same as grow and monetize */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", sans-serif; /* Updated font for better appearance */
    font-weight: 500; /* Slightly bold for readability */
    width: clamp(350px, 90%, 330px); /* Responsive width */
  }
}
@media (min-width: 412px) and (max-width: 768px) and (min-height: 800px) and (max-height: 996px) {
  .sub-line {
    position: absolute;
    top: 50% !important; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Ensure exact centering */
    font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
    text-align: center; /* Center the text */
    word-wrap: break-word; /* Ensure text wraps properly */
    background: linear-gradient(
      45deg,
      #ffffff,
      #68ff9a28
    ); /* Same as grow and monetize */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins", sans-serif; /* Updated font for better appearance */
    font-weight: 500; /* Slightly bold for readability */
    width: clamp(350px, 90%, 330px); /* Responsive width */
  }
}

@media (max-width: 1024px) {
  header {
    width: 80%;
    top: 15px;
    padding: 8px 0;
  }
  #main-section {
    height: 1300px;
  }
  .with {
    position: absolute;
    top: clamp(191px, 10vh, 185px); /* Adjusts dynamically */
    right: clamp(
      166px,
      5120vw,
      234px
    ); /* Prevents it from moving too far left */
    font-size: clamp(14px, 2.5vw, 60px); /* Responsive font size */
    transform: translate(0, 0); /* Keeps it in place */
    white-space: nowrap; /* Ensures it stays in one line */
    max-width: fit-content; /* Prevents unnecessary stretching */
    text-align: center; /* Keeps text aligned */
  }

  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 45% !important; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }

  .nav-links li {
    margin: 0 15px;
  }
  .intro-div {
    height: 800px !important;
  }

  .nav-links a {
    font-size: 18px;
  }
  .phone-video {
    transform: scale(1) translateX(113%);
    top: 80%;
  }
  .main-line {
    position: absolute;
    top: 20%; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    font-size: 30px; /* Make it smaller */
    text-align: center; /* Center the text */
  }
  .grow {
    position: absolute; /* Ensure it's positioned relative to its container */
    top: 360% !important; /* Center vertically */
    left: 35% !important; /* Center horizontally */
    transform: translate(-30%, -50%); /* Perfect centering */
    text-align: center;
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(35px, 10vw, 46px); /* Responsive text size */
  }

  .call {
    width: 120px !important;
    white-space: nowrap; /* Ensures text stays in one line */
    transform: translate(-31%, +20%);
    border-radius: 5px !important;
  }
  .trusted-section {
    position: absolute;
    left: -65px !important; /* Move it further to the left */
    right: 70px !important;
    top: 545px !important;
    margin-left: 50px;
  }
  .section-description {
    text-align: center !important;
    align-items: center;
    width: 410px !important;
    font-size: 19px !important;
    transform: translate(-7%, +20%);
  }
  .section-heading {
    left: -20px !important;
  }
  .text {
    transform: translate(-37%, -30%);
    font-size: 14px; /* Smaller font size */
    font-family: "Arial", sans-serif; /* Different font */
    font-weight: bold; /* Make it bold */
    word-wrap: break-word; /* Wrap the text */
    white-space: normal; /* Allow text to wrap */
    width: 95px !important;
  }
  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }
  @media (max-height: 900) {
    .sub-line {
      position: absolute;
      top: 10% !important; /* Center vertically */
      left: 45%; /* Center horizontally */
      transform: translate(-50%, -50%); /* Ensure exact centering */
      font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
      text-align: center; /* Center the text */
      word-wrap: break-word; /* Ensure text wraps properly */
      background: linear-gradient(
        45deg,
        #ffffff,
        #68ff9a28
      ); /* Same as grow and monetize */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: "Poppins", sans-serif; /* Updated font for better appearance */
      font-weight: 500; /* Slightly bold for readability */
      width: clamp(350px, 90%, 330px); /* Responsive width */
    }
  }
  @media (max-height: 800px) {
    .first {
      position: absolute;
      top: 16%; /* Centers vertically */
      left: 50%; /* Centers horizontally */
      transform: translate(-50%, -50%); /* Ensures exact centering */
      white-space: nowrap; /* Keeps text in one line */
      font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
    }

    .sub-line {
      position: absolute;
      top: 50%; /* Center vertically */
      left: 45%; /* Center horizontally */
      transform: translate(-50%, -50%); /* Ensure exact centering */
      font-size: clamp(19px, 2vw, 18px); /* Responsive font size */
      text-align: center; /* Center the text */
      word-wrap: break-word; /* Ensure text wraps properly */
      background: linear-gradient(
        45deg,
        #ffffff,
        #68ff9a28
      ); /* Same as grow and monetize */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: "Poppins", sans-serif; /* Updated font for better appearance */
      font-weight: 500; /* Slightly bold for readability */
      width: clamp(350px, 90%, 330px); /* Responsive width */
    }
    .call {
      width: 120px !important;
      white-space: nowrap; /* Ensures text stays in one line */
      transform: translate(-31%, +20%);
      border-radius: 5px !important;
    }
    .trusted-section {
      position: absolute;
      left: -85px !important; /* Move it further to the left */
      right: 150px !important;
      top: 555px;
    }
    .section-description {
      text-align: center !important;
      align-items: center;
      width: 410px !important;
      font-size: 15px !important;
      transform: translate(-7%, +20%);
    }
    .section-heading {
      left: -20px !important;
    }
    .text {
      transform: translate(-50%, -30%); /* Corrected value */
      font-size: 11px !important; /* Smaller font size */
      font-family: "Arial", sans-serif; /* Different font */
      font-weight: bold; /* Make it bold */
      word-wrap: break-word; /* Wrap the text */
      white-space: normal; /* Allow text to wrap */
      width: 95px !important;
    }
  }

  @media (max-height: 600px) {
    .sub-line {
      font-size: clamp(14px, 2vw, 20px); /* Responsive font size */
      top: 50%; /* Center vertically */
      left: 50%; /* Center horizontally */
      transform: translate(-50%, -50%); /* Ensure exact centering */
      text-align: center; /* Keep text aligned */
    }
  }
  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }
  .profile-pic {
    width: 45px;
    height: 45px;
  }

  section {
    padding: 60px 15px;
  }

  h1.first {
    font-size: 22px;
    margin-right: 800px;
    margin-bottom: 300px;
  }

  p {
    margin-right: 600px;
    width: 500px;
    height: 300px;
  }

  .call {
    top: 600px;
    left: 20%;
    font-size: 22px;
  }

  .circle-container {
    left: 500px;
  }

  .text {
    left: 600px;
  }
}

@media (max-width: 768px) {
  header {
    width: 90%;
    top: 10px;
    padding: 8px 0;
  }
  .with {
    position: absolute;
    top: clamp(111px, 10vh, 185px); /* Adjusts dynamically */
    right: clamp(56px, 120vw, 150px); /* Prevents it from moving too far left */
    font-size: clamp(38px, 2.5vw, 70px); /* Responsive font size */
    transform: translate(0, 0); /* Keeps it in place */
    white-space: nowrap; /* Ensures it stays in one line */
    max-width: fit-content; /* Prevents unnecessary stretching */
    text-align: center; /* Keeps text aligned */
  }
  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 40px 15px;
  }

  h1.first {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .call {
    width: 90%;
    margin-top: 15px;
  }

  .trusted-section {
    flex-direction: column;
    align-items: center;
  }

  .intro-div {
    padding: 20px;
    height: auto;
  }

  .phone-video {
    width: 250px;
    height: 500px;
    bottom: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px 18px;
    width: auto;
  }

  .circle-container {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }

  .text {
    font-size: 14px;
    width: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 430px) {
  header {
    width: 95%;
    top: 5px;
    padding: 5px 0;
  }
  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }

  .nav-links li {
    margin: 5px 0;
  }

  .nav-links a {
    font-size: 16px;
  }

  .profile-pic {
    width: 40px;
    height: 40px;
  }

  section {
    padding: 30px 10px;
  }

  h1.first {
    font-size: 18px;
    margin-right: 600px;
    margin-bottom: 200px;
  }

  p {
    margin-right: 400px;
    width: 300px;
    height: 200px;
  }

  .call {
    top: 500px;
    left: 15%;
    font-size: 18px;
  }

  .circle-container {
    left: 400px;
  }

  .text {
    left: 400px;
  }
}
.header-callbutton {
  display: none;
  pointer-events: none;
  opacity: 0;
}

/* Targeting iPhone 14 Pro Max */
@media only screen and (max-width: 430px) {
  header {
    position: absolute;
    width: 60%;
    top: 5%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    text-align: center;
    transform: translateX(-50%);
    left: 45%;
  }
  .first {
    position: absolute;
    top: 16%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Ensures exact centering */
    white-space: nowrap; /* Keeps text in one line */
    font-size: clamp(12px, 5vw, 24px); /* Makes text responsive */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    height: 10%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    font-size: 80%;
    gap: 15px;
    color: white;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li:last-child {
    order: 1; /* Ensure button is the last item */
  }

  .nav-links a {
    font-size: 16px;
  }

  .book-call {
    display: none;
    pointer-events: none;
    opacity: 0;
  }
  .header-callbutton {
    display: flex;
    pointer-events: auto;
    opacity: 100%;
  }
}

/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background-color: #0a0a0c;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin: 0;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0c 0%, #1a1a2e 100%);
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.services-slider {
  position: relative;
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.services-container {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0 100px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: flex-start;
  transform: translateX(0);
}

.section-heading {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(78, 217, 255, 0.4);
  background: linear-gradient(135deg, #4ed9ff, #0072ff);
  border-radius: 50px;
  font-size: 42px;
  font-style: normal;
  padding: 15px 40px;
  font-weight: 600;
  margin: 0 auto 2rem;
  display: block;
  text-align: center;
  width: fit-content;
  position: relative;
  transform: none;
  left: auto;
  z-index: 10;
  box-shadow: 0 0 30px rgba(78, 217, 255, 0.3);
  letter-spacing: -0.5px;
}

.section-description {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: static;
  height: auto;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff, #b3b3b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.service-card {
  flex: 0 0 550px;
  min-width: 550px;
  max-width: 550px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  transition: all 0.3s ease-in-out;
  margin: 2rem 0 0 0;
  height: 600px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(78, 217, 255, 0.1);
}

.video-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.03);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover .video-container video {
  transform: scale(1.02);
}

.card-content {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease-in-out;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  border: none;
  height: 250px;
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4ed9ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(78, 217, 255, 0.3);
  font-family: "Inter", sans-serif;
  text-align: left;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  word-break: break-word;
}

.service-card p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  position: static;
  height: auto;
  width: 100%;
  text-align: left;
  font-weight: 400;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.2px;
  font-family: "Inter", sans-serif;
  margin-top: 0.75rem;
  margin-left: 0;
  padding-left: 0;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .services-container {
    padding: 0 80px;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 0 60px;
    margin-top: 1rem;
  }

  .service-card {
    flex: 0 0 100px;
    min-width: 300px;
    max-width: 200px;
    height: auto;
  }

  .video-container {
    height: 200px;
  }

  .card-content {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 20px;
    flex-direction: row; /* Ensure rows for phone sizes */
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }

  .video-container {
    height: 180px;
  }

  .card-content {
    height: auto;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 60px;
  height: 60px;
  border: none;
  background: transparent !important;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 1;
}

.slider-arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  display: block;
  transition: all 0.3s ease;
  background: transparent !important;
}

.slider-arrow.prev::before {
  transform: rotate(-135deg);
}

.slider-arrow.next::before {
  transform: rotate(45deg);
}

.slider-arrow:hover {
  transform: scale(1.1);
  background: transparent !important;
  border: none;
  outline: none;
  box-shadow: none;
}

.slider-arrow:hover::before {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent !important;
}

.slider-arrow:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none;
    outline: none;
    box-shadow: none;
  }

  .slider-arrow::before {
    width: 15px;
    height: 15px;
    background: transparent !important;
  }
}

.slider-arrow.next {
  margin-right: 40px; /* Move the right arrow more to the left */
}

@media (max-width: 768px) {
  .slider-arrow.next {
    margin-right: 20px; /* Smaller margin for mobile */
  }
}

#work {
  font-family: "Inter", sans-serif;
  font-weight: bolder;
  color: white;
  margin-top: 0;
  font-size: 25px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.9),
    rgba(26, 26, 46, 0.9)
  );
  padding: 60px;
}
.work {
  color: white;
  text-shadow: none;
  margin-bottom: 90px;
}
.margin {
  margin: 8px;
}
.attention {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #ff007a, #ff9800, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin: 15px;
}

.attention::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 3px solid #4ed9ff;
  box-shadow: 0 0 5px rgba(78, 217, 255, 0.5);
  animation: sketchy-circle 2s infinite ease-in-out alternate;
}

/* Adding a slight shake effect for a hand-drawn feel */
@keyframes sketchy-circle {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 320px); /* Ensures proper fitting */
  column-gap: 0px; /* Remove space between columns */
  row-gap: 50px; /* Keep row spacing */
  justify-content: center; /* Center the grid */
  padding: 10px;
}

.grid-item {
  width: 280px; /* Maintain phone-like shape */
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(252, 252, 252);
  border-radius: 23px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: -10px;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.grid-item video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.grid-item h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.grid-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #b3b3b3;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    gap: 8px; /* Adjusted gap for smaller screens */
    justify-items: center; /* Ensure alignment */
  }
  .grid-item {
    margin-bottom: 28px;
  }
  #work {
    font-size: 25px;
  }
  .margin {
    display: none;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr; /* Single column on small screens */
    gap: 5px; /* Adjusted gap for smaller screens */
    justify-items: center; /* Ensure alignment */
  }
}
/* General Styling */
/* General Styling */
/* General Styling */
#testimonials {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #0a0a0c 0%, #1a1a2e 100%);
  color: #e0e0e0;
  margin: 0;
  padding: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Heading */
#testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f8f9fa;
}

/* WhatsApp Testimonials */

/* Testimonial Auto-Slider */
.testimonial-slider {
  overflow: hidden;
  max-width: 100%;
  margin: 50px auto 0;
  position: relative;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a, #333);
  padding: 80px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.client-name {
  text-align: center;
  font-style: italic;
  font-weight: bolder;
  font-size: 24px !important;
  color: #ffffff;
  margin: 0; /* Remove extra spacing to keep alignment consistent */
  font-weight: 500;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  position: relative;
  height: 10px;
  width: 155px;
}

.slider {
  display: flex;
  gap: 40px;
  position: relative;
  width: max-content;
  transition: transform 0s linear; /* No sudden jumps */
  will-change: transform;
  animation: none; /* Remove previous CSS animations */
}

/* Images in the slider */
.slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slider img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  flex-shrink: 0;
}

.slider-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* Vignette Effect */
.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(to right, #1a1a1a, transparent);
  z-index: 1;
  pointer-events: none;
}

.testimonial-slider::after {
  right: 0;
  left: auto;
  background: linear-gradient(to left, #1a1a1a, transparent);
}

.testimonial-slider::before {
  left: 0;
  right: auto;
}

/* Smooth Auto-Scroll */

/* Duplicate slider for infinite loop */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider img {
    width: 120px;
    height: 120px;
  }

  .slider-item p {
    font-size: 0.9rem;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 100px;
  }
  .testimonial-slider {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .slider img {
    width: 100px;
    height: 100px;
  }

  .slider-item p {
    font-size: 0.8rem;
  }

  #testimonials h2 {
    font-size: 2rem;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 80px;
  }
  .testimonial-slider {
    height: 35px;
  }
}

/* Base section styling (optional, adjust as needed) */
/* Ensure sections have proper positioning */
/* Ensure sections have proper positioning */
#main,
#work,
#testimonials {
  position: relative;
  padding: 120px 20px; /* Increased padding for better spacing */
  overflow: hidden;
}

/* Add softer gradient effect to the top and bottom */
#main::before,
#work::before,
#testimonials::before,
#main::after,
#work::after,
#testimonials::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px; /* Increased height for smoother transition */
  pointer-events: none;
}

/* Top gradient */
#main::before,
#work::before,
#testimonials::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 10%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent
  );
}

/* Bottom gradient */
#main::after,
#work::after,
#testimonials::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 10%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent
  );
}
.client {
  margin: 0;
  color: white;
  text-shadow: none;
}
.grid-item iframe {
  border-radius: 15px; /* adjust the px for more or less rounding */
  overflow: hidden;    /* to make sure corners are clipped properly */
  display: block;      /* removes any inline spacing */
  border: none;        /* removes default border */
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px rgba(0, 0, 255, 0.7), 0 0 20px rgba(0, 0, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 0, 255, 1), 0 0 30px rgba(0, 0, 255, 0.8);
  }
}
#clients {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 60px;
  color: white;
  text-shadow: none;
  margin-bottom: 0;
}
.testimonial-heading {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 2rem;
  }
  #clients {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 40px;
    color: white;
    text-shadow: none;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .testimonial-heading {
    font-size: 1.5rem;
  }
}
/* Unique Ready Button Styling */
.ready-btn {
  margin-top: 10px; /* Adjusted to bring it closer to the top div */
  padding: 0.5em 2em; /* Reduced padding for better responsiveness */
  border: 0;
  --blue: #4ed9ff;
  font-size: 18px; /* Slightly smaller font size for better scaling */
  letter-spacing: 0.05em;
  position: relative;
  font-family: inherit;
  border-radius: 0.5em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.3em;
  border: 2px solid var(--blue);
  background: linear-gradient(
    to right,
    rgba(78, 217, 255, 0.1) 1%,
    transparent 40%,
    transparent 60%,
    rgba(78, 217, 255, 0.1) 100%
  );
  color: var(--blue);
  box-shadow: inset 0 0 8px rgba(78, 217, 255, 0.4),
    0 0 7px 2px rgba(78, 217, 255, 0.1);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.ready-btn:hover {
  color: #82eaff;
  box-shadow: inset 0 0 8px rgba(78, 217, 255, 0.6),
    0 0 7px 2px rgba(78, 217, 255, 0.2);
}

.ready-btn::before {
  content: "";
  position: absolute;
  left: -3em;
  width: 3em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(
    to right,
    transparent 1%,
    rgba(78, 217, 255, 0.1) 40%,
    rgba(78, 217, 255, 0.1) 60%,
    transparent 100%
  );
}

.ready-btn:hover::before {
  transform: translateX(12em);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ready-btn {
    font-size: 13px; /* Smaller font size for tablets */
    padding: 0.4em 1.8em; /* Adjusted padding */
    margin-top: 8px; /* Slightly closer to the top div */
  }
}

@media (max-width: 480px) {
  .ready-btn {
    font-size: 12px; /* Smaller font size for phones */
    padding: 0.3em 1.5em; /* Adjusted padding for smaller screens */
    margin-top: 5px; /* Closer to the top div */
  }
}

/*footer*/
.copy {
  position: absolute;
  margin-bottom: 0 !important;
  height: 10px;
  top: 6398px;
  right: -130px !important;
  margin-left: 50px;
  padding-left: 40px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 0.8rem; /* Smaller text size */
  color: rgba(255, 255, 255, 0.288); /* Blends with the background */
}

.h {
  margin: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .copy {
    top: 5000px;
    right: -100px !important;
    margin-left: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .copy {
    top: 4800px;
    right: -80px !important;
    margin-left: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .copy {
    top: 4600px;
    right: -50px !important;
    margin-left: 10px;
    padding-left: 10px;
  }
}
/* CSS */
#client-testimonials {
  background: linear-gradient(180deg, #0a0a0c 0%, #121212 100%);
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #b3b3b3;
}

.testimonial-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.testimonial-heading .highlight {
  color: #ffffff;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}

.testimonial-box {
  margin-top: 50px;
  background: linear-gradient(135deg, #1a1a1a, #333333);
  border-radius: 20px; /* Increased border radius for circular sides */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 380px;
  height: 330px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  border: 2px solid;

  box-sizing: border-box;
  overflow: hidden;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7); /* Darker pop-up effect */
  background: linear-gradient(135deg, #2a2a2a, #444444);
}

.testimonial-box img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
  border: 2px solid #ffffff;
}

.testimonial-box p {
  font-size: 0.9rem;
  color: #b3b3b3;
  margin-bottom: 10px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.testimonial-box .testimonial-author {
  font-weight: bold;
  color: #ffffff;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

.testimonial-box .divider {
  margin-top: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.testimonial-text {
  color: #ffffff !important;
  width: 280px;
  font-size: 0.98rem;
  margin-top: 70px;
  margin-left: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-text {
    width: 220px;
    font-size: 0.9rem;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    width: 180px;
    font-size: 0.85rem;
    margin-top: 70px;
  }
}

.testimonial-img-3 {
  border: none !important;
}
.profession {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  margin-top: 6px;
}
/* Scoped styling for the #process section */
/* Scoped styling for the #process section */
/* Scoped styling for the #process section */
#process {
  background-color: #0a0a0c; /* Darker background */
  padding: 40px 20px;
  font-family: "Roboto", sans-serif;
  color: #b3b3b3;

  /* Custom properties for easy theming */
  --bg-color: #0a0a0c; /* Section background */
  --card-bg: #121212; /* Darker card background */
  --primary-color: #4ed9ff; /* Accent color */
  --secondary-color: #808080; /* Secondary accent */
  --text-color: #b3b3b3; /* Main text color */
  --shadow-color: rgba(0, 0, 0, 0.8);
  --transition-speed: 0.4s;
  --border-radius: 15px;
}

/* Responsive grid container for cards */
#process .process-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 90px;
  height: fit-content;
  max-width: 1500px;
  margin: auto;
}

/* Card Styles */
#process .card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 25px;
  position: relative;
  box-shadow: 0 8px 20px var(--shadow-color);
  overflow: hidden;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
  width: 100%; /* Fill available width in the grid */
  max-width: 450px; /* Don’t let it get wider than 450px */
  min-height: 450px; /* Enforce a minimum height */
  margin: 0 auto; /* Center card in its grid cell */
  z-index: 0; /* Lower stacking context for the card itself */
}

/* Ensure all direct children of the card are above the overlay */
#process .card > * {
  position: relative;
  z-index: 1;
}

/* Remove the animated gradient overlay */
#process .card::before {
  display: none;
}

#process .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

/* Headings within cards */
#process .card h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraphs within cards */
#process .card p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Reset margins for message paragraphs */
#process .msg {
  margin: 0;
  padding: 0;
}

/* Calendar Styles */
#process .calendar {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

#process .calendar-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#process .date {
  background: #1a1a1a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-color);
  transition: background var(--transition-speed),
    transform var(--transition-speed);
}

#process .date:hover {
  background: #2a2a2a;
  transform: scale(1.05);
}

#process .date.active {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: scale(1.15);
}

/* Workflow list styles */
#process .workflow-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

#process .workflow-section li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin: 15px 0;
  padding-left: 10px;
  animation: fadeIn 0.6s ease forwards;
}

#process .workflow-section li::before {
  content: "✔";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--bg-color);
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}

/* Chat Interface Styles */
#process .chat-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

#process .message {
  max-width: 80%;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform var(--transition-speed);
  animation: fadeIn 0.6s ease forwards;
  /* Ensure messages show above any overlays */
  position: relative;
  z-index: 1;
}

#process .message:hover {
  transform: scale(1.02);
}

#process .message.client {
  background: #1a1a1a;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

#process .message.editor {
  background: var(--primary-color);
  color: var(--bg-color);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

#process .message .time {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}

/* Fade-in Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Additional styling for "workflow" class if needed */
.workflow {
  color: white !important;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: none;
}

/* MEDIA QUERIES */

/* For small phones */
@media (max-width: 480px) {
  #process {
    padding: 20px 10px;
  }
  #process .card {
    padding: 15px;
    min-height: 350px;
  }
  #process .card h2 {
    font-size: 1.5rem;
  }
  #process .card p,
  #process .workflow-section li {
    font-size: 0.9rem;
  }
  #process .date {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  /* Adjust chat messages for narrow screens */
  #process .message {
    max-width: 95%;
    font-size: 0.9rem;
  }
}

/* For larger laptops and desktops */
@media (min-width: 1200px) {
  #process {
    padding: 60px 40px;
  }
  #process .card {
    padding: 30px;
    min-height: 500px;
  }
  #process .card h2 {
    font-size: 2rem;
  }
  #process .card p,
  #process .workflow-section li {
    font-size: 1.1rem;
  }
  #process .date {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }
}
#process .card {
  overflow: visible !important;
}
.msg {
  margin: 0px !important;
  position: absolute;
  padding: 0px;
  text-align: left;
  left: -140px !important;
}

.msg2 {
  margin: 0px !important;
  position: absolute;
  padding: 0px;
  text-align: left;
  left: -80px !important;
}

.mymsg {
  margin: 0px !important;
  position: absolute;
  padding: 0px;
  text-align: left;
  left: -420px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .msg {
    left: -60px; /* Adjust for smaller screens */
    font-size: 0.9rem; /* Smaller font size */
  }

  .msg2 {
    left: -40px; /* Adjust for smaller screens */
    font-size: 0.9rem; /* Smaller font size */
  }

  .mymsg {
    left: -200px; /* Adjust for smaller screens */
    font-size: 0.9rem; /* Smaller font size */
  }
}

@media (max-width: 480px) {
  .msg {
    left: -30px; /* Further adjust for phones */
    font-size: 0.8rem; /* Smaller font size */
  }

  .msg2 {
    left: -20px; /* Further adjust for phones */
    font-size: 0.8rem; /* Smaller font size */
  }

  .mymsg {
    left: -100px; /* Further adjust for phones */
    font-size: 0.8rem; /* Smaller font size */
  }
}

@media (min-width: 1024px) {
  .msg {
    left: -150px; /* Adjust for larger screens */
    font-size: 1rem; /* Default font size */
  }

  .msg2 {
    left: -100px; /* Adjust for larger screens */
    font-size: 1rem; /* Default font size */
  }

  .mymsg {
    left: -500px; /* Adjust for larger screens */
    font-size: 1rem; /* Default font size */
  }
}

.myprocess {
}
.myprocess {
  /* Fluid, responsive font-size: between 2rem and 4rem */
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  text-align: center;

  /* Neon gradient text */
  background: linear-gradient(90deg, #64ffda, #0af, #64ffda);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glow shadow */
  text-shadow: 0 0 8px rgba(100, 255, 218, 0.7), 0 0 16px rgba(0, 170, 255, 0.5);

  /* Spacing */
  margin: 1.5em auto;
  padding: 0.2em 0;
  position: relative;
  cursor: default;
  transition: transform 0.3s ease;
}

/* Slight pop on hover */
.myprocess:hover {
  transform: scale(1.05);
}

/* Animated underline */
.myprocess::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #64ffda;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.myprocess:hover::after {
  width: 60%;
}

/* Fallback for very small screens */
@media (max-width: 480px) {
  .myprocess {
    font-size: clamp(1.6rem, 10vw, 3rem);
    text-shadow: 0 0 6px rgba(100, 255, 218, 0.6);
  }
}
.proc {
  color: white;
  text-shadow: none;
  font-size: 4rem;
}
/* About section styling with a dark gradient background */
#about {
  padding: 40px 20px;
  background: linear-gradient(135deg, #0a0a0c, #1a1a2e);
  color: #b3b3b3;
  height: 500px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; /* Align content to the left */
  flex-wrap: wrap;
}

/* Text content */
.about-text {
  flex: 1 1 55%; /* Increase width for text */
  padding: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b3b3b3;
  text-align: left;
}

/* Image content */
.about-image {
  flex: 1 1 300px;              /* Flexible width */
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 280px;             /* Controls image size */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.about-image img:hover {
  transform: translateY(-10px);
}

/* Responsive tweak for small screens */
@media (max-width: 768px) {
  .about-image img {
    max-width: 200px;
  }

  .info {
    margin-left: 0;
    text-align: center;
  }
}

/* Media query for laptops */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    text-align: left; /* Align text to the left */
    padding: 10px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 70%; /* Further reduce image size */
  }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-image img {
    max-width: 60%; /* Further reduce image size for smaller screens */
  }
}
#process {
  max-width: 1350px !important;
  margin: auto !important;
  padding: 40px;
}
@media only screen and (width: 375px) and (height: 667px) and (-webkit-device-pixel-ratio: 2) {
  #process {
    max-width: 250px !important;
    margin: 0 !important;
    padding: 40px;
  }
  .lin {
    display: none !important;
  }
  .about-image {
    position: absolute;
    width: 200px !important;
    margin-left: 330px !important;
    margin-top: -140px;
    margin-bottom: 40px !important;
    object-fit: cover !important;
  }
  .hit {
    font-size: 14px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 160px !important;
  }

  .proc {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    margin-top: 50px !important;
    margin-left: 85px !important;
  }

  /* Styles for iPhone SE */
}
@media only screen and (width: 390px) and (height: 844px) and (-webkit-device-pixel-ratio: 3) {
  #process {
    max-width: 265px !important;
    margin: 5px !important;
    padding: 40px;
  }
  .about-image {
    position: absolute;
    width: 200px !important;
    margin-left: 330px !important;
    margin-top: -140px;
    margin-bottom: 40px !important;
    object-fit: cover !important;
  }
  .hit {
    font-size: 14px !important;
  }
  .lin {
    display: none !important;
  }
  .proc {
    margin-left: 90px !important;
    margin-top: 55px !important;
  }
  .hit {
    font-size: 14px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 160px !important;
  }
}

@media only screen and (width: 414px) and (height: 896px) and (-webkit-device-pixel-ratio: 2) {
  #process {
    max-width: 275px !important;
    margin: 10px !important;
    padding: 40px;
  }
  .about-image {
    width: 200px !important;
    margin-left: 340px !important;
    margin-top: -240px;
    margin-bottom: 50px !important;
  }
  .hit {
    font-size: 12px !important;
  }
  .lin {
    display: none !important;
  }
  .proc {
    margin-left: 95px !important;
    margin-top: 60px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 160px !important;
  }
  .profession {
    width: 40 !important;
  }
}
@media only screen and (width: 428px) and (height: 926px) and (-webkit-device-pixel-ratio: 3) {
  #process {
    max-width: 300px !important;
    margin: 15px !important;
    padding: 40px;
  }
  .about-image {
    width: 210px !important;
    margin-left: 330px !important;
    margin-top: -250px;
  }
  .lin {
    display: none !important;
  }
  .hit {
    font-size: 13px !important;
  }
  .proc {
    margin-left: 60px !important;
    margin-top: 65px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 160px !important;
  }
}
@media (min-width: 412px) and (max-width: 420px) /* Adjust styles here */ {
  #process {
    max-width: 60px !important; /* Reduced by 50% */
    margin: 10px !important;
    padding: 40px;
    transform: scale(-540px) !important;
  }
  .process-section {
    width: 5px !important; /* Reduced by 50% */
  }
  .about-image {
    width: 115px !important; /* Reduced by 50% */
    margin-left: 400px !important;
    margin-top: -175px;
  }
  .hit {
    font-size: 13px !important; /* Reduced by 50% */
  }
  .proc {
    margin-left: 150px !important;
    margin-top: 70px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 150px !important; /* Reduced by 50% */
  }
  .lin {
    display: none !important;
  }
}
@media only screen and (width: 430px) and (height: 932px) and (-webkit-device-pixel-ratio: 3) {
  #process {
    max-width: 305px !important;
    margin: 20px !important;
    padding: 40px;
  }
  .about-image {
    width: 190px !important;
    margin-left: 365px !important;
    margin-top: -235px;
  }
  .hit {
    font-size: 13px !important;
  }
  .proc {
    margin-left: 50px !important;
    margin-top: 70px !important;
  }
  .msg {
    margin-left: 150px !important;
  }
  .mymsg {
    margin-left: 192px !important;
  }
  .msg2 {
    margin-left: 165px !important;
    width: 150px !important; /* Reduced by 50% */
  }
  .lin {
    display: none !important;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  /* Styles for M1 MacBook */
  #process {
    max-width: 1350px;
    margin: 0 !important;
    padding: 10px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1300px) {
  .process-section {
    max-width: 800px !important;
    margin: 0 auto;
    padding: 20px;
  }
}

.process-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  height: fit-content;
}

/* Card styling */
.card {
  flex: 1 1 calc(50% - 20px); /* Adjust width with gap */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fff;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .process-section {
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex: 1 1 100%; /* Take full width */
    margin: 10px 20px; /* Add margins on sides */
  }
}

@media (max-width: 480px) {
  #process {
    padding: 10px;
  }

  .card {
    padding: 15px;
    margin: 10px; /* Slightly reduce margins */
  }

  h1.proc {
    font-size: 1.5rem; /* Smaller font size for headings */
  }

  h2.workflow {
    font-size: 1.2rem; /* Smaller font size for subheadings */
  }
}
/* Footer Styles */
.site-footer {
  margin-top: 0 !important;
  background-color: #111;
  color: #fff;
  padding: 28px 0;
  width: 100%;
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #3b82f6;
}

/* Copyright Text */
.copyright {
  font-size: 20px;
}

/* Call-to-Action Button */
.cta-button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #111;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .cta-container {
    margin-top: 5px;
  }
}
a