@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
:root {
  --bg: #fafafa;
  --text: #000000;
  --primary: #670c09;
  --secondary: #ffffff;
  --accent: #eddfd1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* main{
    width: 100%;
    height: 100%;
    background-color: var(--bg);
} */

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header base */
header {
  width: 100%;
  padding: 15px 15px 110px 15px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 40px; /* moves links closer to logo */
  flex: 1;
}

.desktop-cta {
  margin-left: auto; /* keeps Contact button at the far right */
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}

.cta-btn {
  background-color: var(--primary);
  padding: 15px 36px;
  border-radius: 27.5px;
  color: var(--secondary);
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #000;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide mobile CTA by default */
.mobile-cta {
  display: none;
}

/* Responsive behavior */
@media (max-width: 900px) {
  header {
    padding: 15px 15px 70px 15px;
  }
  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--text);
    gap: 35px;
    width: 250px;
    padding: 30px 0;
    border-radius: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li a {
    color: var(--secondary);
    font-size: 18px;
  }

  .mobile-cta {
    display: block;
  }
}

/* Hero Section */
.hero {
  min-height: 755px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.hero-left {
  flex: 1;
}
.hero-left h1 {
  font-size: 64px;
  font-weight: 700;
}
.hero-left h1 span {
  color: var(--primary);
}
.hero-left h2 {
  font-size: 27px;
  font-weight: 400;
}
.hero-left p {
  margin-top: 29px;
  margin-bottom: 40px;
  width: 500px;
  font-size: 23px;
  font-weight: 400;
}
.cta-btn-black {
  background-color: var(--text);
}
.contact-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-right {
  flex: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-right video {
  position: relative;
  max-width: 680px;
  width: 100%;
  height: 450px;
  border-radius: 24px;
  z-index: 3;
  object-fit: cover;
} /* .hero-right img { max-width: 800px; width: 100%; position: absolute; top: 160px; right: -60px; z-index: 1; } */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 50px;
    padding: 10px 10px;
  }

  .hero-left {
    width: 100%;
    text-align: center;
  }
  .hero-left p {
    width: 100%;
  }
  .contact-btns {
    justify-content: center;
  }
  .hero-right {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .hero-left h2 {
    font-size: 25px;
  }

  .hero-left p {
    font-size: 18px;
  }
  .contact-btns {
    justify-content: center;
    flex-direction: column;
  }
  .hero-right video {
    height: 250px;
  }
}

/* members */
.members {
  width: 100%;
  min-height: 550px;
  background-color: var(--accent);
}

.members-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px;
  gap: 80px;
}

.m-left {
  flex: 1;
}

.m-left h1 {
  font-size: 60px;
  font-weight: 700;
}

.m-left h1 span {
  color: var(--primary);
}

.m-left h2 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 40px;
}

.m-left p {
  font-weight: 400;
  font-size: 32px;
}

.m-right {
  flex: 1;
  display: flex;
  gap: 15px;
}

/* Cards */
.card {
  width: 276px;
  height: 334px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ask-card h3,
.response-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ask-card input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

.btn-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.btn {
  flex: 1;
  padding: 4px 10px;
  font-size: 11px;
  border: none;
  cursor: pointer;
  border-radius: 23px;
}

.ask-btn {
  background-color: var(--primary);
  color: #fff;
}

.clear-btn {
  background: #eee;
}

.debug-btn {
  background: #eee;
}

.example-queries p {
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 700;
}

.example-queries button {
  font-size: 7px;
  display: block;
  width: 100%;
  background: #f5f5f5;
  border: none;
  text-align: left;
  padding: 6px;
  font-size: 12px;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
}

/* Response card */
.response-card {
  display: inline;
  margin-top: 70px;
}
.response-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 28px;
}

.response-card .highlight {
  color: #22c55e;
  font-weight: 600;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.bar {
  height: 40px;
}

.bar.green {
  background: #22c55e;
  width: 80%;
}

.bar.blue {
  background: #3b82f6;
  width: 40%;
}

/* Responsive only */
@media (max-width: 992px) {
  .members-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .m-left {
    order: -1;
  }

  .m-left h1 {
    font-size: 42px;
  }

  .m-left h2 {
    font-size: 28px;
  }

  .m-left p {
    font-size: 20px;
  }

  .m-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .response-card {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .m-left h1 {
    font-size: 32px;
  }

  .m-left h2 {
    font-size: 22px;
  }

  .m-left p {
    font-size: 18px;
  }
}

/* explore-sec */
.explore-sec {
  width: 100%;
  min-height: 976px;
  padding-top: 83px;
  padding-bottom: 76px;
}

.explore-headings {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.explore-headings h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 22px;
}

.explore-headings p {
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 62px;
}

.explore-boxes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.box {
  height: 285px;
  width: 285px;
  border-radius: 20px;
  border: 1px solid #021526;
  padding: 40px 15px 30px 29px;
  text-align: left;
}

.box .icon {
  background-color: var(--primary);
  height: 92px;
  width: 92px;
  border-radius: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 9px;
}

.box p {
  font-size: 16px;
  font-weight: 400;
}

.box5 h3 {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .explore-sec {
    padding-top: 50px;
  }
  .explore-headings {
    width: 85%;
  }

  .explore-headings h1 {
    font-size: 40px;
  }

  .explore-headings p {
    font-size: 22px;
  }

  .box {
    width: 260px;
    height: auto;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .explore-headings {
    width: 90%;
  }

  .explore-headings h1 {
    font-size: 34px;
  }

  .explore-headings p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .explore-boxes {
    gap: 16px;
  }

  .box {
    width: 80%;
    height: auto;
    padding: 25px 20px;
    text-align: center;
  }

  .box .icon {
    margin: 0 auto 15px auto;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .explore-headings h1 {
    font-size: 28px;
  }

  .explore-headings p {
    font-size: 18px;
  }

  .box {
    padding: 20px;
  }

  .box h3 {
    font-size: 20px;
  }

  .box p {
    font-size: 15px;
  }
}

/* why-choose */
.why-choose {
  width: 100%;
  min-height: 394px;
  background-color: var(--primary);
  padding: 44px 0;
}

.why-choose-content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  color: var(--secondary);
}
.why-choose-image img {
  max-width: 530px;
  width: 100%;
}

.why-choose-info h1 {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 37px;
}

.elem {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.elem img {
  width: 15px;
  height: 15px;
}

.elem p {
  font-size: 21px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-content {
    gap: 50px;
  }

  .why-choose-info h1 {
    font-size: 34px;
  }

  .elem p {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 40px 0;
  }

  .why-choose-content {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }

  .why-choose-info h1 {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
  }

  .elem {
    justify-content: left;
  }

  .elem p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .why-choose-info h1 {
    font-size: 26px;
  }

  .elem img {
    width: 13px;
    height: 13px;
  }

  .elem p {
    font-size: 16px;
  }
}

/* contact-us */
.contact-us {
  width: 100%;
  min-height: 801px;
  padding-bottom: 25px;
}

.contact-us-content {
  max-width: 1290px;
  margin: 0 auto;
  min-height: 712px;
  background-color: var(--text);
  color: var(--secondary);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 80px 34px 28px 105px;
  box-sizing: border-box;
  gap: 40px;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-headings h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 13px;
}

.contact-headings p {
  font-size: 21px;
  font-weight: 400;
}

.contact-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.link {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.link a {
  font-size: 21px;
  text-decoration: none;
  color: inherit;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 35px;
}

.contact-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-right img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-row .form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
}

.form-group textarea {
  min-height: 120px;
}

.send-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-us-content {
    padding: 60px 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 100px;
  }

  .contact-right img {
    max-width: 600px;
  }

  .contact-headings h1 {
    font-size: 40px;
  }

  .contact-headings p {
    font-size: 18px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .link a {
    font-size: 18px;
  }

  .social-icons {
    justify-content: center;
  }
  .contact-form {
    margin-bottom: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-us-content {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-right {
    display: none;
  }

  .contact-headings h1 {
    font-size: 32px;
  }

  .contact-headings p {
    font-size: 16px;
  }

  .contact-info h2 {
    font-size: 20px;
  }

  .link a {
    font-size: 16px;
  }

  .social-icons {
    gap: 25px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-headings h1 {
    font-size: 28px;
  }

  .contact-headings p {
    font-size: 15px;
  }

  .contact-info h2 {
    font-size: 18px;
  }

  .link a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
  }

  .send-btn {
    align-self: center;
  }
}

.text {
  min-height: 100px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 18px;
}

footer p a {
  text-decoration: none;
  font-size: 25px;
  color: var(--primary);
  font-weight: 400;
}
footer p {
  font-size: 25px;
  font-weight: 400;
}

@media (max-width: 900px) {
  /* .contact-right{
        display: none;
    }
    .contact-left{
        width: 100%;
        text-align: center;
        justify-content: center;
        gap: 100px;
    }
    .link a{
        font-size: 16px;
        }
    .social-icons{
        justify-content: center;
        gap: 35px;
    } */
  footer {
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  footer p a {
    font-size: 16px;
  }
  footer p {
    font-size: 16px;
    font-weight: 400;
  }
}

/* Animation */
/* Fade-up base style */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy Page */
.privacy {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

.privacy h1 {
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}
.privacy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.privacy p {
  margin-bottom: 15px;
}

.privacy ul {
  margin: 10px 0 20px 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy ul li {
  margin-bottom: 8px;
}

.privacy a {
  color: var(--primary);
  text-decoration: none;
}

.privacy a:hover {
  text-decoration: underline;
}

@media (max-width:768px) {
  .privacy h1 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}