

/* Font Face Declarations */
@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk regular";
  src: url("fonts/SpaceGrotesk-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Light";
  src: url("fonts/SpaceGrotesk-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk light";
  src: url("fonts/SpaceGrotesk-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* For lowercase version */
@font-face {
  font-family: "space grotesk";
  src: url("fonts/SpaceGrotesk-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
}

#main {
  height: 100vh;
  width: 100%;
  background-color: #fff;
}

#nav {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6vh 12vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#nav-logo img {
  width: 14vw;
}
.navbar {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6vh; /* spacing between items */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.navbar a {
  text-decoration: none;
  font-family: "space grotesk";

  color: #000;
  font-size: 3.2vh;
  /* font-weight: 00; */
}

/* Button style */
.navbar .btn {
  padding: 3vh 5vh;
  border: 1px solid #000;
  border-radius: 2.5vh;
}
.navbar .btn:hover {
  background: #000;
  color: #fff;
}

#hero {
  height: 100vh;
  width: 100%;
  /* background-color: cadetblue; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1vh;
  padding: 0vh 12vh 0vh 12vh;
}

#hero-left {
  height: 100vh;
  width: 50%;
  background-color: #fff;
}

#hero-right {
  height: 100vh;
  width: 50%;
  background-color: #fff;
}

#heading {
  font-family: "Space Grotesk Light";
  font-size: 6vh;
  padding-top: 10vh;
  line-height: 12vh;
}

#para {
  font-family: "Space Grotesk regular";
  font-size: 3vh;
  padding-top: 5vh;
  line-height: 4vh;
}

#consultation-btn {
  margin-top: 5vh;
}

#consultation-btn button {
  font-family: "Space Grotesk light";
  font-size: 3vh;

  background-color: black;
  color: white;
  padding: 3vh 5vh;
  border-radius: 2vh;
  border: none;
}

#right-image {
  height: 100%;
  width: 100%;
}

#right-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#page2 {
  height: 300vh;
  width: 100%;
  background-color: rgb(255, 255, 255);

  /* background-color: rgb(255, 120, 120); */
}

#logo-marquee {
  background-color: white;
  /* background-color: rgb(213, 116, 116); */
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden; /* hide scroll bar */
  position: relative;
}

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12vh;
  -webkit-animation: scroll 10s linear infinite;
  animation: scroll 10s linear infinite; /* speed of scroll */
}

#marquee-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; /* prevents shrinking */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#marquee-img img {
  height: 100%;
  width: 100%;
  -webkit-filter: brightness(0);
  filter: brightness(0); /* makes images black */
}

#services-div {
  margin-top: 10vh;
  /* background-color: burlywood; */
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0vh 12vh 0vh 12vh;
}

#services-div-h {
  background-color: #b9ff66;
  color: black;
  font-size: 6vh;
  padding: 0vh 1vh;
  border-radius: 1vh;
  font-weight: 500;
}

/* Common styling */
.card {
  height: 46vh;
  width: 92vh;
  background-color: wheat;
  border-radius: 7vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8vh;
  position: relative;
  font-weight: bold;
  color: #333;
  border: solid 1px black;
  -webkit-box-shadow: 0 5px 0 black;
  box-shadow: 0 5px 0 black; /* x-offset | y-offset | blur | color */
}

/* Layout */
.container {
  margin-top: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; /* center rows horizontally */
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6vh;
}

/* Unique styles */
.card1 {
  background-color: #f3f3f3;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vh;
}

.left {
  /* background-color: brown; */
  width: 50%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top-text {
  background-color: #b9ff66;
  color: black;
  font-size: 4.5vh;
  padding: 0vh 1vh;
  border-radius: 0.8vh;
  font-weight: 500;
}

.left {
  /* background-color: brown; */
  width: 50%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top-text {
  background-color: #b9ff66;
  color: black;
  font-size: 4.5vh;
  padding: 0vh 1vh;
  border-radius: 0.8vh;
  font-weight: 500;
}

.bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-logo {
  height: 6.5vh;
  width: 6.5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #b9ff66;
  font-size: 4vh;
  background-color: black;
}

.bottom-text {
  font-weight: 400;
  font-size: 3vh;
  color: black;
}

.card2 .top-text {
  background-color: #f3f3f3;
  color: black;
}
.card3 .top-text {
  background-color: #f3f3f3;
  color: black;
}
.card5 .top-text {
  background-color: #f3f3f3;
  color: black;
}

.card3 .bottom-logo {
  background-color: white;
  color: black;
}
.card3 .bottom-text {
  color: rgb(255, 255, 255);
}

.card6 .bottom-logo {
  background-color: white;
  color: black;
}
.card6 .bottom-text {
  color: rgb(255, 255, 255);
}

.right {
  /* background-color: brown; */
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.right img {
  height: 80%;
  width: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card2 {
  background-color: #b9ff66;
  color: white;
}
.card3 {
  background-color: #191a23;
  color: white;
}
.card4 {
  background-color: #f3f3f3;
  color: white;
}
.card5 {
  background-color: #b9ff66;
  color: white;
}
.card6 {
  background-color: #191a23;
  color: white;
}

/* PAGE 2 CTA */
#page2-cta {
  height: 70vh;
  width: 100%;
  /* background-color: #b9ff66; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6vh;
}

#cta-cont {
  background-color: #f3f3f3;
  height: 53vh;
  width: 88%;
  border-radius: 7vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 25vh;
  padding: 0 10vh 0 10vh;
}

#cta-left {
  /* background-color: blueviolet; */
  width: 50%;
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 4vh;
}

#cta-title {
  font-size: 4.5vh;
  font-weight: 500;
}

#cta-button button {
  font-family: "Space Grotesk light";
  font-size: 3vh;
  font-weight: 500;
  background-color: black;
  color: white;
  padding: 3vh 5vh;
  border-radius: 2vh;
  border: none;
}

#cta-right {
  /* background-color: rgb(43, 226, 137); */
  width: 30%;
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: baseline;
  -ms-flex-pack: baseline;
  justify-content: baseline;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cta-right img {
  height: 140%;
  width: 150%;
}

/* PAGE 3 */

#page3 {
  height: 80vh;
  width: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6vh;
}

/* Heading Section */
#casestudy-div {
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0vh 12vh 0vh 14vh;
}

#casestudy-div-h {
  background-color: #b9ff66;
  color: black;
  font-size: 6vh;
  padding: 0vh 1vh;
  border-radius: 1vh;
  font-weight: 500;
}

#casestudy-div-p {
  font-size: 3vh;
  color: #333;
  line-height: 3.5vh;
}

/* Case Study Container */
.page3-container {
  width: 88vw;

  background-color: #191a23;
  border-radius: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6vh 2vw;
  gap: 2vw;
  height: 50vh; /* fixed height */
}

/* Each Column */
.page3-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #ffffff;
  font-size: 2.7vh;
  line-height: 4vh;
  padding: 0 2vw;
  font-weight: 300;
}

.page3-card a {
  font-size: 3vh;
  font-weight: 200;
}

.page3-card a i {
  font-size: 6vh; /* adjust size as you want */
  line-height: 1; /* prevents extra spacing */
}

/* Divider */
.divider {
  width: 0.1vw; /* a bit thicker */
  background-color: rgba(255, 255, 255, 0.857); /* more visible */
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch; /* make it take full height of container */
  border-radius: 1vh; /* optional: smooth edges */
  margin: 4vh 0;
}

/* Learn More Link */
.learn-more {
  margin-top: 3vh;
  font-size: 2vh;
  font-weight: 500;
  color: #b9ff66;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5vw;
  cursor: pointer;
  text-decoration: none;
}

.learn-more i {
  font-size: 2.5vh;
}

/* PAGE4 */
#page4 {
  min-height: 150vh; /* let content grow instead of fixed height */
  width: 100%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6vh;
}

/* Accordion */
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4vh;
  width: 88%;
  /* height removed */
}

.accordion-item {
  background: #f2f2f2;
  border-radius: 5vh;
  -webkit-box-shadow: 0 5px 0 black;
  box-shadow: 0 5px 0 black;
  overflow: hidden;
  border: 1px solid black;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4vh 8vh;
  cursor: pointer;
  font-weight: 600;
}

.accordion-num {
  font-size: 8vh;
  font-weight: 700;
}

.accordion-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 5vh;
  font-size: 5vh;
  font-weight: 500;
}
.accordion-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid black;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  font-weight: 600;
  font-size: 24px; /* px for consistency */
  line-height: 1;
  background: white;
}

/* Accordion content */
.accordion-content {
  padding: 5vh 0;
  font-size: 3vh;
  display: none;
  border-top: 1px solid black;
  width: 90%;
  margin: 0 auto;
}

/* Active state */
.accordion-item.active {
  background: #b6ff70;
}

/* PAGE 5 */

#page5 {
  min-height: 80vh; /* let content grow instead of fixed height */
  width: 100%;
  background-color: #ffffff;
  /* background-color: #ffa3a3; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6vh;
}

/* ANIMATIONS */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); /* move half track */
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); /* move half track */
  }
}

/* TEAM CARDS STYLING */
.team-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6vh;
  padding: 1vh 12vh;
  width: 100%;
  /* background-color: #a3fffc; */
}

.team-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4vh;
  width: 100%;
}

.team-card {
  background-color: white;
  border: 1px solid black;
  border-radius: 5vh;
  -webkit-box-shadow: 0 5px 0 black;
  box-shadow: 0 5px 0 black;
  padding: 6vh 5vh;
  width: calc(33.33% - 3vh);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 2vh;
  margin-bottom: 2vh;
  /* background-color: blue; */
}

.team-card-image img {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 2;
  margin-bottom: 2vh;
}

.team-header-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /* background-color: yellow; */
  margin-bottom: 2vh;
}

.team-name {
  font-size: 3.2vh;
  font-weight: 500;
  margin: 0;
  color: black;
  line-height: 1.2;
}

.team-position {
  font-size: 2.8vh;
  font-weight: 400;
  margin: 0.5vh 0 0 0;
  color: #1e1e1e;
  /* background-color: rebeccapurple; */
}

.team-divider {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 0 0 3vh 0;
}

.team-bio {
  font-size: 2.6vh;
  line-height: 1.4;
  margin: 0;
  color: #000000;
  font-family: "Space Grotesk";
  font-weight: 400;
  /* background-color: cadetblue; */
}

.team-social {
  position: absolute;
  top: 4vh;
  right: 4vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  background-color: #000;
  color: #b6ff70;
  font-size: 3vh;
  font-weight: bold;
  text-decoration: none;
}

.team-social img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.team-btn {
  /* background-color: yellow; */
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.team-btn button {
  font-family: "Space Grotesk light";
  font-size: 3vh;

  background-color: #191a23;
  color: white;
  padding: 3.5vh 11vh;
  border-radius: 2vh;
  border: none;
}

#page6 {
  min-height: 100vh; /* let content grow instead of fixed height */
  width: 100%;
  /* background-color: #ffffff; */
  /* background-color: #ffa3a3; */
}

#testi-cont-parent {
  height: 100vh;
  width: 100%;
  /* background-color: #b5bcf6; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

#testi-cont {
  height: 95vh;
  width: 90%;
  background-color: #191a23;
  border-radius: 10vh;
}

.rating-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* remove gap between arrows and stars */
  padding: 2vh 0;
}

.nav-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 5vh;
  cursor: pointer;
}

.nav-btn:hover {
  color: #b6ff70; /* highlight on hover */
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vh; /* space between stars */
  margin: 0 24vh; /* space on left and right of stars */
}

.stars i {
  font-size: 3.5vh;
  color: #fff;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); /* rotate 40 degrees */
}

.stars i.active {
  color: #b6ff70; /* highlighted star */
}

#testimonial-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; /* center the images */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden; /* hide overflowing parts of side images */
  width: 100%; /* full width container */
  gap: 5vw; /* negative gap to overlap slightly if needed */
  padding: 10vh 0 12vh 0;
  scroll-behavior: smooth; /* smooth scrolling */
}

/* PAGE 7 */

#page7 {
  min-height: 100vh;
  width: 100%;
  /* background-color: yellow; */
}

#form-cont-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8vh;
  position: relative;
}

#form-cont-child {
  height: 120vh;
  width: 90%;
  background-color: #f3f3f3;
  border-radius: 10vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}

#form-left {
  background: #f3f3f3; /* light background */
  padding: 30px;
  width: 60%; /* keep it balanced */
  font-family: "Space Grotesk";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 12vh;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  max-width: 90vh; /* keep form compact */
}

/* Radio buttons row */
.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4vh; /* space between the two options */
  margin-bottom: 5vh;
}

.radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; /* circle and text in same line */
  gap: 2vh; /* space between circle and text */
  font-size: 18px; /* make text bigger */
  position: relative;
  cursor: pointer;
}

/* Hide the actual radio button completely */
.radio-option input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

/* Create custom radio button using ::before */
.radio-option span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 1px solid black;
  border-radius: 50%;
  vertical-align: middle;
}

/* Style for checked state */
.radio-option input[type="radio"]:checked + span::before {
  background-color: #b6ff70;
  border: 1px solid black;
}

/* Labels */
label {
  font-size: 2.8vh;
  color: #222;
}

/* Inputs */
input,
textarea {
  padding: 3vh;
  border: 1px solid black;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  width: 100%; /* match form size */
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* prevents overflow */
}

textarea {
  min-height: 120px;
  resize: none;
}

/* Button */
form button {
  background: #14141a;
  color: white;
  padding: 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%; /* same width as inputs */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 3vh;
}

button:hover {
  opacity: 0.9;
}

/* Right side */
#form-right {
  height: 80%;
  width: 40%;
  background: transparent; /* remove green bg */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

#form-right img {
  width: 80%; /* not full width */
  height: auto; /* keep aspect ratio */
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 14vh;
}

footer {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#footer-cont {
  height: 80vh;
  width: 90%;
  background-color: #191a23;
  color: #fff;
  border-radius: 8vh 8vh 0 0;
  padding: 8vh 10vh;
}

#footer-top {
  /* background-color: #b9ff66; */
  width: 100%;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer-logo {
  height: 100%;
  width: 15%;
  /* background-color: rebeccapurple; */
}

#footer-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline;
}

#footer-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6vh;
}

#footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vh;
  /* background-color: cadetblue; */
}
.soc {
  height: 6vh;
  width: 6vh;
  border-radius: 50%;
  /* background-color: #bf70ff; */
}

.soc img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* FOOTER MIDDLE */

/* Container */
#footer-middle {
  width: 100%;
  margin-top: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5vh;
}

/* Left column */
#footer-middle #m-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: white;
  font-size: 16px;
}

#footer-middle #m-left p {
  margin-bottom: 4vh;
  font-weight: 400;
}

#footer-middle #m-left h3 {
  background: #b6ff70;
  color: black;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 5vh;
  font-weight: 500;
}

/* Right column */
/* Right side box */
/* Right column container */

#subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; /* make sure it's in a row */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  background: #2b2b31;
  padding: 30px 40px;
  border-radius: 20px;
  max-width: 100%;
  height: 32vh;
}

#subscribe-form input[type="email"] {
  padding: 15px 20px;
  font-size: 18px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  background: transparent;
  color: #fff;
  outline: none;
  width: 280px;
  display: inline-block; /* force inline */
}

#subscribe-form input::-webkit-input-placeholder {
  color: #ffffff;
  font-size: 18px;
}

#subscribe-form input::-moz-placeholder {
  color: #ffffff;
  font-size: 18px;
}

#subscribe-form input:-ms-input-placeholder {
  color: #ffffff;
  font-size: 18px;
}

#subscribe-form input::-ms-input-placeholder {
  color: #ffffff;
  font-size: 18px;
}

#subscribe-form input::placeholder {
  color: #ffffff;
  font-size: 18px;
}

#subscribe-form button {
  padding: 15px 25px;
  font-size: 18px;
  border: none;
  border-radius: 15px;
  background: #b5ff5b;
  color: #000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block; /* keep side by side */
}

#subscribe-form button:hover {
  background: #a1f34e;
}

#footer-divider {
  height: 1px;
  background-color: white;
  width: 100%;
  margin-top: 3vh;
}

#footer-bottom {
  margin-top: 6vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6vh;
}

#footer-bottom .privacy {
  text-decoration: underline;
}
.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -o-linear-gradient(top, white, black);
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
  background: linear-gradient(to bottom, white, black);
}