* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 20px 80px;
  position: fixed;
  z-index: 9999;
}

.head {
  font-family: 'satoshi';
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column; /* stack "Build with" above the logo */
  align-items: flex-end; /* align both to the right */
  text-align: right; /* make the text right-aligned */
  cursor: pointer;
}

.logo .build {
  color: #333;
  margin-bottom: 5px; /* little gap above the logo */
  font-size: 14px;
}

.logo img {
  width: 144px; /* adjust as you want */
  height: 24px;
}

.main-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex: 1;
}

.main-nav-links-desktop {
  display: flex;
  gap: 30px;
  /* flex: 1; Remove this, it's not needed here and can cause issues if parent has flex:1 */
  justify-content: center; /* Centers the p elements within this div */
}

.main-nav a {
  cursor: pointer;
  color:  rgba(37, 43, 55, 1);
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.main-nav p:hover {
  color: #007bff;
}

/* New styles for social icons container */
.social-icons {
   display: none;
}

.social-icons a img {
    width: 30px; /* Adjust icon size as needed */
    height: 30px;
    filter: brightness(0) invert(1); /* Makes black icons white for the deep blue background */
    transition: transform 0.2s ease;
}

.social-icons a img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.ltt {
    background-color: rgba(0, 56, 230, 1);
    padding: 16px 32px;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

.ltt:hover {
  color: rgba(254, 225, 52, 1);
}

.build {
 background-color: rgba(254, 225, 52, 1);
 padding: 2px 8px;
 font-family: 'instrument sans';
 border-radius: 100px;
 border-bottom-left-radius: 0;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 10000; /* Ensure it's above other elements */
    margin-left: 20px; /* Add some space between LTT and hamburger */
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: rgba(37, 43, 55, 1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dps {
  padding-top: 176px;
  padding-bottom: 80px;
  text-align: center;
}

.de-mar {
  font-family: 'satoshi';
  font-size: 96px;
  font-weight: 700;
  font-style: bold;
  color: rgba(37, 43, 55, 1);
  position: relative;
}

.de-mar p {
  line-height: 0.9; /* or even 0.8 or 0.7 */
}

/* wrapper so corners can be positioned relative to the frame without being clipped */
.frame-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.frame {
  position: relative;
   background: radial-gradient(
    50% 162.64% at 50% 50%, 
    #0B43E6 0%, 
    #0830A3 100%
  );
  border: 7px solid #E7ECFD;
  border-radius: 4px;
  color: #fff;
  padding: 20px 32px;
  display: inline-block;
  overflow: visible;
  z-index: 1;
}



.frame::before {
  top: -7px;
  left: -7px;
}

.frame::after {
  top: -7px;
  right: -7px;
}

.frame .corner-tl { top: -7px; left: -7px; }
.frame .corner-tr { top: -7px; right: -7px; }
.frame .corner-bl { bottom: -7px; left: -7px; }
.frame .corner-br { bottom: -7px; right: -7px; }


.frame .corner-bl,
.frame .corner-br,
.frame .corner-tl,
.frame .corner-tr {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #0B43E6;
  border: 3px solid white;
  display: block;
}


.frame .corner-bl {
  bottom: -7px;
  left: -7px;
}

.frame .corner-br {
  bottom: -7px;
  right: -7px;
}

.frame::before,
.frame::after,
.frame .corner-bl,
.frame .corner-br {
  z-index: 0;
}

.word::before {
  font-family: 'instrument sans';
  content: "Design";
  display: flex;
  animation: changeWord 10s ease-in-out infinite;
  font-size: 72px;
  text-align: center;
  justify-content: center;
}

/* Smooth continuous slide with pause effect */
@keyframes changeWord {
  0% {
    content: "Design";
    opacity: 1;
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(0); /* stays still for a while */
  }

  35% {
    opacity: 0;
    transform: translateX(-100%); /* slides out */
  }

  36% {
    content: "Marketing";
    opacity: 0;
    transform: translateX(100%); /* gets ready to enter */
  }

  55% {
    opacity: 1;
    transform: translateX(0); /* slides in smoothly */
  }

  75% {
    opacity: 1;
    transform: translateX(0); /* pause again before switching */
  }

  90% {
    opacity: 0;
    transform: translateX(-100%); /* slides out again */
  }

  91% {
    content: "Design";
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.line {
  font-family: 'satoshi';
}

.pgs {
    font-size: 20px;
    gap: 32px;
}

.pgs p {
  margin: 2px 0; /* Removes default top & bottom margin */
  line-height: 1.5; /* Adjust spacing between lines (try 1.1 or 1.0 for tighter) */
}

.pgs :first-child {
    color:  rgb(5, 0, 134);
}

.sor {
    border-radius: 100px;
    border:  2px solid rgb(5, 0, 134);
    display: flex;
    padding: 16px 24px;
    color: #051C61;
    width: 152px;
    height: 56px;
    /* Added to help center text within button more robustly */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
}

.sor:hover {
  color: black;
}

.vp {
    background-color: #0038E6;
    color: white;
    border-radius: 100px;
    padding: 16px 24px;
    width: 176px;
    height: 56px;
    display: flex; /* makes text + icon align in a row */
    align-items: center; /* vertically centers them */
    justify-content: center; /* horizontally centers everything */
    gap: 10px; /* space between text and icon */
    text-decoration: none;
}

.vp:hover {
    color: rgba(254, 225, 52, 1);
}

.sv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}


.tba {
   font-family: 'instrument sans';
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 16px;
    color: rgba(37, 43, 55, 1);
    font-weight: 500;
}

.features-section {
  text-align: center;
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  background: rgba(231, 236, 253, 1);
}

.worksec p {
  font-family: 'instrument sans';
  font-size: 48px;
  font-weight: 700;
  font-style: bold;
  margin-bottom: 50px;
  color: #111;
}

.features-wrapper {
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 25px;
  padding: 56px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto; /* keeps it centered */
  max-width: 1200px; /* sets a limit for wide screens */
  width: 100%; /* ensures it still fits on smaller screens */
}


/* EACH feature box */
.feature {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Icon inside each feature */
.feature img {
  width: 50px;
  margin-bottom: 15px;
}

/* Title text */
.feature p:first-of-type {
  font-family: 'instrument sans';
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Paragraph text */
.feature p:last-of-type {
  font-family: 'satoshi';
  color: rgba(5, 28, 97, 1);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  width: 371px;
}

/* Decorative icons (top-right and bottom-left) inside the background */
.decor-top,
.decor-bottom {
  position: absolute;
  pointer-events: none; /* makes sure they don't block clicks */
}

.decor-top {
  top: -40px;   /* move upward to make it half out */
  right: -40px; /* move right so it hangs off the edge */
}

.decor-bottom {
  bottom: -40px; /* move downward to make it half out */
  left: -40px;   /* move left so it hangs off the edge */
}

.step {
  background-color: rgba(5, 28, 97, 1);
  color: white;
  text-align: center;
  padding: 40px 20px;    
}

.blue-section {
  background-color: #E7ECFD;
  margin: 0;
  padding: 0;
  width: 100%;
}

.pik {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; 
}


.step-sp {
  font-family: 'instrument sans';
  font-size: 48px;
  font-weight: 700;
  font-style: bold;
  margin-bottom: 56px;
  margin-top: 120px;
}

.pr {
  color: rgba(255, 255, 255, 0.4);
}

.sh {
  font-family: 'satoshi';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 10px;
  background-color: #0038E6;
  border-radius: 100px;
  padding: 16px 24px;
  width: 214px;
  height: 56px;
  margin: 0 auto; 
  margin-bottom: 120px;
  text-decoration: none;
}

.sh:hover {
  color: rgba(254, 225, 52, 1);;
}

.steps-section {
  display: flex;
  flex-wrap: wrap; /* allows wrapping to next line if needed */
  justify-content: center; /* centers boxes horizontally */
  align-items: center; /* aligns them vertically */
  gap: 10px; /* spacing between boxes */
  padding: 60px 20px;
  text-align: center;
  margin-top: 56px;
  margin-bottom: 56px;
}

.step-box {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* makes text stay left-aligned */
  justify-content: center;
}

.step-tag {
  font-family: 'instrument sans';
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}


.step-box h3 {
  font-family: 'instrument sans';
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin: 0;
}

.step-box p {
  font-family: 'satoshi';
  color: #FFFFFF99;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

/* Step 1 box */
.steps-section .step-box:nth-child(1) {
  width: 628px;
  height: 241px;
}

/* Step 2 box */
.steps-section .step-box:nth-child(2) {
  width: 526px;
  height: 241px;
}

/* Step 3 box */
.steps-section .step-box:nth-child(3) {
  width: 570px;
  height: 241px;
}

/* Step 4 box */
.steps-section .step-box:nth-child(4) {
  width: 584px;
  height: 241px;
}

.slider-scroll {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.fine {
  display: flex;
  justify-content: space-between; /* pushes one to left, one to right */
  align-items: center; /* makes them stay on the same line */
  padding: 120px 80px; /* space around the section */
  flex-wrap: wrap; /* makes it responsive on smaller screens */
}

.eyb {
  font-family: 'instrument sans';
  font-size: 48px;
  font-weight: bold;
}

.sev {
  font-family: 'satoshi';
  font-size: 20px;
}

.ey {
  color:  #0038E6;
}

.vpp {
  font-family: 'satoshi';
    background-color: #0038E6;
    color: white;
    border-radius: 100px;
    padding: 16px 24px;
    width: 235px;
    height: 56px;
    display: flex; /* makes text + icon align in a row */
    align-items: center; /* vertically centers them */
    justify-content: center; /* horizontally centers everything */
    gap: 10px; /* space between text and icon */
    text-decoration: none;
}

.vpp:hover {
    color: rgba(254, 225, 52, 1);;
}

.brands {
  width: 100%;
  display: flex;
  justify-content: center; /* centers the logos */
  align-items: center; /* vertically aligns them */
  gap: 80px; /* spacing between logos */
  flex-wrap: wrap; /* allows logos to move to the next line on smaller screens */
  padding-bottom: 80px;
}

.brands img {
    flex-shrink: 0;
}

.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.event-card {
  flex: 0 0 auto;
  width: 416px;
  text-align: center;
}

.event-card img {
  width: 411px;
  height: 400px;
  object-fit: cover; 
  border-radius: 10px; 
}

.scroll-track {
  display: inline-flex;
  animation: scrollLeft 15s linear infinite;
  gap: 40px; 
  padding-bottom: 120px;
}

.scroll-track:hover {
  animation-play-state: paused; 
}

.event-card {
  display: inline-block;
  text-align: center;
}

.p1 {
  font-family: 'instrument sans';
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.p2 {
  font-family: 'inter';
  font-size: 16px;
  text-align: left;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.blue-background {
  background-color: rgba(1, 12, 42, 1);
  padding: 140px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-background > div {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.handpart {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  width: 500px;
  height: 576px;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  margin-right: 10px;
}

/* Gradient border magic */
.handpart::before {
  content: "";
  position: absolute;
  inset: 0; /* fills the entire div */
  padding: 4px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #5C81EE 100%,
    #CBACD7 0%,
    #FDF0F4 0%,
    #B3C5F7 100%,
    #EFE7F4 0%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; /* lets clicks pass through */
}


.handpng { /* Styling for the actual image element */
  width: calc(100% + 80px); /* Fill container + account for padding */
  max-width: none; /* Override any max-width defaults */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below the image */
  margin: -40px -40px 0 -40px; /* Pull the image out to fill the padded area */
  border-top-left-radius: 16px; /* Match container's top-left border radius */
  border-top-right-radius: 16px; /* Match container's top-right border radius */
}

.bo {
  font-family: 'instrument sans';
  font-size: 36px;
  font-weight: 700;
  font-style: bold;
  color: white;
  margin-top: 40px; /* Add top margin to push text down from the image */
  margin-bottom: 20px; /* Space between text and button */
  position: relative; /* Ensure text is above any potential background effect */
  z-index: 2;
}

.ppar {
  background: linear-gradient(270deg, #FEEB77, #0B43E6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

.soa {
  font-family: 'satoshi';
    background-color: #0038E6;
    color: white;
    border-radius: 100px;
    padding: 12px 14px;
    width: 235px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    margin-bottom: 50px; /* Space at the bottom of the container */
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.soa:hover {
  color: rgba(254, 225, 52, 1);;
}

.comparison-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
  overflow: visible; 
}

.column1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(231, 236, 253, 0.1);
  width: 377px;
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
}

.column2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(231, 236, 253, 0.1);
  width: 377px;
  border-bottom-right-radius: 24px;
  border-top-right-radius: 24px;
}

.column1 .pcolor p {
  /* Styles for paragraphs in the first column */
  margin-bottom: 10px; 
}

.column2 .pcolorr p {
  /* Styles for paragraphs in the second column */
  margin-bottom: 10px;
}

/* To ensure alignment if content length varies, you might need more advanced techniques
   like using a grid for the paragraphs themselves within each .pcolor / .pcolorr */
.pcolor, .pcolorr {
  display: grid;
  grid-template-columns: 1fr; /* Each paragraph takes full width */
  /* You can add grid-auto-rows: 40px; for example, if you want fixed height rows */
}


.bwp-header {
  background-color: rgba(255, 241, 162, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 10px;
  gap: 10px;
  height: 240px;
  color: rgba(37, 43, 55, 1);
  font-weight: 900;
  font-family: 'satoshi';
  font-size: 24px;
  border-top-left-radius: 24px;
}

.mds-header {
  /* Existing layout and text styles */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 10px; /* Adjust padding as needed */
  gap: 10px; /* Space between logo and text */
  height: 240px; /* Fixed height as in your previous code */
  color: rgba(255, 255, 255, 1);
  font-weight: 900;
  font-size: 24px;

  /* Background Gradient - Directly applied to the header */
  background: radial-gradient(
    88.34% 125.38% at 50.07% 44.69%,
    #0B43E6 0%,
    #0830A3 50%,
    #3C69EB 100%
  );

  /* Rounded Corners - Adjust to match the image */
  /* The image suggests a more prominent top-left and top-right radius */
  border-top-left-radius: 24px; /* Or whatever radius matches the image */
  border-top-right-radius: 24px; /* Matches your previous top-right-radius */
  border-bottom-left-radius: 4px; /* Subtle or no radius at the bottom */
  border-bottom-right-radius: 4px; /* Subtle or no radius at the bottom */
  
  /* Remove position: relative and overflow: hidden if not needed for other effects */
  position: relative; /* Keep relative for a potential pseudo-element for subtle highlight if desired */
  overflow: hidden; /* Keep overflow hidden for background effects */

  /* No explicit box-shadow shown in the image, but we can add subtle effects if needed later */

  /* Z-index might be needed if other elements overlap */
  z-index: 0; /* Default z-index for the main element */
}

/* If you want to add the very subtle top-left light effect,
   you could use a pseudo-element like this: */
.mds-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates a very subtle, almost transparent light source from the top-left */
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1) 0%, transparent 40%);
  border-top-left-radius: inherit; /* Inherit border radius from parent */
  border-top-right-radius: inherit;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  z-index: 1; /* Above the main background but below content if content has a z-index */
  pointer-events: none; /* Allows clicks to pass through to the element below */
}




.pcolor,
.pcolorr {
  font-family: 'satoshi';
  padding: 24px;
  font-size: 16px;
  flex-grow: 1;
}

.pcolor p,
.pcolorr p {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.pcolor p::before {
  content: "\2713";
  background-color: rgba(255, 241, 162, 1);
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  color: black;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

.pcolorr p::before {
  content: "\2713";
  background-color: rgba(60, 105, 235, 1);
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  color: black;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

.we-differ-ribbon {
  /* keeps it nicely positioned across the element */
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-17deg);
  transform-origin: center center;
  border: 1px solid rgba(255, 255, 255, 1);
  /* background gradient for that glowing effect */
  background: linear-gradient(276.61deg, #FEEB77 -31.57%, #0B43E6 94.81%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 32px;
  height: 36px; /* from your earlier style */
  min-width: 118px; /* adjusted width */
  
  /* padding, spacing, and layout */
  padding: 8px 24px;
  gap: 16px; /* from your previous style */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'instrument sans';
  /* shape & visibility */
  border-radius: 100px; /* rounded like a capsule */
  opacity: 1;
  overflow: visible;
  /* for text + icon arrangement */
  white-space: nowrap;
  text-align: center;
  /* make it interactive if needed */
  pointer-events: auto;
  will-change: transform;
}


/* If you prefer the ribbon to stay positioned relative to a specific container,
   change position back to absolute and make that container overflow: visible:
   .container { overflow: visible; position: relative; }
   .we-differ-ribbon { position: absolute; top: ...; left: ...; }
*/

.pricing-page-container{
  background-color: rgba(231, 236, 253, 1);
  padding: 120px 80px;
}

.pricing-page-container h1 {
  font-family: 'satoshi';
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  font-style: bold;
  color: rgba(37, 43, 55, 1);
  margin-bottom: 40px;
}

.part {
  color: rgba(11, 67, 230, 1);
}

.pricing-plans-wrapper {
  display: flex;
  justify-content: center; /* centers the 3 cards horizontally */
  align-items: stretch; /* aligns the top edges */
  gap: 40px; /* space between them */
  padding-bottom: 20px;
}

.pricing-plan {
  font-family: 'satoshi';
  background-color: white; /* white background for each card */
  color: #252b37;
  border-radius: 16px;
  padding: 24px 40px;
  width: 340px; /* fixed width ensures alignment */
  flex-shrink: 0; /* prevents them from shrinking */
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
}

.pricing-plan h2 {
  font-family: 'satoshi';
}

.pricing-plan-most-popular {
  background-color: rgba(5, 28, 97, 1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 24px 40px;
  width: 340px; /* fixed width ensures alignment */
  flex-shrink: 0; /* prevents them from shrinking */
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
}

.pricing-plan:hover {
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.pricing-plan-most-popular:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.pricing-plan-most-popular h2 {
  color: white;
}

.description {
  font-family: 'satoshi';
}

 .badge {
  background: linear-gradient(270deg, #FEEB77 0%, #0B43E6 100%);
  border-radius: 100px;
  padding: 4px 12px;
  color: #fff;
  font-size: 16px; 
}

.price {
  font-size: 40px;
  font-weight: 800;
  margin: 16px 0;
}

.price span {
  font-size: 14px;
  color: #666;
}

.price1 {
  font-size: 40px;
  font-weight: 800;
  margin: 16px 0;
  color: white;
}

.price1 span {
  font-size: 14px;
  color: #666;
}

.subscribe-button {
  background-color: #0038E6;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.subscribe-button:hover {
  background-color: #001E80;
  color: rgba(254, 225, 52, 1);;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  text-align: left;
}

.features-list li {
  color: rgba(5, 28, 97, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.features-list li::before {
  content: "✓";
  color: #0038E6;
  font-weight: bold;
}

.features-list1 {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  text-align: left;
}

.features-list1 li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.features-list1 li::before {
  content: "✓";
  color: #0038E6;
  font-weight: bold;
}

.pricing-plan-most-popular .features-list li::before {
  color: rgba(255, 255, 255, 1);
}


.footer-info {
  display: flex;
  font-family: 'satoshi';
  justify-content: space-between; /* spreads everything across the width */
  align-items: center;
  padding: 30px 60px;
  background: radial-gradient(
    50% 162.64% at 50% 50%,
    #0B43E6 0%,
    #0830A3 100%
  );
  color: white;
  border-radius: 24px;
}

/* Base style for the decorative images */
.footer-info > img:first-child,
.footer-info > img:last-child {
    max-width: 100px; /* Limit size on desktop if too large */
    height: auto;
}

.footer-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  /* Ensure text doesn't wrap awkwardly on small screens */
  white-space: nowrap;
}

.footer-info > div img {
  width: 24px;
  height: 24px;
}

/* add vertical line between the middle items */
.footer-info > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px; /* Increased space to account for original gap and line */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2); /* light line */
}

.workpic {
  padding: 80px 80px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.workpic h1 {
  font-family: 'instrument sans';
  font-size: 48px;
  font-style: bold;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}

.picwork {
  background-color: rgba(255, 252, 235, 1);
  border-radius: 64px;
  padding-top: 50px;
  padding-left: 150px;
  display: flex;
  justify-content: center; /* centers horizontally */
}

.hero {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 16px 80px;
}

/* Image stays normal */
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* This part creates the blur at the bottom */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%; /* only blur bottom half */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.8s ease;
  pointer-events: none;
}

/* On hover, blur comes in smoothly */
/* --- 1) make sure the pseudo blur layer lives under the text --- */
.hero:hover::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 10px;
  height: 55%;                      /* bottom half only */
  z-index: 1;                       /* under text */
  pointer-events: none;
  border-radius: inherit;
  /* blur lives here */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(to top, rgba(255,255,255,0.1),to bottom, rgba(255,255,255,0.4));
  transition: backdrop-filter 0.8s ease, background 0.6s ease;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* --- 2) REMOVE blur from .hero-content and force it above the pseudo-layer --- */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 80px;
  -webkit-backdrop-filter: none;   /* ensure no Safari leftover */
  z-index: 2;                       /* sits above ::after */
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  text-align: left;
}


/* Specific styles for elements inside hero-content */
.hero-content p, .hero-content h1 {
  /* Text color is transparent white initially, will become opaque on hover */
  color: white; /* Transparent white */
}

.hero-content .button {
    /* Button styles - border and text color also transparent white initially */
    border-radius: 100px;
    font-family: 'instrument sans';
    border: 1px solid rgba(255, 255, 255, 0); /* Transparent white border */
    cursor: pointer;
    color: white; /* Transparent white text */
    padding: 10px 20px;
    width: auto;
    height: auto;
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
}

/* Hover effect for the .hero container */
.hero:hover .hero-content {
  opacity: 1; /* Make content visible */
  transform: translateY(0); /* Move content into view */
  pointer-events: auto;
}

/* On hover, make text and button colors opaque white */
.hero:hover .hero-content p,
.hero:hover .hero-content h1,
.hero:hover .hero-content .button {
  color: white; /* Make text fully white */
  border-color: white; /* Make button border fully white */
}

/* Optional: Darken the image slightly on hover to make white text readable on top of it */
.hero:hover img {
    transform: scale(1.03);
}

/* Your existing hero-h1 styles (ensure it's not overriding the transparent/white transition) */
.hero-h1 {
  font-family: 'ínstrument sans';
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    /* Color is handled by .hero-content h1 rule above */
    margin-bottom: 10px;
}

.hero-content p {
  font-family: 'satoshi';
}

.button{
    border-radius: 100px;
    border: 1px solid white; /* Changed to white for visibility */
    cursor: pointer;
    color: white; /* Changed to white for visibility */
    padding: 10px 20px; /* Adjusted padding for better fit */
    width: auto; /* Let content dictate width */
    display: inline-block; /* Allows padding to work correctly */
    margin-bottom: 10px; /* Space below button if needed */
    white-space: nowrap; /* Prevents text from wrapping */
}

.ship {
  padding: 16px 80px;
  padding-bottom: 80px;

}

.ship img {
  background-color: rgba(231, 236, 253, 1);
  border-radius: 64px;
  padding: 20px;
  padding-bottom: 0;
}

.bluegud {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 100px;
  padding-bottom: 40px;
}

.bluegud * {
  margin: 0;
  padding: 0;
}

.tir {
  font-family: 'instrument sans';
  width: 157px;
  height: 36px;
  gap: 15.7px;
  opacity: 1;
  border-radius: 100px;
  border-width: 1px;
  padding: 8px 24px;
  background: linear-gradient(270deg, #FEEB77 0%, #0B43E6 100%);
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
}

.dag {
  font-family: 'instrument sans';
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  color: rgba(37, 43, 55, 1);
  margin-top: 16px;
  margin-bottom: 16px;
}

.guar {
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  color: rgba(11, 67, 230, 1);
}

.ttte {
  color: rgba(5, 28, 97, 1);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  margin-bottom: 40px;
  font-family: 'satoshi';
}

/* Styling for the overall section container */
.features-sectio {
    display: flex; /* Use flexbox to arrange items horizontally */
    justify-content: center; /* Center the group of items in the container */
    align-items: flex-start; /* Align items to the top if they have different heights */
    width: 100%; /* Take full width */
    max-width: 1000px; /* Limit overall width of the content area */
    margin: 0 auto; /* Center the entire section on the page */
    padding: 0; /* Vertical padding for the section */
    border-top: 1px solid #e0e0e0; /* Top horizontal line */
    border-bottom: 1px solid #e0e0e0; /* Bottom horizontal line */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    margin-bottom: 100px;
}

/* Styling for each individual feature item */
.feature-item {
    flex: 1; /* Allow each item to grow and shrink, taking equal space */
    padding: 20px; /* Padding inside each feature box */
    text-align: center; /* Center text and images */
    position: relative; /* Needed for the vertical dividing lines (pseudo-elements) */
    display: flex; /* Make content inside flex to help with vertical alignment if needed */
    flex-direction: column; /* Stack image, title, description vertically */
    align-items: center; /* Center items horizontally within the column */
    min-height: 150px; /* Ensure a consistent minimum height for items */
    justify-content: center; /* Vertically center content if min-height is set */
}

/* Vertical dividing lines between items */
.feature-item:not(:last-child)::after {
    content: ''; /* Required for pseudo-elements */
    position: absolute; /* Position relative to the parent .feature-item */
    right: 0; /* Align to the right edge of the item */
    top: 20%; /* Start line 20% down from the top */
    bottom: 20%; /* End line 20% up from the bottom */
    width: 1px; /* Thickness of the line */
    background-color: #e0e0e0; /* Color of the dividing lines */
}

/* Styling for the icons/images */
.feature-item img {
    width: 40px; /* Adjust icon size as needed */
    height: 40px;
    margin-bottom: 15px; /* Space below the icon */
    /* If your icons are SVGs or font icons, you can set their color directly: */
}

/* Styling for the main title of each feature */
.feature-title {
    font-family: 'instrument sans';
    font-size: 20px;
    font-weight: bold;
    color: #252B37; /* Dark blue as in the image */
    margin-top: 0; /* Remove default paragraph top margin */
    margin-bottom: 10px; /* Space below the title */
    line-height: 1.3;
}

/* Styling for the description text of each feature */
.feature-description {
    font-family: 'satoshi';
    font-size: 16px;
    color: #051C61; /* Lighter grey for description */
    line-height: 1.4;
    margin-top: 0; /* Remove default paragraph top margin */
    margin-bottom: 0; /* Remove default paragraph bottom margin */
}

/* Styling for the main section */
.faq-section {
    padding: 120px 80px; /* Adjust padding as needed for your overall layout */
    background-color: rgba(231, 236, 253, 1); /* Light blue background as in your image */
    color: #333;
    font-family: Arial, sans-serif;
}

.faq-main-title {
    font-family: 'instrument sans';
    font-size: 48px;
    font-weight: bold;
    color: rgba(37, 43, 55, 1);
    margin-bottom: 50px;
    text-align: left; /* Align main title to the left */
    max-width: 1000px; /* Match max-width of grid below */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Indent the title slightly */
    box-sizing: border-box;
}

/* Grid layout for FAQ items */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between grid items */
    max-width: 1000px; /* Max width for the grid */
    margin: 0 auto; /* Center the grid */
}

/* Style for individual FAQ item containers */
.faq-item-container {
    background-color: #fff; /* White background for each card */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Important for border-radius on expanded items */
}

/* Styling for the <details> element */
.faq-item {
    border: none; /* Remove default border */
    position: relative;
}

/* Styling for the <summary> element (the question) */
.faq-question {
    font-family: 'instrument sans';
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(37, 43, 55, 1); /* Dark blue for questions */
    cursor: pointer;
    background-color: transparent; /* Ensure no default summary background */
    user-select: none; /* Prevent text selection on click */
}

/* Custom icon for the summary */
.faq-question::after {
    content: '+'; /* Plus icon by default */
    font-size: 1.5em;
    font-weight: normal;
    color: #4a59bb; /* Blue color for icon */
    line-height: 1; /* Adjust vertical alignment */
    transition: transform 0.3s ease;
}

/* Change icon to 'X' when details is open */
.faq-item[open] > .faq-question::after {
    content: '×'; /* Times icon for 'X' */
    transform: rotate(180deg); /* Optional: Animate the plus to an X */
}

/* Styling for the answer content */
.faq-answer {
    padding: 0 25px 20px; /* Top padding is 0, rest is standard */
    font-size: 16px;
    font-family: 'satoshi';
    line-height: 1.6;
    color: rgba(5, 28, 97, 1);
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease-out; /* For smooth slide effect */
}

/* When open, set max-height to allow content to show */
.faq-item[open] .faq-answer {
    max-height: 200px; /* A value larger than the max possible height of content */
    padding-top: 10px; /* Add some top padding when open */
    transition: max-height 0.6s ease-in, padding-top 0.6s ease-in;
}

/* Style paragraph within answer */
.faq-answer p {
    margin: 0; /* Remove default paragraph margins */
}

/* Styling for the entire Call-to-Action section */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(5, 28, 97, 1); /* Dark blue background as in the image */
    border-radius: 80px; /* Rounded corners for the entire section */
    margin: 50px auto; /* Center the section and give some vertical space */
    max-width: 1200px; /* Adjust max-width as needed */
    box-sizing: border-box; /* Include padding in element's total width */
    gap: 24px;
}

.cta-content-wrapper {
    text-align: center; /* Center all content horizontally */
    max-width: 800px; /* Limit the width of the text content */
    padding: 100px 80px;
}

/* Styling for the main title */
.cta-title {
    font-size: 64px; /* Large font size */
    font-weight: 700;
    font-family: 'instrument sans';
    font-style: bold;
    color: rgba(255, 255, 255, 1); /* White text color */
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Styling for the description text */
.cta-description {
    font-size: 16px;
    font-weight: 400;
    font-family: 'satoshi';
    font-style: normal;
    color: rgba(255, 255, 255, 0.6); /* Lighter white/grey for description */
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Container for the buttons */
.cta-buttons {
    display: flex;
    font-family: 'satoshi';
    justify-content: center; /* Center buttons horizontally */
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Base button styles */
.btn {
    display: inline-flex; /* Use flex to align text and arrow */
    align-items: center; /* Vertically center content */
    padding: 15px 30px;
    border-radius: 8px; /* Slightly rounded button corners */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Primary outline button style (white border, transparent background) */
.btn-primary-outline {
    background-color: rgba(255, 255, 255, 1); /* White text */
    color: rgba(5, 28, 97, 1);
    border-radius: 100px;
    padding: 16px 24px;
    width: 201px;
    height: 56px;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.btn-primary-outline:hover {
  color: blue;
}

/* Primary filled button style (blue background, white text) */
.btn-primary-filled {
    background-color: rgba(0, 56, 230, 1); /* White text */
    color: rgba(255, 255, 255, 1);
    border-radius: 100px;
    padding: 16px 24px;
    width: 224px;
    height: 56px;
    display: inline-flex; /* makes text + icon align in a row */
    align-items: center; /* vertically centers them */
    justify-content: center; /* horizontally centers everything */
    gap: 10px;
}

.btn-primary-filled:hover {
    color: rgba(254, 225, 52, 1);;
}

/* Style for the arrow in the "Schedule a Call" button */
.btn-primary-filled::after {
    content: ''; /* The actual arrow content is in the HTML, this is just for potential future use or consistency */
    margin-left: 8px; /* Space between text and arrow */
}

/* Overall Footer Styling */
.main-footer {
    display: flex; /* Arrange children in a row */
    justify-content: space-between; /* Space out items: left, center, right */
    align-items: center; /* Vertically center items */
    padding: 56px 80px; /* Padding inside the footer */
    background-color: #fff; 
}

/* Left Section: Social Media Icons */
.footer-left {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icons */
}

.social-icon img {
    width: 24px; /* Size of your social media icons */
    height: 24px;
    vertical-align: middle; /* Align icons nicely */
    transition: transform 0.2s ease-in-out;
}

.social-icon:hover img {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Center Section: Copyright Text */
.footer-copyright {
    font-size: 16px;
    font-family: 'satoshi';
    font-weight: 500;
    color: rgba(5, 28, 97, 1); 
    margin: 0; 
}

/* Parent Wrapper for the entire carousel section */
.carousel-parent-wrapper {
    background-color: #f7f3ed; /* Your light background color */
    display: flex;
    flex-direction: column; /* Arrange title and carousel vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Takes full viewport height for centering, adjust if part of a larger page */
    overflow: hidden; /* Prevent scrollbar from rotated cards */
    padding: 20px 0; /* Add some vertical padding */
    box-sizing: border-box;
    width: 100%; /* Ensure it spans full width */
    padding-top: 50px;
    padding-bottom: 150px;
}

/* Carousel Container (renamed to carousel-content-area to avoid confusion with parent) */
.carousel-content-area {
    text-align: center;
    max-width: 900px; /* Adjust as needed */
    width: 100%;
    box-sizing: border-box;
}

.wcw {
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-family: 'instrument sans';
  font-weight: 700;
  font-style: bold;
  padding-bottom: 50px;
}

.wc {
  font-weight: 400;
  font-style: italic;
}

/* Carousel Wrapper for arrows and card stack */
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 350px; /* To accommodate card height and rotation */
}

/* Carousel Arrows */
.carousel-arrow {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2em;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Above cards */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.left-arrow {
    left: 100px;
}

.right-arrow {
    right: 100px;
}

/* Card Stack */
.card-stack {
    position: relative;
    width: 450px; /* Width of the main card */
    height: 280px; /* Height of the main card */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base Testimonial Card Styling */
.testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 20px; /* Adjust for rounded corners */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border: 2px solid #000; /* Black border */
    transition: all 0.5s ease-in-out; /* Smooth transitions for properties */
    transform-origin: center center; /* Ensure rotation is from center */
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
    font-family: 'Instrument Sans';
    font-weight: 600;
    font-style: semi-bold;
}

/* Specific Card Styles - for the initial setup */
/* Front Card - Yellow */
.front-card {
    background-color: #fce205; /* Yellow */
    z-index: 3; /* Topmost */
    transform: rotate(0deg); /* No initial rotation for the front */
}

/* Back Card 1 - Yellow, slightly rotated */
.back-card-1 {
    background-color: #fce205; /* Yellow */
    z-index: 2; /* Middle */
    transform: translate(15px, 10px) rotate(-24.2deg); /* Slight offset and rotation */
    opacity: 1; /* Fully visible */
}

/* Back Card 2 - Yellow, more rotated */
.back-card-2 {
    background-color: #fce205; /* Yellow */
    z-index: 1; /* Bottom */
    transform: translate(30px, 20px) rotate(12.26deg); /* More offset and rotation */
    opacity: 1; /* Fully visible */
}

/* Content inside cards */
.testimonial-text {
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows text to take available space */
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-actual-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.client-image-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd; /* Grey placeholder */
    margin-right: 10px;
}

.client-name {
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
}

.client-role {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Carousel Dots */
.carousel-dots {
    margin-top: 60px; /* Space between cards and dots */
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333; /* Darker dot for active slide */
}

/* --- JS will manipulate these classes to change the active card --- */

/* Example of what a 'blue' active card would look like */
/* You would likely have these classes defined and JS would add/remove them */
.active-blue {
    background-color: #000304; /* Light Blue */
    border-color: #000000; /* Dodger Blue */
    z-index: 3;
    transform: translate(15px, 10px) rotate(3deg); /* Example: inherits back-card-1's transform */
}

/* Example of what a 'green' active card would look like */
.active-green {
    background-color: #000000; /* Light Green */
    border-color: #000000; /* Lime Green */
    z-index: 3;
    transform: translate(30px, 20px) rotate(6deg); /* Example: inherits back-card-2's transform */
}

/* Media query for mobile responsiveness */
@media  (max-width: 600px) {
  body {
    overflow-x: hidden; /* Prevent horizontal scroll when sidebar is open */
  }

  header {
    padding: 8px 16px;
  }

  .head {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
  }

  .logo .build {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .logo img {
    width: 120px;
    height: 20px;
  }

  .main-nav {
    /* Existing properties */
    display: flex; /* Kept for initial setup but overridden by transform for hidden state */
    flex-direction: column;
    width: 100%; /* Occupy 70% of the screen width */
    height: 100%; /* Full viewport height */
    background-color: #fff;
    position: fixed; /* Fixed position for sidebar */
    top: 0;
    right: -100%; /* Start off-screen to the right (match width) */
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); /* Shadow for slide-in effect */
    z-index: 9998;
    transition: right 0.3s ease-in-out; /* Smooth transition for slide-in */
    justify-content: flex-start; /* Align items to top */
    padding-top: 100px; /* Space from the top for menu items */
    gap: 10px;
  }

   /* Hide desktop links on mobile */
  .main-nav-links-desktop {
    flex-direction: column;
  }

  .main-nav p {
    padding: 15px 0; /* Adjusted padding */
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .main-nav p:last-child {
    border-bottom: none;
  }

  .ltt {
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 700;
    font-style: Bold;
  }

  .hamburger-menu {
    display: flex;
    margin-left: 15px;
  }

    /* Hamburger menu bars color when open */
  .hamburger-menu.active .bar {
    background-color: white; /* --- ADDED: Change hamburger bars to white when active --- */
  }

  /* Social icons styling for mobile nav */
  .social-icons {
    display: flex; /* Show social icons on mobile */
    flex-direction: row; /* Keep them horizontal */
    justify-content: center; /* Center them within the sidebar */
    gap: 20px;
    padding: 20px 0;
    margin-top: auto;
  }

  .social-icons a img {
      filter: brightness(0) invert(1); /* Makes icons white for the deep blue background */
      width: 30px;
      height: 30px;
  }
  .social-icons a img:hover {
      transform: scale(1.1);
  }

  /* JavaScript will add this class to show the menu */
  .main-nav.active {
    right: 0; /* Slide into view */
  }

  /* Hamburger animation for open state */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #0038E6; /* deep blue for vibes */
  transition: right 0.3s ease;
}
  .main-nav.active {
    right: 0;
  }
  
  .main-nav p {
    color: white; /* white text for contrast */
    font-size: 18px;
    text-align: left;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* light border */
  }

  .dps {
    padding-top: 80px; /* Adjust top padding for smaller screens */
    padding-bottom: 0;
  }

  .de-mar {
    font-size: 40px; /* Reduce heading font size */
    line-height: 1.2; /* Adjust line height for readability */
    padding: 0 15px; /* Add horizontal padding */
  }

  .de-mar p {
    line-height: 100%;
  }

 .de-mar br {
    display: none; /*  hides the break, keeps text in one line */
  }

  .word::before {
    font-size: 48px; /* smaller font */
    padding: 10px 20px; 
   }

  .frame {
    padding: 6px 15px; 
    width: 294px; /* Adjust frame width for smaller screens */
    height: 90px; /* Adjust frame height for smaller screens */
    margin-bottom: 10px;
  }

  .pgs {
    font-size: 16px; /* Reduce paragraph font size */
    padding: 0 20px; /* Add horizontal padding to paragraphs */
    margin-top: 20px; /* Adjust top margin for spacing */
  }

  .sv {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px; /* Adjust gap between stacked buttons */
    margin-top: 34px; /* Adjust top margin for spacing */
    margin-bottom: 24px;
    padding: 0 20px; /* Add horizontal padding for the button container */
  }

  .sor,
  .vp {
    width: 60%; /* Make buttons take full width when stacked */
    max-width: 380px; /* Optional: Set a max-width for stacked buttons */
    height: auto; /* Allow height to adjust based on padding/content */
    padding: 14px 20px; /* Slightly adjust padding for smaller buttons */
    /* No color/border changes as per your request */
  }

  .tba {
    padding-top: 40px;
  }

  .worksec {
    margin-bottom: 32px;
  }

  .worksec p {
    font-size: 32px;
  }

  .worksec br {
    display: none;
  }

  .features-section {
    text-align: center;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .features-wrapper {
    flex-direction: column; /* Stack feature items vertically */
    align-items: center; /* Center align items */
    gap: 10px; /* Increase gap between items for better spacing */
  }

  .decor-top,
  .decor-bottom {
    display: none; /* Hide decorative elements on small screens */
  }

  .step-sp {
    font-size: 32px;
  }

  .eyb {
    font-size: 32px;
  }

  .fine {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 32px;
    padding-top: 40px;
  }

  .slider-scroll {
    padding: 10px 0; /* Less padding for smaller screens */
  }

  .scroll-track {
    gap: 20px; /* Smaller gap between cards */
    padding-bottom: 60px; /* Less padding below track */
    animation: scrollLeft 20s linear infinite; /* Slower animation for smaller content */
  }

  .event-card {
    width: 280px; /* Smaller width for cards */
    padding: 15px; /* Smaller internal padding */
  }

  .event-card img {
    width: 100%; /* Image takes full width of its smaller card */
    height: 200px; /* Smaller image height */
    border-radius: 8px; /* Slightly smaller border-radius */
    margin-bottom: 10px;
  }

  .p1 {
    font-size: 16px; /* Smaller font size for title */
    margin-bottom: 8px;
  }

  .p2 {
    font-size: 12px; /* Smaller font size for description */
    line-height: 1.3;
    white-space: normal; /* Allow text to wrap naturally */
    word-wrap: break-word; /* Ensure long words break */
  }

  .p2 br {
    display: none;
  }

  .blue-background {
    padding: 40px 16px; /* Adjust padding for mobile */
  }

  .blue-background > div {
    gap: 20px;
  }

  .comparison-container {
    margin: 16px 16px;
  }

  .handpart {
    width: 100%;
    height: auto;
  }

  .column1 {
    width: 171px;
  }

  .pcolor {
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    padding: 20px 15px;
  }

   .pcolorr {
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    letter-spacing: 0%;
  }

  
 .pcolor p::before,
  .pcolorr p::before {
    min-width: 14px; /* Even smaller width */
    height: 14px;   /* Even smaller height */
    font-size: 9px;  /* Even smaller checkmark font size */
    margin-right: 5px; /* Minimal space from text */
  }

   .pcolor p,
  .pcolorr p {
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    text-align: left;
  }

  .column2 {
    width: 171px;
  }
  
  .bwp-header {
    font-weight: 900;
    font-style: Black;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .mds-header {
    font-weight: 900;
    font-style: Black;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
  }

   .footer-info {
    flex-direction: row; /* Stack items vertically */
    padding: 24px; /* Adjust padding for mobile */
    border-radius: 16px; /* Slightly smaller border-radius */
    gap: 4px; /* Space between stacked items */
    text-align: center; /* Center text within the new column layout */
  }

  .footer-info > img:first-child,
.footer-info > img:last-child {
  display: block; /* Ensure the image is visible */
  width: 50%; /* Show half of its original width */
  overflow: hidden; /* Hide any overflowing parts */
}

  .footer-info > div {
    /* Reset flex properties if needed, or refine for vertical layout */
    justify-content: center; /* Center icon and text horizontally */
    white-space: normal; /* Allow text to wrap if necessary */
    flex-direction: column; /* Keep icon and text in a row for each item */
    gap: 8px; /* Slightly reduced gap between icon and text */
    font-size: 14px; /* Smaller font size for items */
    border: none;
  }

  /* Remove vertical lines and add horizontal ones */
  .footer-info > div:not(:last-child)::after {
    content: none; /* Remove vertical line */
  }


  .footer-info > div:last-child::before {
    /* No line after the last item */
    content: none;
  }

  .footer-info > div img {
    width: 20px; /* Slightly smaller icons */
    height: 20px;
  }

  .wcw {
    font-size: 24px;
  }

   .carousel-wrapper {
        min-height: 280px; /* Adjust min-height for smaller cards */
    }

    .card-stack {
        width: 236px; /* Smaller width for cards */
        height: 196px; /* Smaller height for cards */
    }

    .testimonial-card {
        padding: 20px; /* Reduce padding */
        border-radius: 15px; /* Slightly smaller border-radius */
    }

    .testimonial-text {
        font-size: 12px; /* Smaller font size for text */
        margin-bottom: 15px;
    }

    .client-actual-image,
    .client-image-placeholder {
        width: 25px; /* Smaller client image */
        height: 25px;
    }

    .client-name {
        font-size: 12px;
    }

    .client-role {
        font-size: 12px;
    }

    /* Adjust arrow positioning for smaller screens */
    .left-arrow {
        left: 20px; /* Move arrows closer to the edge */
    }

    .right-arrow {
        right: 20px; /* Move arrows closer to the edge */
    }
    
    .wcw {
      font-size: 36px; /* Adjust main title for smaller screens */
      padding-bottom: 30px;
    }

    .ship {
  padding: 40px 40px;
  }

  .ship img {
  border-radius: 17px;
  top: 7px;
  left: 24px;
  width: 294px;
  height: 306px;
  }

  .bluegud {
    flex-direction: column;
    text-align: center;
  }

  .bluegud img {
    width: 208px;
    height: 208px;

  }
  .dag, .guar{
    font-size: 32px;
  }

  .pricing-page-container {
    padding: 40px 16px;
  }

  .pricing-page-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .pricing-plans,
  .pricing-plan-most-popular {
    gap: 16px;
    padding: 24px;
    width: 343px;
  }

  .pricing-plans-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .tir {
    width: 126px;
    height: 31px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 12px;
    padding: 8px 24px;
    margin: 0 auto;
  }

  .features-sectio {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .faq-section {
        padding: 40px 20px; /* Reduced vertical and horizontal padding */
        padding-bottom: 40px; /* Adjusted if needed */
    }

    .faq-main-title {
        font-size: 32px; /* Smaller font size for mobile */
        text-align: center; /* Often preferred on mobile */
        padding-left: 0; /* Remove specific left indent on mobile */
        margin-bottom: 30px; /* Adjust spacing */
    }

    .faq-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 15px; /* Slightly reduced gap */
        padding: 0 10px; /* Add some horizontal padding to the grid itself if needed */
    }

    /* Adjust padding for individual faq items on small screens */
    .faq-item-container {
        border-radius: 8px; /* Slightly less rounded corners */
    }

    .faq-question {
        padding: 15px 20px; /* Smaller padding inside the question */
        font-size: 18px; /* Smaller question font size */
    }

    .faq-answer {
        padding: 0 20px 15px; /* Smaller padding inside the answer */
        font-size: 15px; /* Smaller answer font size */
    }

  .cta-section {
    padding: 40px 14px;
    max-width: 343px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-content-wrapper {
    border-radius: 40px;
    padding: 40px 24px;
  }

  .cta-description {
    font-size: 12px;
    word-wrap: normal;
    white-space: break-spaces;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-outline,
  .btn-primary-filled {
    width: 295px;
    height: 56px;
  }

  .main-footer {
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 20px;
    padding-left: 0;
  }

  .workpic {
    padding: 0 16px;
    padding-top: 40px;
  }

 .picwork img {
  width: 125px;
  height: 226px;
 }

 .picwork {
  border-radius: 18px;
  padding-left: 80px;
 }

  .workpic h1 {
      font-size: 36px;
    }

  .brands {
  width: 100%;
  display: flex;
  justify-content: center; /* centers the logos */
  align-items: center; /* vertically aligns them */
  gap: 30px; /* spacing between logos */
  flex-wrap: wrap; /* allows logos to move to the next line on smaller screens */
  padding-bottom: 40px;
}

.brands img {
    max-width: 90px;
  }

  .step {
    padding: 40px 16px;
  }

  .steps-section {
    padding: 0;
  }
  .step-sp {
    margin-bottom: 32px;
    margin-top: 0;
  }

  .step-box {
    margin-bottom: 16px;
    padding: 24px;
    border-radius: 24px
  }

  .sh {
    margin: 0;
  }

  .button {
    font-size: 16px;
    padding: 12px 20px;
    width: fit-content;
  }

  .hero img {
     width: 323px;
     height: 205px;
     border-radius: 18px;
     display: flex;
     justify-content: center;
     text-align: center;
     margin: 0 auto;
  }

  .hero {
     padding: 5px 16px;
     padding-left: 30px;
  }

.hero::after {
 display: none;
}

.hero:hover::after {
 display: none;
}

.hero-content {
 display: none;
}

  .ship {
    padding: 5px 16px;
    width: 100%;
}

.ship img {
  width: 293px;
  height: 306px;
  border-radius: 17px;
  margin-bottom: 0;
}

 .carousel-parent-wrapper {
    /* Reduce top and bottom padding specifically for small screens */
    padding-top: 20px; /* Smaller top padding */
    padding-bottom: 50px; /* Smaller bottom padding */
    min-height: unset; /* If min-height: 100vh is causing issues on small screens, remove it */
    /* You might also want to adjust other things for smaller screens, like arrow positioning or card size */
  }

  /* Example: Adjust arrow positioning on small screens to be closer to the cards */
  .left-arrow {
    left: 20px; /* Move arrows closer to the edge */
  }

  .right-arrow {
    right: 20px; /* Move arrows closer to the edge */
  }

  /* Example: Make card stack and cards smaller if needed */
  .card-stack {
    width: 300px; /* Smaller width for cards */
    height: 200px; /* Smaller height for cards */
  }

  .testimonial-card {
    padding: 20px; /* Less padding inside the cards */
    font-size: 0.9em; /* Smaller font size for text */
  }

  .wcw {
    font-size: 36px; /* Smaller title font size */
    padding-bottom: 20px; /* Less padding below the title */
  }

  .carousel-dots {
    margin-top: 30px; /* Less space above dots */
  }

  .main-footer {
    align-items: flex-start;
    padding-left: 30px;
}
}

@media (max-width: 769px) {
  .pricing-plans-wrapper {
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .blue-background > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .ship {
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.ship img {
  width: 80%;
  height: auto;
}

.features-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pricing-plans-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-button {
    font-size: 12px;
  }

  
/* Step 1 box */
.steps-section .step-box:nth-child(1) {
  width: 80%;
  height: 241px;
}

/* Step 2 box */
.steps-section .step-box:nth-child(2) {
  width: 80%;
  height: 241px;
}

/* Step 3 box */
.steps-section .step-box:nth-child(3) {
  width: 80%;
  height: 241px;
}

/* Step 4 box */
.steps-section .step-box:nth-child(4) {
  width: 80%;
  height: 241px;
}

.footer-info {
    flex-direction: row; /* Stack items vertically */
    padding: 24px; /* Adjust padding for mobile */
    border-radius: 16px; /* Slightly smaller border-radius */
    gap: 4px; /* Space between stacked items */
    text-align: center; /* Center text within the new column layout */
  }

/* Base style for the decorative images */
.footer-info > img:first-child,
.footer-info > img:last-child {
    width: 80%; /* Limit size on desktop if too large */
    height: auto;
}

.footer-info > div img {
  display: none;
}

.footer-info span {
    font-size: 12px;
  }
}

@media only screen and (max-width: 420px) {
  .feature p:last-of-type {
  font-size: 12px;
}

.step-tag {
  font-size: 12px;
}

.step-box h3{
  font-size: 24px;
}
.step-box p{
  font-size: 12px;
}

.hero Img {
  width: 80%;
  height: auto;
}

.hero-content {
  padding-left: 80px;
}

.hero-content p{
  font-size: 10px;
  width: 80%;
}

.button {
    font-size: 14px;
    width: fit-content;
  }

  .hero-h1 {
    font-size: 20px;
  }

  .handpart::before {
    display: none;
  }

  .handpng {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }



  .pricing-plan,
  .pricing-plan-most-popular {
    width: 280px;
  }
  
  .card-stack {
        width: 250px; /* Smaller width for cards */
        height: 200px; /* Smaller height for cards */
    }

    .testimonial-text{
      font-size: 12px;
  }

  .client-name {
      font-size: 10px;
    }

    .client-role {
      font-size: 10px;
    }
}



