* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
body, html{
    margin: 0 auto;
    overflow-x: hidden;
    max-width: 1920px;
}

body {
    font-family: Arial, sans-serif, sans-serif;
}

.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;

    display: flex;
    align-self: center;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;

    color: #fff;

}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}


.download-button img {
    height: 40px;
}

/* Responsive for small screens */
@media (max-width: 600px) {
    .nav-links {
        
        
        gap: 10px;
        align-items: flex-start;
    }

    .navbar {
        flex-direction: column;
        justify-content: center;
        
        align-items: center;
    }

    .download-button img {
        height: 35px;
    }
}

.heads {
    width: 100%;
    height: auto;
    background-color: #e41215;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row1 {
    width: 98%;

    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 150px;
    margin-bottom: 100px;

    p {
        flex: 1;
        transform: rotate(-90deg);
        font-family: 'Bitcount Mono SingleLine', monospace;
        transform-origin: center;
        background-color: black;
        padding: 5px;
        font-size: 1.2em;
        font-weight: bold;
    }

    h1 {
        flex: 3;
        font-size: 4em;
        font-family: 'Special Gothic Expanded One', sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1;
        text-align: center;
        color: rgb(0, 0, 0);

        span {
            position: relative;
            z-index: 1;
            color: whitesmoke;
            overflow: visible;


        }

    }

    .high {
        width: 500px;
        height: 10px;
        position: absolute;
        z-index: 0;
        top: 55px;
        left: 0;
        transform: rotateX(120deg);
        transform-origin: center;
        background-color: black;
    }

    .card-container {
        flex: 2;
        height: 400px;
        display: flex;
        margin: 1em;
        justify-content: center;
        align-items: center;
        margin-left: 100px;
        position: relative;
    }
}

.gradient-background {
    background: linear-gradient(201deg, #ffd000, #fb05a1);
    background-size: 120% 120%;
    animation: gradient-animation 12s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card {
    position: absolute;
    height: 300px;
    background-image: url('asset/concrete-wall-2.png');
    background-repeat: repeat;
    width: 250px;
    border-radius: 10px;
    border: solid 1px #dadada9e;
    shadow: 5px 14px 18px rgba(21, 20, 20, 0.836);
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.8s ease, opacity 0.8s ease;
    padding: 20px;

    hr{
        
        border: none;
        height: 1px;
        background-color: black;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    h3{
        color: black;
        text-align: left;
        line-height: 1;
        
    }
    p{
        color: black;
        background-color: transparent;
        transform: rotate(0deg);
        text-align: left;

    }
}

.card:nth-child(1) {
    top: 20px;
    left: 20px;
}

.card:nth-child(2) {
    top: 100px;
    left: 120px;
}

.card:nth-child(3) {
    top: -50px;
    left: 150px;
}

.card:nth-child(1) {
    transform: rotateY(0deg);
    z-index: 3;
}

.card:nth-child(2) {
    transform: rotateY(15deg);
    z-index: 2;
}

.card:nth-child(3) {
    transform: rotateY(-20deg);
    z-index: 1;
}

/* On hover, bring top card forward and rotate others */
.card:nth-child(1):hover {
    z-index: 10;
    transform: translate3d(0px, 0px, 30px) rotateY(0deg) rotateX(0deg);
}

.card:nth-child(2):hover {
    z-index: 10;
    transform: translate3d(30px, 20px, 0px) rotateY(10deg);
}

.card:nth-child(3):hover {
    z-index: 10;
    transform: translate3d(50px, -30px, -10px) rotateY(-10deg);
}
.horizontal-scroll-section {
    display: none;
  padding: 40px 20px;
  
}

.horizontal-scroll-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Lexend', sans-serif;
}

.horizontal-card-container {
    width: 98vw;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.scroll-card {
    position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  background-image: url('asset/concrete-wall-2.png');
    background-repeat: repeat;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.2em;
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: auto;



  hr{
        
        border: none;
        height: 1px;
        background-color: black;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    h3{
        color: black;
        text-align: left;
        line-height: 1;
        
    }
    p{
        margin: 0 !important;
        color: black;
        background-color: transparent;
        transform: rotate(0deg);
        text-align: left;

    }


}

/* Optional: hide scrollbar */
.horizontal-card-container::-webkit-scrollbar {
  display: none;
}

.ribbon {
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 130px;
    margin-top: 0px;
}

.question-card {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px;
    min-width: fit-content;
    max-width: 500px;

    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.question-card:hover {
    background: #d0ff00;
    transform: translateY(-5px);
}

.question-card h4 {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.download {
    position: relative;
    background-image: url('asset/crisp-paper-ruffles.png');
    background-repeat: repeat;
    display: flex;
    padding: 5em;
    width: 100%;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

/* Overlay for opacity */
.download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    /* white overlay with 50% opacity */
    z-index: -1;
    /* keep it behind content */
}

p {

    text-align: center;
    flex: 1;
    line-height: 1;
    margin: 0;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 4em;

    span {
        color: red;
    }

}

.imgcont button {
    position: absolute;
    z-index: 2;
    top: 60%;
    right: 40%;
    background-color: black;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 2em;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

/* Shimmer effect using ::before */
.imgcont button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.imgcont button:hover {
    background-color: #e41215;
}

.imgcont {
    position: relative;
    height: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;

    button {
        position: absolute;
        z-index: 2;
        top: 60%;
        right: 40%;
        background-color: black;
        color: white;
        padding: 10px 50px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 2em;
        margin-bottom: 20px;
    }

    button:hover {
        background-color: #e41215;
    }

    img {
        filter: blur(1px);
        aspect-ratio: 9/22;
        position: absolute;
        width: 250px;

    }
}

.smn {
    color: rgb(255, 0, 217);
    font-size: 1em;
    font-family: 'Caveat', cursive;
}

.imgs {
    display: flex;
    background-color: #fdf7ff;
    padding: 5em;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 20px;

    h1 {
        font-size: 4em;
        line-height: 1;
        text-align: center;
        width: 50%;

        span {
            color: red;
        }

        p {
            font-size: 18px;
            color: rgb(255, 255, 255);
            padding: 5px;
            background-color: black;
            font-weight: 100;
            margin-top: 20px;
        }
    }


}

.igroup {
    position: relative;
    aspect-ratio: 9/22;
    width: 250px;

    img {
        position: absolute;
        width: 100%;

        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

.igroup .p1 {
    box-shadow: none;
}

.p1:nth-child(1) {
    top: 0;
    left: 0;
}

.p1:nth-child(2) {
    top: 60px;
    left: 0;
}

.p1:nth-child(3) {
    top: 160px;
    left: 0;
}

.p1:nth-child(4) {
    top: 210px;
    left: 0;
}

.p1:nth-child(5) {
    top: 280px;
    left: 0;
}



footer{
    display: flex;
    padding: 1em;
    padding-top: 10em;
    padding-bottom: 2em;
    color: Red;
    background-color: rgb(26, 26, 26);
    
}
.comp{
    display: none;
}
.a3{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    h1{
        margin-bottom: 20px;
    }
    
p{
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    font-size: 1em;
}
}
.a4{

    flex: 1;
    display: flex;
    flex-direction: column;

    p{
        font-size: 1em;
        text-align: left;
        color: whitesmoke;
    }
    hr{
        color: white;
        height: .5px;
        border: none;
        background-color: rgba(255, 255, 255, 0.4);
        margin: 50px 0px;
    }
}

.frow{
    margin-right: 100px;
    display: flex;
    justify-content: space-between;

    h3{
        font-size: medium;
        font-weight: 700;
        cursor: pointer;
        transition: .3s ease-in-out;

    }
}

.soci{
    i{
        color: white;
        font-size: 25px;
        margin-right: 20px;
    }
}

.frow h3:hover{
    color: white;
    text-decoration: underline;
}
.input{
    display: flex;
    align-items: center;
    margin-top: 10px;
    input {
        margin-right: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  color: #fff;
  background-color: #111;
  border: 1.5px solid Red;
  
  outline: none;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
}

input::placeholder {
  color: Red;
  opacity: 0.8;
}

input:focus {
  border-color: #ffffff; /* Red */
  background-color: #000;
}

button{
    padding: 16px 30px;
    background-color: Red;
    color: black;
    font-weight: bold;
    border: none
}


}


.downloadbox button {
    position: absolute;
    z-index: 2;
    background-color: black;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 2em;
    margin-bottom: 100px;
    overflow: hidden;
    position: relative;
}

/* Shimmer effect using ::before */
.downloadbox button::before {
    content: "";
    position: absolute;
    top: 0;
    
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.downloadbox button:hover {
    background-color: #e41215;
}
.downloadbox{
 display: flex;
 flex-direction: column;
 align-items: center;

 img{
    height: 300px;
    width: 300px;
    margin-bottom: 20px;
 }
}

.vyang-reviews-section {
  padding: 60px 20px;
  background-color: #fff8dc; /* light dull yellow for sarcasm tone */
  font-family: 'Lexend', sans-serif;
  text-align: center;
}

.vyang-reviews-section h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #4b2e00;
}

.vyang-review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.vyang-card {
  background: #fefefe;
  border: 1px dashed #bfa76f;
  border-radius: 12px;
  width: 280px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 0.2s ease;
  position: relative;
}

.vyang-card:hover {
  transform: scale(1.02);
}

.vyang-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffb300;
}

.vyang-text {
  font-size: 0.98em;
  color: #3a2f00;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
}
.rr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vyang-user {
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  color: #5a4500;
  font-size: 0.9em;
  margin-top: 8px;
}

.faq-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      color: brown;
    }

    .faq-item {
      background-color: #fff;
      border-left: 4px solid brown;
      margin-bottom: 20px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-question {
      font-weight: 600;
      font-size: 1.2em;
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: brown;
      background-color: #f1faff;
    }

    .faq-answer {
      padding: 0 20px;
      font-size: 1em;
      color: #333;
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      /* max-height will be handled via JS */
      padding-top: 10px;
    }

    .faq-toggle-icon {
      font-size: 1.4em;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }

    @media (max-width: 768px) {
      .faq-section h2 {
        font-size: 2em;
      }

      .faq-question {
        font-size: 1.1em;
      }

      .faq-answer {
        font-size: 0.95em;
      }
    }