* {
  margin: 0;
  padding: 0;
  font-family: "Bree Serif", serif;
  /* color: white; */
  box-sizing: border-box;
}
/* Container Background */

.logo {
  padding: 6rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 30px;
  /* color: #000; */
  display: flex;
  align-items: center;
  gap: 0.5rem; 
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;   /* white like your navbar */
  letter-spacing: 1px;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 100px; /* adjust based on your navbar height */
}

section {
  scroll-margin-top: 80px; /* adjust based on header height */
}

img {
  width: 100%;
  height: auto;
}

.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.lazy-img.loaded {
  opacity: 1;
}

body,
html {
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* container  */

.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

/* Hamburger */

/* .hamburger {
    display: none;
    list-style: none;
    cursor: pointer;
} */

.hamburger i {
  font-size: 24px;
}

/* sidebar */

/* Main Content */

.main-content {
  max-width: 100%;
  width: 100%;
}

/* Navigation */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;          /* Keep your height unchanged */
  padding: 0 3rem;
  background: #281c2f;
  color: white;          /* White background → better contrast */
  overflow: visible;     /* Don't hide scrollbars */

  /* Make header fixed */
  position: fixed;       /* Sticks header at top */
  top: 0;
  left: 0;
  width: 99%;
  z-index: 1000;         /* Keeps header above other content */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional */
}
.logo img {
  height: 45px;  /* adjust size */
  width: auto;
  display: block;
}

/* Prevent content from hiding behind header */
body {
  padding-top: 5rem;   /* Same as header height */
}


.logo .bold {
  color: #d44;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  font-family: "Nunito", sans-serif;
  font-weight: 700; /* adjust as needed */
  font-style: normal;
  display: inline;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav ul li a.login {
  background-color: rgb(142, 30, 65);
  padding: 8px 12px;
  border-radius: 5px;
}
.close-icon {
  display: none;
  cursor: pointer;
}

/* Hero Section */

.main-hero {
  height: auto;
  overflow-y: visible;
  background-image: url("/static/img/index_bg3.jpg");
}

.hero {
  position: relative; /* needed for overlay positioning */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  /* background-image: url("../img/StockCake.jpg"); */
   /* background-image: url("..img/index_bg2.jpg"); */
     /* background-image: url("../static/img/index_bg2.jpg"); */
       background-image: url("/static/img/index_bg2.jpg");
  height: calc(100vh - 5rem);
  max-width: calc(100vw);
  background-size: cover;
  background-position: center;
}

/* overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* change 0.4 for more/less opacity */
  z-index: 0; /* behind text */
}

.hero > * {
  position: relative;
  z-index: 1; /* text above overlay */
}

.hero-text {
  color: white;
  max-width: 50%;
}

.hero-text h1 {
  font-family: "Arial", sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}

.hero-text p {
  font-size: 16px;
  margin: 20px 0;
  background: #00000098;
}

.about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
background: linear-gradient(
    135deg,
    rgba(220, 140, 255, 0.3),  /* Soft Pinkish Purple */
    rgba(120, 80, 255, 0.7)     /* Light Vibrant Purple */
  );
 
  margin: 45px;
  background-size: cover;
  background-position: center;
  max-width: 100vw;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  gap: 50px;
}

.about-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
  transform: perspective(900px) rotateY(-10deg);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-text .description {
  font-size: 1rem;
  color: #716079;
  margin-bottom: 30px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature .icon {
  width: 35px;
  height: 35px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.feature p {
  font-size: 0.95rem;
  color: #716079;
  line-height: 1.5;
}


.hero1 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 8%;
  color: white;
  border-radius: 2px;
  overflow: hidden; /* keeps video inside section */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* same as background-size: cover */
  z-index: 0;
}

.hero1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay for readability */
  border-radius: 20px;
}

.hero1-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero1-content h1{ 
  font-size: 47px;
}
/* Hero Section */
.hero-product {
  padding: 60px 40px;
  color: #f0f0f0;
  max-width: 100vw;
  /* background: url("../img/Product_bg1.jpg") no-repeat center center/cover; */
  position: relative;
      background: rgba(0, 0, 0, 0.2);
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.products-container h3.product {
  font-size: 37px;
  margin-bottom: 50px;
 color: #353561;
  font-weight: bold;
}

/* Products Wrapper */
.products-wrapper {
  display: flex;
  justify-content: center;
  
}

.products {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Each Row */
.product-row {
  padding: 100px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
    /* background: url("../img/Product_bg2.jpg") no-repeat center center/cover; */
   background-color: white;
  gap: 40px;
}

/* Left Side: Product Info */
.product-item {
  flex: 1;
  /* background: url("../img/Product_bubble.jpg") no-repeat center center/cover; */
  padding: 20px;
  border-radius: 12px;
  text-align: left;
      background-size: 500px 500px;
}

.product-item h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffccff;
}

.product-item1 {
  font-size: clamp(32px, 5vw, 64px); /* responsive like big heading */
  font-weight: 800;                  /* extra bold */
  color: #8f898e;                  /* white text */
  line-height: 1.2;
  margin-bottom: 5rem;
}

.product-item2 {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;                  /* normal weight */
  color:#8f898e;                      /* softer gray */
  max-width: 800px;                  /* keep readable width */
}
.product-item1 span {
  color: #f640ab;   /* bright pink highlight */
}
/* ============================= */
/* Product Card Styles - Cleaned */
/* ============================= */

.product-card {
  flex: 1;
  /* background: #965b70;  */
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff; /* default text color inside card */
  height: 520px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.product-card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Title inside product card */
.product-card h3,
.product-card .product-name {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #8f898e;
}

/* Description inside product card */
.product-card p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Button inside card */
.product-card .btn,
.product-card button,
.product-card .buy-now {
  display: inline-block;
  padding: 12px 25px;
     background: #6161ab;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.product-card .btn:hover,
.product-card button:hover,
.product-card .buy-now:hover {
  opacity: 0.9;
}

/* Responsive Layout */
/* For tablets and below */
/* Mobiles */
@media (max-width: 600px) {
  .closing {
    padding: 2rem 1rem;
    text-align: center;
  }

  .closing-title {
    font-size: 1.5rem;
  }

  .contact {
    padding: 2rem 1rem;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .button {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-image img {
    max-width: 400px;
    transform: perspective(900px) rotateY(0); /* remove tilt on small screens */
  }

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

  .about-text .description {
    font-size: 0.95rem;
  }

  .features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .feature {
    text-align: center;
    max-width: 500px;
  }

  .feature img.icon {
    margin-bottom: 10px;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  .about {
    padding: 30px 15px;
    margin: 20px 0;
    height: auto; /* let height adjust naturally */
  }

  .about-text h1 {
    font-size: 1.7rem;
  }

  .about-text .description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .about-image img {
    max-width: 100%;
  }
}


@media (max-width: 992px) {
  .product-row {
    flex-direction: column;
    align-items: center;
  }

  .product-item,
  .product-card {
    width: 100%;
  }
}


.career {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
}
.career-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card {
  background: #2e1b1d;
  color: #f8f8f8;
}



.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.career-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}



.career-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/*--- AI-Driven Innovation Section --- */

.ai-innovation {
  padding: 1rem 0rem;
  background: linear-gradient(
    135deg,
    rgba(220, 140, 255, 0.85),  /* Soft Pinkish Purple */
    rgba(120, 80, 255, 0.2)     /* Light Vibrant Purple */
  );
}

.ai-innovation-header {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}

.ai-innovation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 95%;
  margin: 0 auto;
}

.ai-image-card {
  position: relative;
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  height: 300px; /* Fixed height */
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ai-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.ai-image-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 16, 21, 0.9); /* Deep red tint */
  color: #fff;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.ai-image-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
}

.overlay p {
  font-size: 1em;
  line-height: 1.6;
  max-width: 90%;
  text-align: center;
}

/* === Updated AI Power Section === */

.ai-power {
 background: linear-gradient(
    135deg,
    rgba(220, 140, 255, 0.3),  /* Soft Pinkish Purple */
    rgba(120, 80, 255, 0.7)     /* Light Vibrant Purple */
  );
  color: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
  margin: 45px;
}
.ai-innovation{
background: linear-gradient(
    135deg,
    rgba(220, 140, 255, 0.3),  /* Soft Pinkish Purple */
    rgba(120, 80, 255, 0.7)     /* Light Vibrant Purple */
  );
    margin: 45px;
}

.ai-power-header {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.ai-power-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #cccccc;
}

/* Container */
.ai-power-slider {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card styling */
.ai-power-card {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 255, 255, 0.08);
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-power-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 255, 255, 0.15);
}

/* Icon */
.ai-power-card i {
  font-size: 36px;
  color: #ff4b2b;
  margin-bottom: 20px;
}

/* Title */
.ai-power-card h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Text */
.ai-power-card p {
  font-size: 1em;
  color: #cccccc;
}

/* Card styling */
.ai-power-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  min-height: 16rem;
  margin: 10px;
  /* Prevent shadow cutoff */
}

/* Icons */
.ai-power-card i {
  font-size: 40px;
  color: #620f21;
  margin-bottom: 15px;
}

.ai-power-card h3 {
  font-size: 1.4em;
  margin-bottom: 12px;
}

.ai-power-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #620f21 !important;
}

/* Hide scrollbar */
.swiper {
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Hide scrollbar for Webkit (Chrome, Safari) */
.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.swiper-wrapper {
  scrollbar-width: none;
}

/* Hide scrollbar for Edge and IE */
.swiper-wrapper {
  -ms-overflow-style: none;
}

/* Career */

.hero-career {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #0a0102;
  color: white;
  max-width: 100vw;
  object-fit: cover;
}

.career-header {
  color: white;
  font-size: xx-large;
  font-weight: 600;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.hero-career {
  padding: 2rem;
  /* background: #f0f4f8; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-image: url('https://images.unsplash.com/photo-1491975474562-1f4e30bc9468?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); */
  background-color: #000000;
  object-fit: cover;
  object-position: center center;
}

.career-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.career-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  /* color: #1a202c; */
  text-shadow: inset 1px 1px 5px #ffffff;
}

.career-list {
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  flex-direction: row; /* Show in row by default */
  flex-wrap: wrap;
  gap: 1rem;
}

.career-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 24rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  width: 100%;
  text-decoration: none;
}

.career-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
}

.career-arrow {
  font-size: 1.5rem;
  margin: 0 1rem;
  color: #3182ce;
}

.career-skills {
  position: relative;
}

.skills-dropdown {
  position: relative;
  background-color: #8b1e3f;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s;
  width: 8rem;
}

.skill-label {
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

.skills-dropdown:hover {
  background-color: #e2e8f0;
}

.dropdown-content {
  display: none;
  max-width: 25rem;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(-61.5%, 20%);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  z-index: 1000;
  width: max-content;
  min-width: 250px;
}

.skills-dropdown:hover .dropdown-content {
  display: block;
}

.accordion-header {
  font-weight: bold;
  color: black;
  margin-bottom: 0.5rem;
  width: 100%;
}

.accordion-body {
  color: #4a5568;
  width: 100%;
}

.career-image {
  margin-top: 2rem;
}

.career-image img {
  width: 100%;
  border-radius: 0.5rem;
  max-height: 400px;
  object-fit: cover;
}

.ai-power-slider {
  padding-left: 40px !important;
  padding-right: 40px !important;
  overflow: hidden;
  position: relative;
}

/* Position the navigation buttons outside the content area */
.ai-power-slider .swiper-button-prev {
  left: 5px;
}

.ai-power-slider .swiper-button-next {
  right: 5px;
}

/* Make sure the slides don't touch the buttons */
.ai-power-slider .swiper-slide {
  padding: 15px;
}

/* Adjust button styles for better visibility */
.ai-power-slider .swiper-button-prev,
.ai-power-slider .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.ai-power-slider .swiper-button-prev:after,
.ai-power-slider .swiper-button-next:after {
  font-size: 16px;
}

/* === Updated Contact Section === */
.container-contact {
  /* Background Image */
  background: url("https://images.unsplash.com/photo-1518135714426-c18f5ffb6f4d?q=80&w=2096&auto=format&fit=crop&ixlib=rb-4.0.3") 
              no-repeat center center/cover;
  position: relative;
    position: relative;
  padding: 60px 20px;
  color: #fff;
}
/* Overlay for readability */
.container-contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.container-contact section {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 325px;   /* space between left & right */
}
 
/* Closing Section */
.closing {
   flex: 1;  
  padding: 0px 40px;
  /* background: rgba(0,0,0,0.6); */
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.closing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.closing-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #dcdcdc;
}

.closing-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 74px;
  padding: 280px 0px 0px 0px;
}
.closing-col2 {
    display: flex;
    flex-direction: column;
    gap: 64px; /* Space between items */
}

.closing-contacts-head {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.closing-contacts-head:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.closing-contacts-head strong {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
   font-size: 18px;
  color: #fff;
}
/* Description text */
.closing-contacts-head div {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* Social icons style */
.closing-contact-links {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.closing-contact-links a {
  margin-right: 15px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.closing-contact-links a:hover {
  color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
  .closing-contacts {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 100px;
  }
}


/* Input styling */
.contact {
  flex: 1;        /* right takes half */
  display: flex;
  justify-content: center;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 width: 100%;
  max-width: 500px; 
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #231f20;
}

.contact-content {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}

.contact-form-grid input,
.contact-form-grid textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color: #333;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.contact-form-grid input[type="email"],
.contact-form-grid textarea,
.contact-form-grid .inquiry-options,
.contact-form-grid .checkbox-label,
.contact-form-grid .submit-btn {
  grid-column: span 2;
}
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

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

/* Inquiry Buttons */
.inquiry-options {
  margin-top: 10px;
}
.inquiry-options label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inquiry-btn {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
}
.inquiry-btn:hover,
.inquiry-btn.active {
  background: #231f20;
  color: #fff;
}

/* Checkbox */
.checkbox-label {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Submit Button */
.submit-btn {
  background: #231f20;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #444;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}


.textarea {
  height: 10rem;
  resize: vertical;
}

/* Button styling */
.btn,
.btn-contact,
.btn-demo,
.contact-form button {
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  background-color: #8b1e3f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
      margin: 20px 10px
}

.btn:hover,
.btn-contact:hover,
.btn-demo:hover,
.contact-form button:hover {
  background-color: #7979bd;
}

.btn-black {
  background: #1a1a1a;
  border: 2px solid #8b1e3f;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
}

/* Responsive */

/* Schedule Demo Section */
.container-demo {
    background-image: url('/static/img/Demo_image.jpg');
    background-size: cover;        /* Cover entire section */
    background-position: center;   /* Center the image */
    background-repeat: no-repeat;  /* Avoid repetition */
padding: 3rem 17rem;}

.demo {
  min-height: calc(100vh - 4rem);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
background: linear-gradient(135deg, #f8e9ff, #f4f0ff);
    border: 8px solid pink;
    border-radius: 8px;
  }

/* Demo Form Container */
.demo-form {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  text-align: center;

  /* Match Connect With Us box style */
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* New Left Text Section */
.demo-text {
  flex: 1;
  max-width: 500px;
  color: #333;
}

.demo-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.demo-text h2 span {
  color: #a4003a; /* highlight word Trovox AI */
}

.demo-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.demo-text ul {
  list-style: none;
  padding: 0;
}

.demo-text li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.demo-text li::before {
  content: "✔"; /* checkmark icon */
  color: #a4003a;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}


/* Title Styling */
.demo-title {
  color: #000;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

/* Subtitle Styling */
.demo-content {
  color: #444;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Input Fields */
.demo-form .input {
  width: 100%;
  padding: 12px;
  border: 2px solid #80002a;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.3s ease;
  background-color: #fff;
}

/* Input Hover/Focus Effect */
.demo-form .input:focus {
  border-color: #a4003a;
  box-shadow: 0 0 6px rgba(164, 0, 58, 0.3);
}

/* Label Styling */
.demo-form label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-top: 8px;
  color: #333;
}

/* Button Styling */
.demo-form .button {
  background-color: #80002a;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.demo-form .button:hover {
  background-color: #a4003a;
}

/* Social Links Styling (if needed) */
.demo-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.demo-links > a > i {
  color: #000;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.demo-links > a:hover i.fa-linkedin {
  color: #0077b5;
}
.demo-links > a:hover i.fa-facebook-f {
  color: #1877f2;
}
.demo-links > a:hover i.fa-twitter {
  color: #1da1f2;
}
.demo-links > a:hover i.fa-youtube {
  color: #ff0000;
}


/* Inputs and Button */
.input,
.textarea,
input[type="datetime-local"] {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #8b1e3f;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  color: #231f20;
  margin: 10px;
}

.input:focus,
.textarea:focus,
input[type="datetime-local"]:focus {
  border-color: #231f20;
  box-shadow: 0 0 5px rgba(139, 30, 63, 0.5);
}

.button.btn {
  width: 100%;
  padding: 12px 25px;
  background: #8b1e3f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button.btn:hover {
  background: #a0214e;
}

label {
  font-weight: bold;
  text-align: left;
  margin-top: 0.5rem;
}

/* Responsive */

/* Application Section */

/* .application-form-section {
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  } */
.application-form-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1508243529287-e21914733111?q=80&w=2070&auto=format&fit=crop")
    no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-container-main {
  background: rgba(0, 0, 0, 0.7);
  margin: 100px;
  border: 8px solid white;
  border-radius: 8px;
  color: white;
  text-align: center;
  padding: 20px;
}

.application-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; height: 100%; */
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.application-greet {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
}

.career-image-container {
  width: 50%;
  height: 60%;
  position: relative;
  overflow: hidden;
  margin: 2rem;
}
.career-image-container > img {
  width: -webkit-fill-available;
  /* height: 100%; */
  object-fit: contain;
  object-position: center;
}
.application-form > label {
  color: #231f20;
  font-weight: 500;
}

.application-form > input {
  font-size: 1.2rem;
  padding: 0.4rem 0.6rem;
}

.application-form > select {
  border: 2px solid #8b1e3f;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  font-size: 1.2rem;
  outline: none;
  color: #231f20;
  transition: all 0.3s ease;
}

.application-form > select > div {
  color: #231f20;
}
.application-form > select > option {
  color: #231f20;
  border: 1px solid #231f20;
}

.application-form > input::-webkit-file-upload-button {
  background-color: #620f21;
  color: white;
  border-radius: 5px;
  border: none;
  padding: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
}

.application-form > textarea {
  padding: 0.4rem 0.6rem;
  width: inherit;
  border: 2px solid #8b1e3f;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: all 0.3 ease;
  outline: none;
  resize: vertical;
  color: #231f20;
}

.form-container > h2 {
  color: black;
  padding: 0rem 0rem 1rem 0rem;
}

/* .form-container {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    color:#000000;
  } */
.form-container {
  position: relative; /* sits above overlay */
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
  margin: 100px;
  margin: 100px 390px;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* .application-form input,
  .application-form select,
  .application-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
  }

  .application-form button {
    padding: 0.75rem;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .application-form button:hover {
    background-color: #333;
  } */

/* Footer Section */
.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #111; /* dark background like eCoach */
  color: #fff;
  padding: 2rem 0 0 0;
  font-family: 'Poppins', sans-serif;
}

.footer-top-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;  /* responsive */
  padding: 2rem 1rem;
}

.footer-content {
  flex: 1;
  max-width: 22rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-content p,
.footer-content a {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #fff;
}

.footer-contact-details div {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-contact-details div i {
  color: #4dabf7; /* accent color for icons */
}

.footer-socials a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #bbb;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #fff;
}

/* Bottom Section */
.footer-end {
  border-top: 1px solid #333;
  text-align: center;
  padding: 1rem 0;
  color: #888;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */

/* Responsive for mobile */

/* Responsive Design */

@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: black;
        z-index: 101;
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: rgb(165, 65, 130);
    }

    .drawer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: #333;
        padding-top: 60px;
        transform: translateX(-100%);
        /* transition: transform 0.3s ease-in-out; */
        z-index: 100;
    }

    .drawer.open {
        transform: translateX(0);
    }

    /* ✅ Show nav links when drawer is open */
    .drawer.open .nav-links {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 30px; /* reduced gap so items fit */
        margin-top: 20px;
    }

    .nav-links li a {
        font-size: 16px;
        color: #eee;
        text-decoration: none;
    }

    .nav-links li a.login {
        background: transparent;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
    }

    .close-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        z-index: 102;
    }
}
@media (max-width: 768px) {
    .contact {
        flex-direction: column;
        padding: 2rem;
    }

    .contact-img {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-content {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .demo {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .demo-img,
    .demo-form {
        max-width: 100%;
        width: 100%;
    }

    .demo-title {
        font-size: 1.6rem;
    }

    .demo-content {
        font-size: 1rem;
    }
}
@media screen and (max-width: 768px) {

    .hero-product,
    .hero-career {
        padding: 40px 20px;
    }

    .products,
    .career {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .sidebar a {
        margin: 10px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }


    .contact-img, .demo-img {
        display: none;
    }

    .contact-form,.demo-form {
        width: 100%;
    }


    /* .sidebar {
        width: 50px;
    } */

    /* .main-content {
        margin-left: 50px;
    } */
}

@media  (max-width: 1200px) {
    .career-image-container>img {
        display: none;
    }
    .career-image-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .career-image-container>div {
        font-weight: 700;
        width: max-content;
    }
    .application-form-section {
        flex-direction: column;
        height: fit-content;
    }
    .application-greet{
        text-wrap: nowrap;
        width: max-content;
    }
}

@media (max-width: 1024px) {
    .ai-image-card {
        flex: 1 1 45%;
        height: 280px;
    }



    .overlay h3 {
        font-size: 1.1em;
    }

    .overlay p {
        font-size: 0.9em;
    }

    .footer-top-container,
    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }


    .footer-content {
        max-width: 100%;
        align-items: center;
    }

    .footer-bottom-content {
        width: 100%;
        padding: 0.5rem;
        text-align: center;
        align-self: center;
    }

    .end-footer-content {
        text-align: center;
    }

    .footer-title {
        font-size: 1.25rem;
    }
}

@media(min-width:768px){
    .hamburger {
    display: none;
    list-style: none;
    cursor: pointer;
}
}


@media (max-width: 768px) {
    /* .career-item {
        flex: 1 1 100%;
    } */

    .career-header {
        font-size: 1.5rem;
    }

    /* .skills-dropdown {
        width: 100%;
    } */

    .career-list {
        flex-direction: column;
        gap: 1rem;
    }

    .career-item {
        flex-direction: column;
        gap:0.6rem;
    }

    .career-arrow {
        display: none;
    }

    .dropdown-content {
        transform: translate(-34%, 70%);
        left: 0;
        top: 0;
    }



    .ai-image-card {
        flex: 1 1 100%;
        height: 250px;
    }

    .overlay h3 {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .overlay p {
        font-size: 0.85em;
        max-width: 95%;
        line-height: 1.4;
    }


}

@media (max-width: 600px) {
    .sidebar {
        display: none;
    }
    .hero {
        max-width: 100vw;
    }
    .hero-text h1, .contact-title,.demo-title, .ai-innovation-header,.accordion-header, .accordion-header, .career-header {
        font-size: 1.7rem;
    }

    .logo{
        font-size: 1.2rem;
    }

    .contact-content,.demo-content, .career-arrow {
        font-size: 0.8rem;
    }

    .skill-label {
        font-size: 0.7rem;
    }

    .contact-form>input, .contact-form > .textarea {
        font-size: 0.9rem;
    }

    .demo-form>input, .demo-form > .textarea {
        font-size: 0.9rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.8rem;
    }
    nav {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        z-index: 99;
    }

    nav.active {
        display: flex;
    }
    .drawer.active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 100%; /* optional, to space links vertically */

    }

    .drawer.active .nav-links > li {
        color: #000000;
    }

    /* .hamburger {
        align-items: center;
        justify-content: center;
        top: 15px;
        right: 20px;
        cursor: pointer;
    } */


    .main-content {
        width: 100vw;
    }

    .ai-image-card {
        flex: 1 1 100%;
        max-width: 100%;
        height: 260px;
    }

    .career-list {
        flex-direction: column;
        gap: 1rem;
    }

    .contact {
        padding: 1rem;
    }
    .contact-form>form {
        width: 100%;
    }

    .contact-img {
        display: none;
    }
    .contact-form {
        width: 90%;
    }

    .demo {
        padding: 1rem;
    }
    .demo-form>form {
        width: 100%;
    }

    .demo-img {
        display: none;
    }
    .demo-form {
        width: 90%;
    }

    .footer-top-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-title {
        text-align: center;
        width: 100%;
    }

    .footer-contact-details {
        font-size: 0.9rem;
        text-align: center;
    }
    .footer-demo-details {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ai-power-header {
        font-size: 1.8em;
    }

    .ai-power-description {
        font-size: 1em;
        padding: 0 10px;
    }

    .ai-power-slider {
        padding-bottom: 20px;
    }

    .ai-power-card {
        min-width: 80%;
        margin: 10px auto;
        padding: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 230px;
    }

    .ai-power-card h3 {
        font-size: 1.2em;
    }

    .ai-power-card p {
        font-size: 0.95em;
    }

    .swiper-wrapper {
        flex-wrap: unset;
        flex-direction: unset;
        overflow-x: unset;
        scroll-snap-type: unset;
    }

    .ai-power-card {
        flex: unset;
        scroll-snap-align: unset;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

}
/* ===============================
   Career Application Page Media Queries
   =============================== */

/* Tablets & below (≤ 1024px) */
@media (max-width: 1024px) {
  .form-container-main {
    padding: 20px;
  }

  .form-container {
    width: 90%;
    margin: 0 auto;
  }

  .application-form {
    width: 100%;
  }

  .application-form label {
    font-size: 0.95rem;
  }

  .application-form .input,
  .application-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .footer-top-container,
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .footer-content {
    margin-bottom: 1.5rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .hamburger {
    display: block;
    font-size: 24px;
    color: #000;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 101;
  }

  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #333;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 60px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .drawer.open {
    transform: translateX(0);
  }

  .close-icon {
    display: block;
    font-size: 28px;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .nav-links li a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
  }

  .nav-links li a.login {
    color: #fff;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Form */
  .form-container-main h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .form-container {
    width: 95%;
    padding: 15px;
  }

  .application-form {
    width: 100%;
  }

  .application-form label {
    font-size: 0.9rem;
  }

  .application-form .input,
  .application-form textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .form-container-main h1 {
    font-size: 1.3rem;
  }

  .form-container h2 {
    font-size: 1.1rem;
  }

  .application-form label {
    font-size: 0.85rem;
  }

  .application-form .input,
  .application-form textarea {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-contact-details {
    font-size: 0.85rem;
  }
}
/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .container-demo {
    padding: 2rem 5rem; /* reduce side padding */
  }

  .demo {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 40px;
    min-height: auto; /* allow height to adjust naturally */
  }

  .demo-text, .demo-form {
    max-width: 100%;
    text-align: center;
  }

  .demo-text h2 {
    font-size: 1.8rem;
  }

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

  .demo-text li {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  .container-demo {
    padding: 1.5rem; /* minimal padding for mobile */
  }

  .demo {
    padding: 2rem 1rem;
    gap: 30px;
  }

  .demo-text h2 {
    font-size: 1.5rem;
  }

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

  .demo-text li {
    font-size: 0.85rem;
  }

  .demo-form {
    padding: 1.5rem;
  }

  .demo-form .button {
    font-size: 0.95rem;
    padding: 10px;
  }
}
