/* Placeholder for extracted and custom styles */


:root{
  --primary-color: #fe5c02;
  --secondary-color: #2563eb;
  --text-color: #222;
  --background-color: #f9f9f9;
  --white: #fff;
  --black: #000;
}


.our_mission_text_header_paragraph {
  background: linear-gradient(90deg, #fe5c02, #2563eb, #fe5c02, #2563eb);
  background-size: 300% 300%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  padding: 24px 0;
  animation: gradient-move 4s linear infinite;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
}

header, main, section {
  width: 100%;
}

html, body {
  scroll-behavior: smooth;
}

/* Navbar Styles */

.navbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  /* background: linear-gradient(90deg, #fe5c02 0%, #2563eb 100%); */
  color:var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5em 1.2em;
  border-radius: 2em;

  box-shadow: 0 2px 12px rgba(254,92,2,0.08), 0 1.5px 6px rgba(37,99,235,0.08);
  position: relative;
  z-index: 10;
  cursor: pointer;
  letter-spacing: 0.03em;
  border: 1px solid rgba(254, 92, 2, 0.4);
}
.badge-icon {
  font-size: 16px;
  margin-right: 0.3em;
}
.pulse-badge {
  animation: pulse-badge-glow 1.7s infinite cubic-bezier(0.4,0,0.6,1);
}
@keyframes pulse-badge-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(254,92,2,0.25), 0 2px 12px rgba(254,92,2,0.08);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(254,92,2,0), 0 2px 12px rgba(254,92,2,0.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254,92,2,0.25), 0 2px 12px rgba(254,92,2,0.08);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px 30px;
}
.navbar-logo-img {
  height: 2rem;
}
.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-link.active {
  color: var(--primary-color);
  text-decoration: underline;
}
.nav-link:hover {
  color: #2563eb;
}
.navbar-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.menu-icon {
  display: inline-block;
}
/* Mobile nav */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 2000;
}
.navbar-close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #222;
  cursor: pointer;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .navbar-desktop {
    display: none;
  }
  .navbar-menu-btn {
    display: block;
  }
}
/* Show mobile menu when active (JS will toggle .active class) */
.navbar-mobile.active {
  display: flex;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  padding: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}



.hero-background{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: url('../assets/images/hero-bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroZoom 8s ease-in-out infinite alternate;
  opacity: 0.1;
  z-index: 2;
}


.hero-image-carousal{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.hero-image-carousal img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}


/* .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-bg.png') no-repeat;
  z-index: 0;
  opacity: 0.6;
  background-size: cover;
  background-position: center;
} */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;

}
@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
}
.hero-text {
  flex: 1;
  max-width: 740px;
  background: rgba(255,255,255,0.7);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  z-index: 1;
}
.pulse-chip {
  display: inline-flex;
  align-items: center;
  background: #fff6ed;
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 1rem;
  padding: 0.25em 1em 0.25em 0.5em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  font-size: 1em;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #222;
}
@media (min-width: 600px) {
  .hero-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 42px;
  }
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-cta {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #fff;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: #ff7e33;
  transform: translateY(-2px) scale(1.04);
}
/* .hero-image-wrapper removed for fullscreen background */
.hero-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.carousel-image {
  display: none;
  width: 100%;
  min-width: 550px;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: opacity 0.5s;
}

.carousel-image.active {
  display: block;
  opacity: 1;
}


@media (max-width: 600px) {
  .hero-image-wrapper {
    max-width: 95vw;
  }
  .carousel-image {
    min-width: 90vw;
    height: 38vw;
    min-height: 180px;
    max-height: 60vw;
  }
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: #222;
  opacity: 0.08;
  border-radius: 2rem;
  z-index: 1;
}
.hero-image {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
  height: 600px;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 90px 0 40px 0;
  }
  .hero-content {
    gap: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* Humanoid Section Styles */
.humanoid-section {
  position: relative;
  min-height: auto;
  padding: 120px 0 60px 0;
  background: #fff;
  overflow: visible;
  z-index: 1;
}
.humanoid-title {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  /* padding: 0 1.5rem; */
}
.humanoid-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
  color: #222;
}
@media (min-width: 600px) {
  .humanoid-heading {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .humanoid-heading {
    font-size: 3.2rem;
  }
}
.humanoid-cards {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 420px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 46px;
}

.humanoid-cards p {
  font-size: 16px;
  line-height: 22px;
  position: relative;
  padding-left: 15px;
  width: 760px;
}
@keyframes pulse-bg {
  0%   { background: var(--primary-color); }
  50%  { background: #ffa94d; }
  100% { background: var(--primary-color); }
}
.humanoid-cards p::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
  animation: pulse-bg 2s infinite ease-in-out;
}
.humanoid-cards p:hover::before {
  background: var(--primary-color);
  animation: none;
}
.humanoid-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #181818;
  opacity: 0;
  transform: translateY(200px) scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.19,1,0.22,1), transform 0.5s cubic-bezier(0.19,1,0.22,1);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.humanoid-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 0;
}
.humanoid-card-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.humanoid-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
}
.humanoid-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 600px) {
  .humanoid-card {
    height: 420px;
  }
  .humanoid-card-content h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .humanoid-card {
    height: 460px;
  }
  .humanoid-card-content h3 {
    font-size: 2rem;
  }
}
/* Card stacking and transitions (to be toggled by JS) */
.humanoid-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 3;
  pointer-events: auto;
}
.humanoid-card.prev {
  opacity: 0.9;
  transform: translateY(60px) scale(0.97);
  z-index: 2;
  pointer-events: none;
}
.humanoid-card.next {
  opacity: 0.7;
  transform: translateY(120px) scale(0.94);
  z-index: 1;
  pointer-events: none;
}

/* Specs Section Styles */
.specs-section {
  background: #fff;
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 9;
}
.specs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.our_mission_body {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  z-index: 1;
  padding: 20px;
  /* Add extra padding for border visibility */
  box-sizing: border-box;
}
.our_mission_body::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 1.7rem;
  z-index: -1;
  padding: 0;
  background: linear-gradient(270deg, #fe5c02, #2563eb, #fe5c02, #2563eb);
  background-size: 400% 400%;
  animation: animated-border 8s linear infinite;
}
.our_mission_body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  z-index: -1;
  background: #fff;
}
@keyframes animated-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.our_mission_body_1{
  /* background: url('../assets/images/background-section1.png') no-repeat; */
  background-size: cover;
  background-position: center;
  padding: 20px;
  color: var(--text-color);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.our_mission_body_2{
  /* background: url('../assets/images/background-section2.png') no-repeat; */
  background-size: cover;
  background-position: bottom;
  padding: 20px;
  color: var(--text-color);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.our_mission_body_3{
  /* background: url('../assets/images/background-section3.png') no-repeat; */
  background-size: cover;
  background-position: center;
  padding: 20px;
  color: var(--text-color);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.our_mission_body h1{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-color);
}
.our_mission_body p{
  font-size: 20px;
  line-height: 26px;
  margin-top: 2rem;
}
.specs-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.specs-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  border-radius: 4px;
}
.specs-headline {
  max-width: 900px;
  padding-left: 2rem;
}
.specs-textmask {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  background: url('/text-mask-image.jpg') center/cover repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .specs-headline {
    padding-left: 0.5rem;
  }
  .specs-textmask {
    font-size: 1.08rem;
  }
}

.founder_main_container{
  font-display: flex;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;

}
.left_founder_image{
  width: 550px;
  height: 495px;
  background: url(../assets/images/founder-image.jpeg) no-repeat;
  background-size: cover;
  background-position: top;
  background-position: -3px 0px;
  position: relative;
  border-radius: 8px;
  border: 3px solid #f1996a;
}
.founder_text h1{
  color: var(--primary-color);}

  .founder_text{
    width: calc(100% - 500px);
  }
  .founder_text p {
    font-size: 16px;
    line-height: 22px;
  }

.left_founder_image::after{
  content: " ";
  background: #f3f5f4;
  position: absolute;
  right: 2px;
  top: 0;
  bottom: 0;
  width: 4px;
}

/* Details Section Styles */
.details-section {
  background: #fff;
  padding: 60px 0 60px 0;
}
.details-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0 1.5rem;
}
.details-card, .details-form-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 500px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.details-card-header {
  background: url('/background-section3.png') center/cover no-repeat;
  border-radius: 1.2rem 1.2rem 0 0;
  color: #fff;
  padding: 1.5rem 1rem 1rem 1rem;
  margin: -2.5rem -2rem 1.5rem -2rem;
}
.details-card-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.details-card-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #222;
}
.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.details-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1em;
  background: #f9f9f9;
  border-radius: 0.8em;
  padding: 0.8em 1em;
  font-size: 1rem;
}
.details-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 0.5em;
}
.details-label {
  font-weight: 600;
  color: #222;
}
.details-form-card {
  background: #f8fafc;
}
.details-form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.details-form h3 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: 600;
}
.details-form input {
  padding: 0.9em 1em;
  border-radius: 0.7em;
  border: 1px solid #d1d5db;
  font-size: 1em;
  margin-bottom: 0.2em;
}
.details-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85em 2em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.details-form button:hover {
  background: #ff7e33;
}
.details-form-success {
  color: #16a34a;
  font-size: 1em;
  margin-top: 0.5em;
  text-align: center;
}
@media (max-width: 900px) {
  .details-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Showcase Section Styles */
.showcase-section {
  background: #fff;
  padding: 60px 0 60px 0;
}
.showcase-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.showcase-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.showcase-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7em;
}
.showcase-header p {
  color: #555;
  font-size: 1.1rem;
}
.showcase-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  overflow: hidden;
  margin: 0 auto;
  max-width: 700px;
}
.showcase-img {
  width: 100%;
  display: block;
  border-radius: 1.5rem 1.5rem 0 0;
}
.showcase-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.showcase-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7em;
  color: var(--primary-color);
}
.showcase-content p {
  color: #444;
  font-size: 1em;
}

/* Features Section Styles */
.features-section {
  background: #f9fafb;
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 6;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.features-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.features-header .pulse-chip {
  display: inline-block;
  background: #fff0e6;
  color: var(--primary-color);
  border-radius: 999px;
  padding: 0.45em 1.3em;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8em;
}
.features-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5em;
}
.features-subtitle {
  color: #666;
  font-size: 1.13rem;
  max-width: 600px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.feature-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 2.1rem 1.6rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f2f2f2;
  height: 350px;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(254,92,2,0.09);
  transform: translateY(-3px) scale(1.025);
  border-color: #ffd6b8;
}
.feature-icon {
  background: #fff0e6;
  color: var(--primary-color);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  stroke: var(--primary-color);
}
.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7em;
  color: #222;
}
.feature-desc {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Fix lint: remove text-fill-color property */
.specs-textmask {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  background: url('/text-mask-image.jpg') center/cover repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */
  display: block;
  line-height: 1.3;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: #fff;
  padding: 80px 0 70px 0;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.testimonials-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.testimonials-header .pulse-chip {
  display: inline-flex;
  align-items: center;
  background: #fff0e6;
  color: var(--primary-color);
  border-radius: 999px;
  padding: 0.45em 1.3em;
  font-weight: 600;
  font-size: 1rem;
}
.chip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1em;
  font-weight: 700;
  margin-right: 0.7em;
}
.testimonials-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  margin-left: 1.2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .testimonials-title {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.testimonial-card {
  background-size: cover;
  background-position: center;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 2.2rem 2rem 2rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(36,36,62,0.82) 0%, rgba(254,92,2,0.56) 100%);
  z-index: 0;
  border-radius: 1.2rem;
}
.testimonial-quote {
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 2.1rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.testimonial-author {
  position: relative;
  z-index: 1;
}
.testimonial-name {
  font-weight: 700;
  font-size: 1.08em;
}
.testimonial-role {
  color: #ffe6d1;
  font-size: 0.97em;
  font-weight: 400;
}
.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(254,92,2,0.15);
  transform: translateY(-3px) scale(1.025);
}

/* Newsletter Section Styles */
.newsletter-section {
  background: linear-gradient(120deg, #fff7f0 0%, #ffe6d1 100%);
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 9;
}
.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.newsletter-content {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 8px 32px rgba(254,92,2,0.07);
  padding: 2.8rem 2rem 2.5rem 2rem;
  text-align: center;
}
.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.7em;
}
.newsletter-desc {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.7em;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1em;
}
.newsletter-form input[type="email"] {
  width: 100%;
  max-width: 340px;
  padding: 0.9em 1.1em;
  border-radius: 0.7em;
  border: 1px solid #ffd6b8;
  font-size: 1em;
  margin-bottom: 0.2em;
  outline: none;
  transition: border 0.18s;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--primary-color);
}
.newsletter-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85em 2.2em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #ff7e33;
}
.newsletter-success {
  color: #16a34a;
  font-size: 1em;
  margin-top: 0.5em;
  text-align: center;
}
@media (max-width: 600px) {
  .newsletter-content {
    padding: 1.5rem 0.7rem 1.3rem 0.7rem;
  }
  .newsletter-title {
    font-size: 1.3rem;
  }
}

/* Made By Humans Section Styles */
.madeby-section {
  background: #fff;
  padding: 38px 0 38px 0;
  border-top: 1px solid #f3f3f3;
}
.madeby-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.madeby-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff0e6;
  box-shadow: 0 4px 16px rgba(254,92,2,0.07);
  margin-bottom: 1.2rem;
  object-fit: contain;
}
.madeby-byline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.madeby-note {
  color: #444;
  font-size: 1.06rem;
  text-align: center;
  max-width: 480px;
}
@media (max-width: 600px) {
  .madeby-logo {
    width: 40px;
    height: 40px;
  }
  .madeby-byline {
    font-size: 1.05rem;
  }
  .madeby-note {
    font-size: 0.98rem;
  }
}

/* Footer Section Styles */
.footer-section {
  background: #fff;
  border-top: 1px solid #f3f3f3;
  padding: 38px 0 0 0;
  position: relative;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding-bottom: 1.2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.footer-logo {
width: 158px;
}
.footer-brandname {
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
}
.footer-links a {
  color: #444;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--primary-color);
}
.footer-social {
  display: flex;
  gap: 1em;
}
.footer-social-icon {
  color: var(--primary-color);
  background: #fff0e6;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  font-size: 1.2em;
}
.footer-social-icon:hover {
  background: #ffd6b8;
}
.footer-bottom {
  border-top: 1px solid #f3f3f3;
  text-align: center;
  color: #888;
  font-size: 1em;
  padding: 1.2rem 0 0.8rem 0;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-links {
    gap: 1em;
  }
}
@media (max-width: 600px) {
  .footer-logo {
    width: 28px;
    height: 28px;
  }
  .footer-brandname {
    font-size: 1em;
  }
  .footer-links a {
    font-size: 0.98em;
  }
}

/* Add more styles as components are built */

.card_prod_1{
  background: url('../assets/images/prod-sheet-1.webp') no-repeat;
  background-size: cover;
  background-position: center;

}

.card_prod_2{
  background: url('../assets/images/prod-sheet-4.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
.card_prod_3{
  background: url('../assets/images/prod-sheet-5.webp') no-repeat;
  background-size: cover;
  background-position: center;
}
.card_prod_4{
  background: url('../assets/images/prod-sheet-6.png') no-repeat;
  background-size: cover;
  background-position: center;
}
.card_prod_5{
  background: url('../assets/images/prod-sheet-7.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
.card_prod_6{
  background: url('../assets/images/prod-sheet-8.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

/* Overlay for product cards */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: 1.2rem;
  pointer-events: none;
  z-index: 2;
}
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card:hover .card-overlay,
.feature-card:focus-within .card-overlay {
  opacity: 1;
  pointer-events: auto;
}
.overlay-text {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5em 2em;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.16);
}
@media (max-width: 600px) {
  .overlay-text {
    font-size: 1rem;
    padding: 1em 0.5em;
  }
}

.dark-orange{
  background: var(--primary-color) !important;
  color: #fff !important;
}
.contact_main_container{
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
}
.left_map_image{
  width: 700px;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 1.2rem;
}
.company_name{
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
}
.address{
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 26px;
}
.email a, .phone a{
  color: var(--primary-color) !important;
}
.phone{
  margin-top: 20px;
}
.right_contact_address_container{
  background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.right_contact_address_container::after{
  width: 300px;
  background: var(--primary-color);
  height: 4px;
  border-radius: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  right: 0;
  content: '';
  margin: 0 auto;
}
.humanoid-section{
   background: #fff;

}
.image_right_about_us{
  width: 500px;
  height: 397px;
  background: url(../assets/images/roller.png) no-repeat;
  background-size: cover;
  background-position: center;
}