@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #c4a3df;
    font-family: Poppins;
}
:root{
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #1f2937, #111827);
  color: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* --- Navigation Styles --- */
nav {
  display: flex;
  gap: 20px;
  transition: max-height 0.5s ease-in-out;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Mobile Styles --- */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }

  nav {
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #1f2937;
      max-height: 0;
      overflow: hidden;
  }

  nav.show {
      max-height: 300px; /* Enough height for all links */
  }

  nav a {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* carousel */
.carousel{
    position: relative;
    height: 710px;
    overflow: hidden;
    margin-top: -50px;
}
.carousel .list{
    position: absolute;
    width: 1110px;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.carousel .list .item{
    position: absolute;
    left: 0%;
    width: 70%;
    height: 118%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel .list .item:nth-child(n + 6){
    opacity: 0;
}
.carousel .list .item:nth-child(2){
    z-index: 10;
    transform: translateX(0);
}
.carousel .list .item img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}

.carousel .list .item .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel .list .item:nth-child(2) .introduce{
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
}
.carousel .list .item .introduce .title{
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
}
.carousel .list .item .introduce .topic{
    font-size: 4em;
    font-weight: 500;
}
.carousel .list .item .introduce .des{
    font-size: small;
    color: #5559;
}
.carousel .list .item .introduce .seeMore{
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #555;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 3px;
    transition: background 0.5s;
}
.carousel .list .item .introduce .seeMore:hover{
    background: #eee;
}
.carousel .list .item:nth-child(1){
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}
.carousel .list .item:nth-child(3){
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4){
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5){
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel .list .item:nth-child(2) .introduce .topic{
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .introduce .des{
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .introduce .seeMore{
    animation-delay: 1.6s;
}
/* next click */
.carousel.next .item:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}
.carousel.next .item:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}
.carousel.next .item:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}
.carousel.next .item:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}
/* previous */
.carousel.prev .list .item:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}

/* detail  */
.carousel .list .item .detail{
    opacity: 0;
    pointer-events: none;
}
/* showDetail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2){
    width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img{
    right: 50%;
}
.carousel.showDetail .list .item:nth-child(2) .detail{
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title{
    font-size: 4em;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1){
    font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button{
    font-family: Poppins;
    background-color: transparent;
    border: 1px solid #5555;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}

.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button:nth-child(2){
    background-color: #693EFF;
    color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .title,
.carousel.showDetail .list .item:nth-child(2) .detail  .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .des{
    animation-delay: 1.2s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    animation-delay: 1.4s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    animation-delay: 1.6s;
}
.arrows{
    position: absolute;
    bottom: 10px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}
#prev,
#next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #5555;
    font-size: large;
    bottom: 20%;
    left: 10%;
}
#next{
    left: unset;
    right: 10%;
}
#back{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #555;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    /* opacity: 0; */
    transition: opacity 0.5s;
}
.carousel.showDetail #back{
    opacity: 1;
}
.carousel.showDetail #prev,
.carousel.showDetail #next{
    opacity: 0;
    pointer-events: none;
}
.carousel::before{
    width: 500px;
    height: 400px;
    content: '';
    background-image: linear-gradient(70deg, #950941, rgb(255, 179, 0));
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}
.carousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}
@media screen and (max-width: 991px){
    /* ipad, tablets */
    .carousel .list .item{
        width: 90%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .specifications{
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .title{
        font-size: 2em;
    }
}
@media screen and (max-width: 767px){
    /* mobile */
    .carousel{
        height: 600px;
    }
    .carousel .list .item{
        width: 100%;
        font-size: 10px;
    }
    
    .carousel .list{
        height: 100%;
    }
    .carousel .list .item:nth-child(2) .introduce{
        width: 50%;
    }
    
    .carousel .list .item img{
        width: 40%;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail{
        backdrop-filter: blur(10px);
        font-size: small;
    }
    .carousel .list .item:nth-child(2) .introduce .des,
    .carousel.showDetail .list .item:nth-child(2) .detail .des{
        height: 100px;
        overflow: auto;
    }
    .carousel.showDetail .list .item:nth-child(2) .detail .checkout{
        display: flex;
        width: max-content;
        float: right;
    }
}



  /* Contact Page */
  


  /* styles.css */

  
  .container {
    max-width: 1000px;
    margin: 2em auto;
    padding: 2em;
    background: #b96868;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  #about{
    color: #dae7e7;
    background-image: linear-gradient(135deg, #1e1e2f, #292945);
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2em;
  }
  #about h2 ,h3 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
    color: #e1dede;
  }
  h1, h2 {
    color: #270505;
  }
  
  .about-me {
    display: flex;
    align-items: center;
    gap: 2em;
    flex-direction: row;
    flex-wrap: wrap;
  

  }
  
  .about-me img {
    border-radius: 50%;
    width: 300px;
    height:300px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,1.0);
    transition: transform 0.3s;
    &:hover {
      transform: scale(1.05);
    }
    &:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,1.3);
    }
  
  }
  /* Responsive about-me*/
   @media (max-width: 768px) {
    .about-me {
      flex-direction: column;
      align-items: center;
    }
  
    #about-me img {
      width: 80%;
      height: auto;

    }
  }
   


  .container1{
    background-image: linear-gradient(90deg, #d4c2d7, hsl(194, 29%, 76%));
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2em;
    max-width: 1000px;
    justify-content: center;
    margin: 0 auto;
  }
  .container1 h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
    color: #270505;
  }
  .container1 h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
    color: #270505;
  }
  .container1 p {
    font-size: 1.2em;
    color: #270505;
    text-align: center;
    margin-bottom: 1em;
  }
  .review {
    border-bottom: 1px solid #1d0e0e;
    padding: 1.5em 0;
    display: flex;
    gap: 1em;
    align-items: center;
            
  }
  
  .review:last-child {
    border-bottom: none;

  }
  
  .review img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    &:hover {
      transform: scale(1.25);
    }
    &:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,1.3);
    }

  }
  
  
  .socials a {
    color: #fff;
    margin: 0 0.5em;
    text-decoration: none;
  }
  
footer {
  background: linear-gradient(135deg, #1e1e2f, #292945);
  color: #fff;
  padding: 30px 20px;
  margin-top: 40px;
  font-family: 'Segoe UI', sans-serif;
}

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

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.social-media {
  margin-top: 10px;
}

.social-media a {
  color: #bbb;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.social-media a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #a7dede;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.social-media a:hover {
  color: #00e6e6;
}

.social-media a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
  .social-media {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-media a {
    margin: 0;
  }
}



/* /* contact us Form Styles  */


.main-container {
  background: url('/images/buds.png') no-repeat center center/cover;

    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    padding: 20px;
  }
  
  .form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
  
  .form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .form-header h1 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
    text-align: center;
  }
  
  .form-header p {
    color: #777;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-body form {
    width: 100%;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .input-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .input-group input,
  .input-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .input-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .submit-group {
    text-align: center;
    margin-top: 20px;
  }
  
  .submit-group button {
    padding: 12px 30px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .submit-group button:hover {
    background-color: #4338ca;
  }
  
  .form-footer {
    text-align: center;
    margin-top: 15px;
    color: #888;
    font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  }

/* info css */
/* ========== GLOBAL RESET ========== */


/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* ========== HEADINGS ========== */
.container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #111827;
}

.container h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #1f2937;
}

/* ========== IMAGE STYLING ========== */
.image1 {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.image1 img {
  width: 410px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
  
  
}

.image1 img:hover {
  transform: scale(1.05);
}
/*responsive image1*/
@media (max-width: 768px) {
  .image1 img {
    width: 50%;
    height: auto;
    gap: 10px;
    margin: 0 auto;
  }
}

/* ========== DESCRIPTION ========== */
.description {
  font-size: 1rem;
  margin-top: 10px;
  background-color: #f9fafb;
  padding: 20px;
  border-left: 5px solid #3b82f6;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.description:hover {
  background-color: #eef2ff;
}

/* ========== SPECIFICATIONS ========== */
.specs {
  margin-top: 30px;
  padding: 20px;
  background-color: #f3f4f6;
  border-radius: 10px;
  border-left: 5px solid #10b981;
  transition: background 0.3s ease;
}

.specs:hover {
  background-color: #e0f2f1;
}

.specs ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.specs li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.specs li:last-child {
  border-bottom: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .image1 img {
    width: 80%;
  }

  .container h1 {
    font-size: 2rem;
  }

  .container h2 {
    font-size: 1.3rem;
  }
}



/* review images images */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-grid img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.image-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.image-grid .img-tws{
  width: 70%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
}
/*reponsive of img-grid*/
@media (max-width: 768px) {
  .image-grid .img-tws {
    width: 100px;
    height: 100px;
  }
  .image-grid img {
    width: 100px;
    height: 100px;
  }
  .image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
}
/* about img  */

#about-Me-img {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* makes it a perfect circle */
  object-fit: cover; /* ensures the image fills the circle */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: grayscale(20%);
  cursor: pointer;
  margin: 20px auto; /* centers the image */
}

#about-Me-img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
  filter: grayscale(0%);
}

#about-Me-img:hover {
  transform: scale(1.05) rotate(1.5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  filter: grayscale(0%);
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#aboutMeimg {
  animation: fadeInZoom 0.8s ease-out;
}
