* {
    margin: 0;
    padding: 0;
}

/* -------hero-sec------- */

.hero-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 5%;
    gap: 2rem;
    height: auto;
  }
  
  .hero-sec .left,
  .hero-sec .right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-sec .left h1 {
    font-size: 3.5rem;
    font-family: 'Jura', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-sec .left p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .btns {
    width: fit-content;
    background: blue;
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-family: 'Aboreto', cursive;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
  }
  
  .btns:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
  
  .hero-sec .right img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  }
  
  /* Responsive Media Queries */
  @media (max-width: 1024px) {
    .hero-sec {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-sec .left,
    .hero-sec .right {
      flex: 1 1 100%;
      align-items: center;
    }
  
    .hero-sec .left h1 {
      font-size: 2.5rem;
    }
  
    .hero-sec .left p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .hero-sec {
      padding: 2rem 1rem;
    }
  
    .hero-sec .left h1 {
      font-size: 2rem;
    }
  
    .btns {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
    }
  }
  


.about {
    background: #000;
    color: white;
}

.about .top {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 5rem 5rem;
}

.about .top .left,
.about .top .right {
    height: 100%;
    width: 100%;
}

.about .top .left h2 {
    font-size: 8rem;
}

.about .top .right {
    text-align: end;
}

.about .top .right h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Aboreto', cursive;
}

.bottom {
    background: #343434;
    padding: 5rem 5rem;
}

.bottom h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Aboreto', cursive;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
}

.bottom-content .left {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
}


.bottom-content .left .first {
    height: 100px;
    width: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.206);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.bottom-content .right {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
}

.bottom-content .right img{
  border-radius: 20px;
}

.bottom-content .right .img1 {
    height: 300px;
    width: 300px;
    object-fit: contain;
    margin-right: -5rem;
    margin-bottom: -2rem;
    z-index: 1;
}

.bottom-content .right .img2 {
    height: 400px;
    width: 400px;
    object-fit: contain;
}

/* ================= Tablet and smaller ================= */
@media (max-width: 1024px) {
    .about .top {
      flex-direction: column;
      text-align: center;
      padding: 4rem 2rem;
    }
  
    .about .top .right {
      text-align: center;
    }
  
    .about .top .left h2 {
      font-size: 4.5rem;
    }
  
    .bottom {
      padding: 4rem 2rem;
    }
  
    .bottom-content {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  
    .bottom-content .left {
      grid-template-columns: 1fr 1fr;
      justify-content: center;
    }
  
    .bottom-content .right {
      justify-content: center;
    }
  
    .bottom-content .right .img1 {
      margin-right: 0;
      margin-bottom: -1rem;
      height: 250px;
      width: 250px;
    }
  
    .bottom-content .right .img2 {
      height: 300px;
      width: 300px;
    }
  }
  
  /* ================= Mobile ================= */
  @media (max-width: 600px) {
    .about .top .left h2 {
      font-size: 3rem;
    }
  
    .about .top .right h4 {
      font-size: 1.4rem;
    }
  
    .about .top p,
    .about .top .right p {
      font-size: 0.95rem;
    }
  
    .bottom h2 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .bottom-content .left {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .bottom-content .left .first {
      width: 100%;
      height: auto;
      border-radius: 20px;
      padding: 1rem;
    }
  
    .bottom-content .right .img1,
    .bottom-content .right .img2 {
      height: 200px;
      width: 100%;
      max-width: 100%;
    }
  
    .bottom-content .right {
      flex-direction: column;
      gap: 1rem;
    }
  }

.services {
    padding: 2rem 5rem;
}

.services .title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Aboreto', cursive;
}

.service-content {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content h2,
.service-content-2 h2 {
    font-family: 'Aboreto', cursive;
}

.service-content .left {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        /* drop shadow */
        inset 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.service-content .right,
.service-content .left {
    height: 100%;
    width: 100%;
}

.service-content .right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-left: -5rem;
    border-radius: 2rem;
}

.service-content-2 {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content-2 .left {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.service-content-2 .right,
.service-content-2 .left {
    height: 100%;
    width: 100%;
    text-align: end;
}

.service-content-2 .right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-right: -5rem;
    border-radius: 2rem;
}

@media (max-width: 1024px) {
    .services {
      padding: 2rem;
    }
  
    .service-content,
    .service-content-2 {
      flex-direction: column;
      text-align: center;
    }
  
    .service-content .left,
    .service-content-2 .left,
    .service-content .right,
    .service-content-2 .right {
      width: 100%;
      margin: 0;
    }
  
    .service-content .right img,
    .service-content-2 .right img {
      margin: 2rem 0 0 0;
      border-radius: 1rem;
    }
  
    .service-content .right img {
      margin-left: 0;
    }
  
    .service-content-2 .right img {
      margin-right: 0;
    }
  
    .service-content .left,
    .service-content-2 .left {
      padding: 1.5rem;
    }
  
    .service-content h2,
    .service-content-2 h2 {
      font-size: 1.8rem;
    }
  
    .service-content p,
    .service-content-2 p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .services {
      padding: 1.5rem 1rem;
    }
  
    .services .title h2 {
      font-size: 1.6rem;
    }
  
    .service-content .left,
    .service-content-2 .left {
      padding: 1rem;
    }
  
    .service-content h2,
    .service-content-2 h2 {
      font-size: 1.5rem;
    }
  
    .service-content p,
    .service-content-2 p {
      font-size: 0.95rem;
    }
  
    .service-content .right img,
    .service-content-2 .right img {
      width: 100%;
      height: auto;
      margin-top: 1rem;
    }
  }
  


.faq-section {
    padding: 5rem;
}

.header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    font-family: 'Aboreto', cursive;
}

.faq-item {
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h2 {
    font-size: 1.8rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    color: #888;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.icon {
    height: 30px;
    width: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 0.4rem;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .icon {
    transform: rotate(90deg);
}

hr {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .faq-section {
      padding: 3rem 2rem;
    }
  
    .header h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }
  
    .faq-question h2 {
      font-size: 1.5rem;
    }
  
    .faq-answer p {
      font-size: 1.1rem;
    }
  
    .icon {
      height: 28px;
      width: 28px;
    }
  }
  
  @media (max-width: 600px) {
    .faq-section {
      padding: 2rem 1rem;
    }
  
    .header h2 {
      font-size: 1.6rem;
      margin-bottom: 2rem;
    }
  
    .faq-question {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .faq-question h2 {
      font-size: 1.3rem;
    }
  
    .faq-answer p {
      font-size: 1rem;
    }
  
    .icon {
      height: 26px;
      width: 26px;
    }
  
    hr {
      margin-top: 1.5rem;
    }
  }
  






.cta {
    padding: 0 5rem 5rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, #ffffff, #1664F8, #ffffff);
    backdrop-filter: blur(10px);
    color: white;
    width: 100%;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
}

.cta-content p {
    font-size: 1.5rem;
    color: white;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

button {
    background: transparent;
    border: solid 1px white;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .cta {
      padding: 0 2rem 4rem 2rem;
    }
  
    .cta-content {
      padding: 1.5rem;
      border-radius: 16px;
    }
  
    .cta-content h2 {
      font-size: 2.2rem;
    }
  
    .cta-content p {
      font-size: 1.2rem;
    }
  
    .cta-content button {
      padding: 0.5rem 1.2rem;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .cta {
      padding: 0 1rem 3rem 1rem;
    }
  
    .cta-content {
      padding: 1rem;
      border-radius: 12px;
    }
  
    .cta-content h2 {
      font-size: 1.6rem;
    }
  
    .cta-content p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  
    .cta-content button {
      font-size: 0.95rem;
      padding: 0.4rem 1rem;
    }
  }
  