/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #add8e6;
  color: #fff;
}

/* Navbar */


.logo {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: black;
  text-decoration: none;  
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 30px 60px;         /* Significantly reduced vertical padding */
  background-color: #add8e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 75vh;           /* Shrinks section height slightly */
}



.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: 'Ovo', serif;
  font-size: 70px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 40px;
}


/* Button */
.demo-btn {
  font-family: 'Poppins', sans-serif;
  background-color: #fccc46;
  color: #000;
  padding: 6px 30px;
  font-size: 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.demo-btn:hover { 
  background-color: #fccc46;
}
/* Right image (wheel) */
.right-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#spinny-img {
  width: 550px; /* or 600px if you want it huge */
  height: auto;
  transition: transform 0.1s linear;
  transform-origin: center;
}
.pattern-wrapper {
  position: absolute;
  top: -100px;
  margin-top: 75px;
  margin-right: -155px;
  z-index: 1;
}

.pattern-img {
  width: 500px;
  opacity: 0.8;
  animation: floatPattern 4s ease-in-out infinite;
}

@keyframes floatPattern {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}





.hero {
  position: relative;
}


/* Features Section */
.features-section {
  background: linear-gradient(to top right, #fccc46 50%, #add8e6 50%);
  padding: 100px 60px;
  text-align: left;
}

.features-section h2 {
  font-family: 'Ovo', serif;
  font-size: 42px;
  color: #000;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature-card h3 {
  color: #e89f00;
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-card p {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(255,255,255,0.2);
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}   

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #add8e6;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
  background-color: #fccc46;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: black;
  text-decoration: none;  
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 30px 60px;
  background-color: #add8e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 75vh;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: 'Ovo', serif;
  font-size: 70px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 40px;
}



.demo-btn:hover { 
  background-color: #fccc46;
}

/* Right image (wheel) */
.right-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#spinny-img {
  width: 550px;
  height: auto;
  transition: transform 0.1s linear;
  transform-origin: center;
}

/* Features Section */
.features-section {
  background: linear-gradient(to top right, #fccc46 50%, #add8e6 50%);
  padding: 100px 60px;
  text-align: left;
}

.features-section h2 {
  font-family: 'Ovo', serif;
  font-size: 42px;
  color: #000;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature-card h3 {
  color: #e89f00;
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-card p {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}


/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(255,255,255,0.2);
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}
/* Redesigned Satisfaction Section */
.satisfaction-section {
  background: linear-gradient(to top right, #fccc46 50%, #6e7075 50%);
  padding: 100px 60px;
  text-align: center;
}

.satisfaction-heading {
  font-family: 'Ovo', serif;
  font-size: 48px;
  color: #000;
  margin-bottom: 20px;
}

.satisfaction-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.satisfaction-modules {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.satisfaction-card {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 420px;
  transition: transform 0.3s ease;
}

.satisfaction-card:hover {
  transform: translateY(-6px);
}

.satisfaction-card img {
  width: 100%;
  height: 220px;
  
  border-radius: 10px;
  margin-bottom: 15px;
}

.satisfaction-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
/* Scroll-in Card Animation */
.satisfaction-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.satisfaction-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/* FAQ Section *//* FAQ Section */
.faq-section {
  background-color: #add8e6;
  padding: 0 60px 150px;
}

/* FAQ Top Bar (Fixed Full Width and Triangle Cut) */
.faq-top-bar {
  width: 100%;
  height: 120px;
  background-color: #6e7075; /* Dark gray */
  display: flex;
  align-items: flex-end;
  padding: 0 40px 20px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-top-bar h2 {
  font-family: 'Ovo', serif;
  font-size: 64px;
  color: #000;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Clean right triangle corner */
.faq-top-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 161px;
  background-color: #add8e6;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 1;
}

/* FAQ Container */
.faq-container {
  margin-top: 60px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Grid Layout */
.faq-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Individual Card */
.faq-card {
  background-color: #fccc46;
  border-radius: 16px;
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-color: #000;
}

/* Card Header - sits on top of gray background */
.faq-head {
  background-color: transparent;
  color: #fff;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  height: 45%;
  
}

.faq-head h3 {
  font-family: 'Ovo', serif;
  font-size: 25px;
  margin: 10px 0 0;
  line-height: 1.4;
  color: #000;
}

.faq-icon {
  background-color:black;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  padding: 4px 10px;
  font-size: 16px;
  display: block;
  width: max-content;
}

.faq-bg{
  position: absolute;
  height: 100px;
  width: 100%;
  background-color: blue;
}
.faq-questions-bg{
    position: absolute;
  height: 150px;
  width: 100%;
  background-color: #6e7075;
  top: 55px
}

/* Card Answer Text - Yellow background */
.faq-answer {
  background-color: #fccc46;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
  padding: 20px;
  text-align: left;
  border-radius: 0 0 16px 16px;
  box-shadow: none;
  flex:1; 
}

/* Final Slide Section (lastslide.txt styles) */
/* Final Slide Section */
.container-final {
  display: flex;
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #E8F4F8 0%, #D1E7DD 100%);
}

.left-section-final {
  flex: 1;
  position: relative;
  background: #6B6B6B;
  overflow: hidden;
}

.grey-block-1,
.grey-block-2 {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.grey-block-1 {
  height: 40%;
  background: #5A5A5A;
  top: -10%;
  left: -5%;
  transform: rotate(-15deg);
}

.grey-block-2 {
  height: 50%;
  background: #7A7A7A;
  bottom: -30%;
  right: -25%;
  transform: rotate(25deg);
}

.yellow-accent {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 20px;
  background: #FFC107;
  z-index: 2;
  transform: skewY(-5deg);
}

.right-section-final {
  flex: 1;
  background: #FFC107;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 60px;
  position: relative;
}

.main-text {
  color: black;
  margin-left: 8%;
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sub-text {
  color: black;
  margin-left: 8%;
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 500;
}

/* Contact Button */
.contact-section {
  margin-left: 8%;
  background-color: #7d7b7b;
  padding: 15px 35px;
  border-radius: 25px;
  display: inline-block;
}

.contact-url {
  color: black;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-url:hover {
  text-decoration: underline;
}

/* Contact Info Block */
.contact-details-block {
  margin-left: 8%;
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px 25px;
  border-radius: 15px;
  max-width: 500px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: black;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-item .icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Ringing Animation for 📞 */
@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.ringing {
  display: inline-block;
  animation: ring 1.2s infinite ease-in-out;
  transform-origin: center;
}

/* Image Styling */
.women {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 3;
  width: 120%;
  height: 120%;
}
/* Shared Blue Color */
.icon.blue {
  color: #4da6ff; /* Light blue */
}

/* Ringing (📞) Animation */
@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.ringing {
  display: inline-block;
  animation: ring 1.2s infinite ease-in-out;
  transform-origin: center;
}

/* Bounce (✉️) Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bounce {
  display: inline-block;
  animation: bounce 1.5s infinite;
}


/* Responsive */
@media (max-width: 768px) {
  .container-final {
    flex-direction: column;
    height: auto;
  }

  .right-section-final {
    padding: 40px 30px;
  }

  .main-text {
    font-size: 2.5rem;
  }

  .women {
    transform: translate(-50%, -50%) scale(0.7);
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: linear-gradient(-45deg, #fff1b0,#ffb703,#ffe168, #fccc46);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.satisfaction-modules {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden; /* Prevents cards flying off screen */
  max-width: 100vw;
  margin: 0 auto;
}

.satisfaction-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(0) scale(0.95);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 2;
  max-width: 350px; /* Prevent stretching */
}

/* Deal the cards out */
.satisfaction-card.visible:nth-child(1) {
  transform: translateX(-150%) rotate(-8deg) scale(1);
  opacity: 1;
  z-index: 1;
}

.satisfaction-card.visible:nth-child(2) {
  transform: translateX(-50%) rotate(0deg) scale(1);
  opacity: 1;
  z-index: 3;
}

.satisfaction-card.visible:nth-child(3) {
  transform: translateX(50%) rotate(8deg) scale(1);
  opacity: 1;
  z-index: 1;
}

.satisfaction-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}