@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


:root {
  --primary-dark-gradient1: #0B0314;
  --primary-dark-gradient2: #170033;

  --primary-light1: #8981ff8f;
  --primary-light2: #b4aeff;

  --primary-font-color1: #ffffff;

  --primary-btn-color1: #fff;
  --primary-btn-color2: #6254ff;
  --primary-btn-font-color1: #1c1758;
  --primary-btn-font-color2: #fff;

  --primary-border-gradient1: #7E62EE;
  --primary-border-gradient2: #4F80EE;
}

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

body {
  background-color: var(--primary-dark-gradient1);
  color: var(--primary-font-color1);
  font-family: "Roboto", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.desktop{
  display: block;
}

  .mobile{
    display: none;
  }

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 1rem;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 90%;
}


.logo-text{
  font-weight: 700;
  font-size: 1.1rem;
}

.logo {
  background-color: var(--primary-light1);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.navlinks-wrapper {
  background-color: var(--primary-light1);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 1.5rem;
}

.links a {
  text-decoration: none;
  color: var(--primary-font-color1);
}

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

}


/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;

}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary-font-color1);
  border-radius: 10px;
  transition: 0.3s ease;
}

/* MOBILE MODE */

@media (max-width: 900px) {
  .navlinks-wrapper {
    position: absolute;
    top: 110%;
    right: 0;

    flex-direction: column;
    width: 220px;

    padding: 1rem;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: all 0.3s ease;
  }

  .navlinks-wrapper.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-1rem);
  }

  .hamburger {
    display: flex;
  }

  .hero-bg-img{
    width: 400%;
  }
  .mobile{
    display: block;
  }
  .desktop{
    display: none;
  }

  .product-card2 {
  display: grid;
  grid-template-areas: "p-card-left p-card-right";
  grid-template-columns: 1fr 1fr;
  height: fit-content;
  overflow: hidden;
  align-items: center;
}
}



.hero {
  height: 100svh;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.hero-bg-img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}

.brainimg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}

.hero-logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 900;

}

.hero-subtext {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-subtext-title {
  text-align: center;
  font-size: 2rem;
}

.hero-subtext-para {
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-btn-color1);
  text-decoration: none;
  color: var(--primary-btn-font-color1);
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  width: fit-content;
}

.btn-primary:hover {
  background-color: var(--primary-btn-color2);
  color: var(--primary-btn-font-color2);
}

/* ---------- RESPONSIVE HERO FIXES ---------- */

.hero {
  height: 100svh;
  min-height: 600px;
  padding: 0 1rem;
}

/* BACKGROUND IMAGE */


/* BRAIN IMAGE */

.brainimg {
  width: clamp(180px, 35vw, 350px);
}

/* LOGO TEXT */

.hero-logo-text {
  font-size: clamp(2.5rem);
  text-align: center;
  white-space: nowrap;
}

/* SUBTEXT BLOCK */

.hero-subtext {
  bottom: 8%;
  width: min(90%, 600px);
}

.hero-subtext-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
}

.hero-subtext-para {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

/* BUTTON */

.btn-primary {
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  padding: clamp(0.6rem, 2vw, 0.9rem)
           clamp(1.4rem, 4vw, 2rem);
}

/* ---------- MOBILE LAYOUT ---------- */

@media (max-width: 768px) {

  .hero-logo-text {
    top: 42%;
  }

  .brainimg {
    top: 42%;
  }

  .hero-subtext {
    bottom: 6%;
  }
    .product-card2 {
  display: grid;
  grid-template-areas: "p-card-left p-card-right";
  grid-template-columns: 1fr 1fr;
  height: fit-content;
  overflow: hidden;
  align-items: center;
}
}

/* SMALL PHONES */

@media (max-width: 480px) {

  .navbar {
  width: 100%;
  margin: 0rem;
  padding: 1rem;
}

  .hero {
    min-height: 520px;
  }

  .hero-logo-text {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .brainimg {
    width: 160px;
  }

  .hero-subtext {
    gap: 0.7rem;
  }
  .hero-bg-img {
  position: absolute;
  width: 400%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}
  .product-card2 {
  display: grid;
  grid-template-areas: "p-card-left p-card-right";
  grid-template-columns: 1fr 1fr;
  height: fit-content;
  overflow: hidden;
  align-items: center;
}
}





.line {
  width: 100%;
  height: 3px;
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0), var(--primary-light1), rgba(0, 0, 255, 0));
  margin: 9rem 0rem;
}


.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}




.more-details {
  background-image: linear-gradient(to right, var(--primary-border-gradient1), var(--primary-border-gradient2));
  width: fit-content;
  padding: 0.3rem 0.9rem;
  margin-top: 1rem;
  border-radius: 1rem;
  transition: all 0.3s;
}

.more-details:hover {
  background-image: linear-gradient(to right, var(--primary-border-gradient2), var(--primary-border-gradient1));
  padding: 0.3rem 1.3rem;
}

.more-details a {
  text-decoration: none;
  color: var(--primary-btn-font-color1);
}

/* ---------- RESPONSIVE PRODUCTS SECTION ---------- */

.procucts-section {
  padding: 6rem 1rem;
}

/* SUB TITLE */

.products-sub-title {
  text-align: center;
  max-width: 700px;
}

/* CARD CONTAINER */

.p-card-section {
  width: min(90%, 1100px);
  gap: clamp(4rem, 8vw, 9rem);
}

/* ---------- TABLET ---------- */

@media (max-width: 900px) {

  .product-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "p-card-left"
      "p-card-right";
    gap: 2.5rem;
    text-align: center;
  }

  /* Flip order for even cards if you want */
  .product-card:nth-child(even) {
    grid-template-areas:
      "p-card-left"
      "p-card-right";
  }

  .p-card-right .p-img {
    margin: 0 auto;
    max-width: 420px;
  }

  .p-card-left {
    align-items: center;
  }

  .p-card-desc {
    max-width: 600px;
  }
}

/* ---------- MOBILE ---------- */

@media (max-width: 520px) {

  .section-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .p-card-title {
    font-size: 1.4rem;
  }

  .p-card-section {
    margin-top: 3rem;
    gap: 3.5rem;
  }

  .p-card-desc p {
    font-size: 0.9rem;
  }

  .more-details {
    margin-inline: auto;
  }
  
}

.section-header{
  margin-bottom: 5rem;
}

.products-section {
  padding: 0px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-card-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 60px; /* Space between the big cards */
}

/* Base Flagship Card Styling */
.product-card.flagship {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Asymmetric split */
  grid-template-areas: "text image";
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 98, 238, 0.2);
  border-radius: 30px;
  padding: 50px;
  align-items: center;
  gap: 50px;
  transition: all 0.4s ease;
}

/* Reverse Logic (Every 2nd card) */
.product-card.flagship.reverse {
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas: "image text";
}

.product-card.flagship:hover {
  border-color: var(--primary-border-gradient1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* Mapping text and image to grid areas */
.p-card-left { grid-area: text; }
.p-card-right { grid-area: image; }

/* Image Container */
.p-card-right .p-img {
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-border-gradient1), var(--primary-border-gradient2));
}

.p-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
  object-fit: cover;
}

/* Typography */
.p-card-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, var(--primary-border-gradient1), var(--primary-border-gradient2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-card-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .product-card.flagship, 
  .product-card.flagship.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    padding: 30px;
    text-align: center;
    gap: 30px;
  }

  .more-details {
    margin: 20px auto 0;
  }
}

.about-section {
  color: white;
  overflow-x: hidden;
  margin: 1rem;
  /* hides pushed ghost boxes */
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}



.about-row {
  display: grid;
  grid-template-columns:
    200px
    /* title */
    minmax(640px, 760px)
    /* CONTENT */
  ;
  /* ghost */
  gap: 26px;
  margin-bottom: 46px;
  justify-content: center;
}

.about-row2 {
  display: grid;
  grid-template-columns:
    minmax(640px, 760px)
    /* CONTENT */
    200px;
  gap: 26px;
  margin-bottom: 46px;
  justify-content: center;
}


.about-box {
  min-height: 190px;
  border-radius: 2rem;
  padding: 28px 34px;

  background: black;
}

.title-box {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #8fb2ff;
  height: 100%;
}


.content-box {
  padding: 34px 42px;
}

.module-border-wrap {
  padding: 1rem;
  position: relative;
  background: linear-gradient(to right, var(--primary-light2), rgba(255, 211, 255, 0.11));
  padding: 3px;
  border-radius: 2rem;
}

.g-toleft{
  background: linear-gradient(to left, var(--primary-light2), rgba(255, 211, 255, 0.11));
}


.content-box p {
  margin: 0 0 14px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: #e6ddff;
}


@media (max-width: 1200px) {
  .about-row {
    grid-template-columns: 1fr 220px 1fr;
  }

  .about-row2 {
    grid-template-columns: 1fr 220px 1fr;
  }

  .ghost-box {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-row {
    grid-template-columns: 1fr;
  }

  .about-row2 {
    grid-template-columns: 1fr;
  }

  .title-box {
    order: -1;
  }
}


.about-section {
  padding: 0px 5%;
  background: var(--primary-dark-gradient1);
  color: var(--primary-font-color1);
}

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

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--primary-font-color1);
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Flex Layout for Vision/Mission */
.about-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.about-item.reverse {
  flex-direction: row-reverse;
}

/* Visual Side (Title & Glow) */
.about-visual {
  flex: 0 0 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.glow-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--primary-btn-color2);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.glow-circle.blue {
  background: var(--primary-border-gradient2);
}

/* Content Side (Glassmorphism) */
.about-content {
  flex: 1;
}

.content-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.content-glass:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 98, 238, 0.3);
}

.content-glass p {
  color: #e6ddff;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Reusing your module-border-wrap for the Title */

.about-visual .title-box {
  background: #000;
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  color: var(--primary-light2);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .about-item, .about-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
  }

  .about-visual {
    flex: none;
  }

  .content-glass {
    padding: 30px 20px;
  }
}

/* Container for the Image and Label */
.image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.image-wrap:hover .about-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Floating label over the image */
.icon-label {
  position: absolute;
  bottom: 20px;
  background: rgba(11, 3, 20, 0.7);
  backdrop-filter: blur(5px);
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-light2);
  border: 1px solid rgba(126, 98, 238, 0.3);
  pointer-events: none;
}

/* Ensure visual consistency with the rest of the site */

@media (max-width: 900px) {
  .image-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}


.comingsoon-section{
  height: 120svh;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem;
}

.c-section-top{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bgimg{
  opacity: 1;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.tools-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;

  max-width: 900px;
  margin: auto auto;
  top: 30%;
  transform: translateY(-30%);
}



.tool-card {
  background: linear-gradient(
    145deg,
    #f4eaff,
    #efe6ff
  );

  border-radius: 2rem;
  padding: 28px 34px;
  text-align: center;

  box-shadow:
    0 0 45px rgba(120, 90, 255, 0.35);

  color: #3a14aa;
}

.tool-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}


@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wave-bg {
    top: 180px;
    height: 420px;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    transform: none;
  }
}

.upcoming-tools {
  position: relative;
  min-height: 900px;
  padding: 140px 6% 160px;
  background: radial-gradient(circle at top, #190026, #040008);
  overflow: hidden;
  color: white;
  font-family: Inter, system-ui, sans-serif;
}


.suggestions-wrap {
  background: radial-gradient(circle 40svw at top, #7e62eeaf, #05000900,#05000900), radial-gradient(circle 40svw at bottom, #7e62eeaf, #05000900,#05000900);
  padding: 10px 6%;
  display: flex;
  justify-content: center;
}

/* MAIN PANEL */

.suggestions-panel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 26px;
  padding: 90px 80px;
}


.nomarginn{
  margin: 0;
}

.side-img {
  position: absolute;
  max-width: 200px;
}

.left-img {
  left: -60px;
  bottom: 40px;
}

.right-img {
  right: -60px;
  top: 40px;
}

/* CENTER */

.suggestions-content {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.suggestions-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 48px;
}

/* CARDS */

.suggestion-card {
  background: rgba(20, 5, 40, 0.7);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;

  border: 1px solid rgba(140, 90, 255, 0.55);

  box-shadow:
    inset 0 0 12px rgba(130, 80, 255, 0.15),
    0 0 18px rgba(130, 80, 255, 0.2);
}

.suggestion-card h4 {
  color: #9bb2ff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.suggestion-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ddd4ff;
}

/* RESPONSIVE */












@media (max-width: 900px) {
  .suggestions-panel {
    padding: 70px 40px;
  }

  .side-img {
    display: none;
  }

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

@media (max-width: 520px) {
  .suggestions-panel {
    padding: 60px 26px;
  }
}


.success-section {
  padding: 140px 6%;
  font-family: Inter, system-ui, sans-serif;
  color: white;
}

.success-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 90px;
}

/* STACK */

.stories {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* BUBBLE BASE */

.story {
  position: relative;
  max-width: 560px;
  padding: 26px 34px;

  background: linear-gradient(
    145deg,
    #f5ebff,
    #efe3ff
  );

  border-radius: 20px;

  box-shadow:
    0 0 40px rgba(150, 110, 255, 0.35);

  color: #3a19b8;
}

/* LEFT / RIGHT */

.story.left {
  align-self: flex-start;
}

.story.right {
  align-self: flex-end;
}

/* TEXT */

.story p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.story span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* SPEECH TAIL */

.story.left::before,
.story.right::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 28px;
  transform: rotate(45deg);
}

.story.left::before {
  background: #f5ebff;
  left: -12px;
}

.story.right::before {
  background: #efe3ff;
  right: -12px;
}

/* RESPONSIVE */

@media (max-width: 720px) {
  .stories {
    gap: 36px;
  }

  .story {
    max-width: 100%;
  }

  .story.left,
  .story.right {
    align-self: center;
  }

}

.cta-section {
  padding: 140px 8%;
  font-family: Inter, system-ui, sans-serif;
  color: white;
}

/* GRID */

.cta-container {
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* TEXT */

.cta-text h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-text p {
  max-width: 460px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d9cfff;
  margin-bottom: 36px;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  gap: 18px;
}

.btn-outline {
  padding: 12px 26px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid #8aa4ff;
  color: #8aa4ff;
  cursor: pointer;
}

.btn-primary {
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d7cff, #8b5cff);
  border: none;
  color: white;
  cursor: pointer;
}

/* IMAGE */

.cta-image img {
  width: 100%;
  max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-image img {
    margin: 0 auto;
  }
}

.thanks-section {
  padding: 140px 8%;
  background: radial-gradient(circle at center, #190026, #050009);
  font-family: Inter, system-ui, sans-serif;
  color: white;
}

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

/* TITLE */

.thanks-container h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 46px;
  letter-spacing: 1px;
}

/* TEXT */

.thanks-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #8fa8ff;
  margin-bottom: 28px;
}

/* SIGNATURE */

.thanks-signature {
  display: block;
  margin-top: 50px;
  text-align: right;
  font-size: 0.9rem;
  color: #cfc6ff;
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .thanks-signature {
    text-align: center;
  }
  .bgimg{
  width: 300%;
  left: 80%;
}
}

.cta-buttons a{
  text-decoration: none;
  color: var(--primary-btn-color1);
}

.contact-section {
  position: relative;
  padding: 120px 8%;
  background: radial-gradient(circle at bottom, #190026, #050009);
  font-family: Inter, system-ui, sans-serif;
  color: white;
  overflow-x: auto;
}

/* REVIEW BUTTON */

.review-wrap {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.review-btn {
  padding: 12px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0e7ff, #e6dcff);
  color: #4b2cc5;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* GRID */

.contact-container {
  max-width: 1300px;
  margin: 80px auto 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

/* TEXT */

.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.contact-sub {
  color: #b7aaff;
  margin-bottom: 34px;
  font-size: 0.95rem;
}

/* ROWS */

.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.contact-row strong {
  min-width: 90px;
}

/* IMAGE */

.contact-image {
  padding: 18px;
  border-radius: 12px;

}

.contact-image img {
  width: 100%;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
    /* text-align: center; */
  }

  .contact-image {
    max-width: 420px;
    margin: 0 auto;
  }
}


/* The Modal Background */
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 3, 20, 0.85); /* Using --primary-dark-gradient1 base */
  backdrop-filter: blur(10px);
}

/* Modal Content Box */
.modal-content {
  background: linear-gradient(145deg, var(--primary-dark-gradient1), var(--primary-dark-gradient2));
  margin: 10% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  position: relative;
  border: 1px solid rgba(126, 98, 238, 0.3); /* Subtle border using --primary-border-gradient1 */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 15px rgba(126, 98, 238, 0.1);
  color: var(--primary-font-color1);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Header & Close Button */
.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(to right, var(--primary-light2), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.close-review {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 24px;
  color: var(--primary-light1);
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.close-review:hover {
  color: #ff4d4d;
}

/* Form Styling */
#reviewModal form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Input & Textarea Styling */
#reviewModal input, 
#reviewModal textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05); /* Very subtle transparent white */
  border: 1px solid rgba(126, 98, 238, 0.2);
  border-radius: 12px;
  color: var(--primary-font-color1);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#reviewModal input::placeholder,
#reviewModal textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#reviewModal input:focus, 
#reviewModal textarea:focus {
  outline: none;
  border-color: var(--primary-border-gradient2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(79, 128, 238, 0.3);
}

/* Submit Button */
#reviewModal button[type="submit"] {
  padding: 15px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: filter 0.3s, transform 0.2s;
  width: 100%;
}

#reviewModal button[type="submit"]:hover {
  filter: brightness(1.1);
}

#reviewModal button[type="submit"]:active {
  transform: translateY(0);
}



/* Modal Background */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.356);
  backdrop-filter: blur(5px);
}



@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-button {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

#modalBody ul {
  padding-top: 15px;
  line-height: 1.8;
}

@media (max-width: 500px) {
.comingsoon-section{
  height: 130svh;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem;
}
.modal-content {
  width: 90%;
}
}


