
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
 
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
  :root {
    color-scheme: light dark;
  
    --h: 930;
    --s: 88%;
    --l: 66%;
    --brand-color-bg: hsl(var(--h) var(--s) var(--l));
    --brand-color-fg: hsl(0, 7%, 3%);
    --border: 1px solid var(--brand-color-bg);
    --shadow-blur: 1.5rem;
    --shadow-color: hsla(var(--h) var(--s) var(--l) / 0.6);
    --shadow-y: 1rem;
    ---shadow-y: calc(var(--shadow-y) * -1);
    --space: clamp(.1rem, .1rem + 1.3cqi, 1rem);
    --gradient: linear-gradient(
      165deg,
      transparent 50%,
      hsla(var(--h) var(--s) var(--l) / 0.15) 125%
    );
  }

  
.brand-text{
margin-left: auto;
 
  border-image: linear-gradient(130deg,red,green,blue,lime,purple,orange);
  animation: gradient 2s linear infinite;
  border-image-slice: 1;
  font-size: 23px;
  background: linear-gradient(to right,red,green,blue,lime,purple,orange);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes gradient{
  50%{
    filter: hue-rotate(360deg);
  }
}

  .navitems{
    margin: auto;

    display: flex;
  
  
  }
  
  .profile-nav{
    border-radius: 50%;
    max-width:50px;
    max-height: 50px;
    margin:5px;
    box-shadow: 0 0 10px goldenrod;
   
  }

  .login-button{
 
    margin: auto;
   border: purple solid 2px;
     color: #ef0db2;
     border-radius: 10px;
  margin-right: 20px;
     font-family: 'Lora', serif;
     font-style: italic;
     font-weight: 300;
     background: transparent;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     display: inline-block;
     box-shadow: inset 4px 4px 2px 0px rgba(158, 33, 231, 0.5),
      7px 7px 20px 0px rgba(228, 199, 11, 0.1),
      4px 4px 5px 0px rgba(96, 4, 79, 0.1);
     outline: none;
     font-size: 20px;
   }
 
 
   .login-button:hover{
     color: #1e61fe;
     transform: scale(0.96);
   }

 .pro-text{
  flex-wrap: wrap; /* allows wrapping on small screens */
  display: flex;
  align-items: center;
 justify-content: left;
 font-weight: 400;
 }

.btntxt{
justify-content:right;
margin-left: auto;
}

.text {
    overflow-x: hidden;
  padding: 5px;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.1;
 color: rgb(230, 228, 228);
  text-align: justify;
  font-family:Georgia, 'Times New Roman', Times, serif;
     overflow-wrap: break-word; /* Wrap long words */
    word-wrap: break-word;     /* Older browsers */
    word-break: break-word;    /* Break continuous strings */
    hyphens: auto;             /* optional: adds hyphens when breaking words */
}



@media (max-width:40rem) {
    .text {
        font-size: 24px;

        }

        .pro-text{
            font-weight: 400;
        }

     .scroll-container {
font-size: 21px !important;
    line-height: 2rem !important;
    font-weight: 300;
    
  
  }
       
    }


a{
text-decoration: none;
color: inherit;
}

 .profile-text{

  font-size: 20px;
  padding-left: 5px;
font-weight: 200;
max-width: 300px;

 }

 .pro{
  font-size: 17px;
  color: rgb(255, 225, 0);
  margin-left: 5px;
 border: 1px solid orange;
 font-weight: 400;

 }
  .profile-pic{
    cursor: pointer;
  margin: 10px;
    padding:5px auto;
    
    border-radius: 50%;
    max-width:45px;
    max-height: 45px;
      display: block;
  
  }

  .profile-pic:hover{
    opacity: 0.6;
  }
 

 .line{
 

  background-color: #0c0c0c;
 height: 1px;
  
 }

  

  a {
    color: inherit; /* or color: unset; */
    text-decoration: none; /* If you also want to remove underlines */
}

  
.groupbtn{
justify-content:space-between;
 display: flex;
 gap: 15px;
}

 .bi-chat-dots{
  cursor: pointer;
 
}
.chat-dots svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.chat-dots:hover svg {
  transform: scale(0.9);
  color: #ff4081;
}
  
.like-button:hover {
    fill: gold; /* highlight on hover */
    transition: fill 0.2s ease;
}

.like-button.liked {
    fill: gold; /* active liked state */
}
.bi-send {
  transition: transform 0.3s ease, color 0.3s ease;
}

  .bi-send:hover{
    color: rgb(255, 0, 230);
    transform: scale(0.9);
  }
  
  .bi-bookmark-star-fill:hover{
    transform: scale(0.87);
  }


  .btn {
    cursor: pointer;
    gap: 20px;
    font-size: 20px;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
   box-shadow:0 0 2px  var(--brand-color-bg) ;
    line-height: normal;
    margin: 10px ;
    padding: .7rem 3rem .7rem;
    background: var(--brand-color-bg);
    color: var(--brand-color-fg);
    border: unset;
    border-radius: 0.85rem;
  }
  .btn:hover{
  color: rgb(107, 1, 199);
  transform: scale(0.95);
  }
  
  .btn:active {
    transform: translateY(-10%) scale(1.01);
  }
 

.flow > * + * {
  margin-block-start: var(--space);
}

.container {
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr;
  border: var(--border);
  border-radius: 1rem;
  inline-size: min(55rem, 100%);
    gap: var(--space); /* Add this */
    overflow-x: hidden;
}

.intro {
  max-width:100%;
  width: 100%;
  padding: var(--space);
  background-image: var(--gradient);
  white-space: normal;
  box-sizing: border-box;
    overflow-wrap: break-word; /* Wrap long words */
    word-wrap: break-word;     /* Older browsers */
    word-break: break-word;    /* Break continuous strings */
    hyphens: auto;
}

.details {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 1;
  text-align: left;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-block-start: var(--border);
  color: rgb(230, 228, 228);
  
   
  
}

.details :where(header, footer) {
  padding: calc(var(--space) / 2) var(--space);
  text-align: center;
  font-size: 1.8em;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-image: var(--gradient);

}

.scroll-container {
  max-height: 600px;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-color: var(--brand-color-bg) transparent;
  padding: var(--space);
  border-block: var(--border);
  animation: scroll-shadow-inset linear;
  animation-timeline: scroll(self);
  font-size: 1.6rem;
   font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 2.5rem;
  scrollbar-width: thin;
  color: rgb(230, 228, 228);
  white-space: normal;
     overflow-wrap: break-word; /* Wrap long words */
    word-wrap: break-word;     /* Older browsers */
    word-break: break-word;    /* Break continuous strings */
    hyphens: auto;             /* optional: adds hyphens when breaking words */
  
}



        .span-text {
            display: inline-block;
            max-width: 100%;
            /* leave space for icons */
            overflow-wrap: break-word;
            word-break: break-word;
            white-space: normal;
    
            /* Font size adjusts based on container width */
            font-size: clamp(15px, 2vw, 20px);
        }



@media (min-width: 40rem) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
  .scroll-container {
    font-size: 1.6rem;
  }
  .details {
    border-block-start: unset;
    border-inline-start: var(--border);
  }

       
}

@media (max-width: 40rem) {
  .container {

    grid-template-columns: 1fr;
  }
.details{
     width: 100%;
    padding: 1rem;
    max-width: 100%;
    font-size: 15px;
}

  .text {
      font-size: 21px;
  }
  .intro {
    width: 100%;
    padding: 1rem;
    max-width: 100%;
    overflow-wrap: break-word;
        /* Wrap long words */
        word-wrap: break-word;
        /* Older browsers */
        word-break: break-word;
        /* Break continuous strings */
        hyphens: auto;
  }
          .span-text {
              display: inline-block;
              max-width: 100%;
              /* leave space for icons */
              overflow-wrap: break-word;
              word-break: break-word;
              white-space: normal;
    
              /* Font size adjusts based on container width */
              font-size: clamp(15px, 2vw, 20px);
          }

                  .profile-text {
                      display: flex;
                      align-items: center;
                      gap: 6px;
                      flex: 1;
                      min-width: 0;
                      /* 🔥 REQUIRED for text shrinking */
                  }


}

@media (min-width: 80rem) {
  :root {
    --space: 1.5rem;
  }
  .container {
    inline-size: min(70rem, 100%);
  }
  .details{
    text-align: justify;
  }
  .scroll-container {
    font-size: 1.6rem;
    text-align: justify;
  }
  .details :where(header, footer) {
    font-size: 2rem;
  }

   
  
}
  


.profile {
  width: 100%;        /* fill the container */
  max-width: 100%;    /* don't overflow */
  height: 320px;      /* fixed height for layout stability */

  border-radius: 15px;
  display: block;
  margin: auto;
  background: #111;   /* fallback background while loading */
}

  




  @keyframes scroll-shadow-inset {
    from {
      box-shadow: inset 0 var(---shadow-y) var(--shadow-blur) var(---shadow-y)
        var(--shadow-color);
    }
  
    to {
      box-shadow: inset 0 var(--shadow-y) var(--shadow-blur) var(---shadow-y)
        var(--shadow-color);
    }
  }
  

  






  .scrollable-tabs-container {
    font-family: "Roboto", sans-serif;
    background: #000;
   width: 100%;
   height:46px;
   margin: 0 auto;
 display: flex;
   overflow: hidden;

  }
  
  .scrollable-tabs-container svg {
    width: 24px;
    height: 8px;
    padding: 8px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 50%;
    pointer-events: auto;
  }
  
  .scrollable-tabs-container ul {
    display: flex;
    gap: 16px;
    padding: 8px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  
  .scrollable-tabs-container ul.dragging a {
    pointer-events: none;
  }
  
  .scrollable-tabs-container ul.dragging {
    scroll-behavior: auto;
  }
  
  .scrollable-tabs-container ul::-webkit-scrollbar {
    display: none;
  }
  
  .scrollable-tabs-container a {
    color: #fff;
    text-decoration: none;
    background: #333;
    padding: 4px 24px;
    display: inline-block;
    border-radius: 4px;
    user-select: none;
    white-space: nowrap;
  }

  .scrollable-tabs-container a:hover{
    opacity: 0.8;
  }
  

  
  .scrollable-tabs-container .right-arrow,
  .scrollable-tabs-container .left-arrow {
    position: absolute;
    height: 100%;
    width: 25px;
    top: 0;
    display: none;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
  }
  
  .scrollable-tabs-container .right-arrow.active,
  .scrollable-tabs-container .left-arrow.active {
    display: flex;
  }
  
  .scrollable-tabs-container .right-arrow {
    right: 0;
   
    justify-content: flex-end;
  }
  
  
  
  .scrollable-tabs-container svg:hover {
    background: #333;
  }
  
.icon-text{
margin-left: auto;
font-size:1.25rem;

}
.scrollable-tabs-container a.active-link {
  color: orange;
  font-weight: bold;
 
}

  

  

  .tab-search{
    transition: top 1s; 
    top: 0;
    z-index: 100;
    overflow: hidden;
    position: sticky;
   
  }
  
  
  
  
  .input-box {
    position: relative;
   overflow: hidden;
    height: 46px;
    max-width: 900px;
    width: 100%;
    background: #efeeee;
    margin: 3px auto;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .input-box i,
  .input-box .button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .input-box i {
    left: 20px;
    font-size: 30px;
    color: #080808;
  }
  .input-box input {
    color:black;
    height: 100%;
    width: 90%;
    outline: none;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
    border: none;
    padding: 0 155px 0 65px;
    background-color: transparent;
  }
  .input-box .button {
    right: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 6px;
    background-color: #181819;
    cursor: pointer;
  }
  .input-box .button:active {
    transform: translateY(-50%) scale(1.1);
  }
  .input-box .button:hover{
    color: aqua;
  }

/* close icon search box */

.close-icon:hover::after {
    background-color: rgb(129, 9, 176);
    color: white;
    transform: scale(0.9);
}


.close-icon {
	border:1px solid transparent;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
  outline: 0;
  cursor: pointer;
}
.close-icon:after {
	content: "X";
  margin: auto;
	display: block;
	width: 21px;
	height: 22px;
	position: absolute;
	background-color: #141414;
	z-index:1;
right: 110px;
  padding: 2px auto;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	text-align: center;
	color: white;
	font-weight: normal;
	font-size: 16px;
	box-shadow: 0 0 2px #b1b1b1;
	cursor: pointer;
}


.search-box:not(:valid) ~ .close-icon {
	display: none;
}



/* close icon search box */

  
  /* Responsive */
  @media screen and (max-width: 600px) {

  /* Input Box */
  .input-box {
    height: 60px;
    margin: 5px 5px;
  }
  .input-box i {
    left: 12px;
    font-size: 24px;
  }
  .input-box input {
    font-size: 20px;
    padding: 0 18% 0 12%;
    width: 100%;
  }
  .input-box .button {
    right: 12px;
    font-size: 14px;
    padding: 8px 16px;
  }
  .close-icon:after {
    font-size: 16px;
    width: 25px;
    height: 26px;
  }

  /* Swiper Cards */
  .card {
    max-width: 95%;
    height: fit-content;
    min-height: auto;
  }
  .card img {
    height: auto;
    max-height: 350px;
  }
  .card-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .card-content p {
    font-size: 1.4rem;
  }
  }
  




  nav.mobile { display: flex;  position: fixed; bottom: 0; width: 100%; padding: 0.6rem 0; background: rgb(185, 185, 185); border-top: 1px solid #ccc; z-index: 9999; left: 0; }
  .mobile { transition: 0.5s ease!important; }
   nav.mobile ul { list-style: none; gap: 25px; display: flex; justify-content: space-between;  align-items: center; width: 100%; margin: 0; justify-self: center; vertical-align: middle; } 
   nav.mobile ul li { display: flex;  flex-direction:calc(); align-items: center; font-size: 0.8rem; flex-grow: 1; margin: 0; } 
   nav.mobile ul li a { color: #222; font-size: inherit; display: var(--prP3M8); flex-direction: var(--mZSq9k); }
   nav.mobile ul li a svg{width: 24px; height: 24px; display: block;margin: 0 auto; } 
 
 
   .bi-globe{
     cursor: pointer; /* Change cursor to pointer to indicate clickability */
 }
 .bi-globe:hover{
   color: #8f19f6;
 }
 
 
 
 .bi-plus-circle-fill{
   cursor: pointer; /* Change cursor to pointer to indicate clickability */
 }
 .bi-plus-circle-fill:hover{
   color: #8f19f6;
 }
 

 
 .bi-controller {
   cursor: pointer; /* Change cursor to pointer to indicate clickability */
 }
 .bi-controller :hover{
   color: #8f19f6;
 }
 

 
 .bi-house-door{
 cursor: pointer; /* Change cursor to pointer to indicate clickability */
 }
 .bi-house-door:hover{
   color: #8f19f6;
 }
 

 
 .bi-person-circle{
   cursor: pointer; /* Change cursor to pointer to indicate clickability */
 
 
   }
  
   .bi-person-circle:hover{
     color: #8f19f6;
   }

   .bi-bell-fill{
    cursor: pointer;
   }

   .bi-bell-fill:hover{
    color: #8f19f6;
   }
.active-icon {
  color: #5609ba  !important; /* applies to most icons */
  fill: #5609ba !important;  /* for some icons using 'fill' instead of 'color' */
}

 
/* show-off card slider */
 .mySwiper {
      width: 100%;
      padding: 40px 0;
    
    }

    .card {
background-image: url(https://sweetyguys.com/posts/background/pricing.png);

      border-radius: 16px;
      overflow: hidden;
      
      transition: transform 0.3s ease;
       height: auto;         
       max-width: 580px;
          min-height: 500px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 15px rgb(177, 24, 124) 
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card-image {
      position: relative;
      padding: 10px;
   
    }



    .card-image img{
     height: auto;
     
    }
    
.card img {
        border-radius: 10px;
      width: 100%;
     height: auto;
     max-height: 450px;
     
      display: block;
    }

    




    .card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .card-content h3 {
      text-align: justify;
      font-family: serif;
      margin: 0 0 10px;
      font-size: 1.65rem;
       color: rgb(200, 200, 200);
         word-spacing: normal;     /* reset stretched gaps */
    hyphens: auto;            /* allow hyphenation if supported */
    overflow-wrap: break-word;/* break long words when needed */
    }

    .card-content p {
      text-align: justify;
      font-family: serif;
      margin: 0;
      font-size: 1.50rem;
      color: rgb(247, 207, 78);
        word-spacing: normal;     /* reset stretched gaps */
    hyphens: auto;            /* allow hyphenation if supported */
    overflow-wrap: break-word;/* break long words when needed */
    }


    .brand {
 
  margin-top: 10px;
  padding: 5px 12px;
  font-size: 18px;
  font-weight:500;
  color: #ffffff; 
  border-radius: 12px;
  background-color: #442460;
  width:fit-content;
  
}
  .card-tag {
  display: inline-block;         /* so it sits nicely below text */
  margin-top: 10px;               /* push it to bottom if card grows */
  background: rgba(135, 57, 209, 0.99);
  color: #fff;
  font-size:18px;
  padding: 5px 12px;
  border-radius: 12px;
   background-color: #6f2940;
  width:fit-content;
}

    /* Hide arrows on screens smaller than 768px */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
     display: none !important;
  }
 .card-content h3{
  
    font-size: 20px;
    text-align: justify;      /* keep justification */
    line-height: 1.4;         /* improves readability */
    word-spacing: normal;     /* reset stretched gaps */
    hyphens: auto;            /* allow hyphenation if supported */
    overflow-wrap: break-word;/* break long words when needed */
 }
 .card-content p{
  font-family: serif;
    font-size: 20px;
     text-align: justify;
       word-spacing: normal;     /* reset stretched gaps */
    hyphens: auto;            /* allow hyphenation if supported */
    overflow-wrap: break-word;/* break long words when needed */
 }
 .card img{
  height: 350px;
 }


 .card{
  
    
    height: fit-content;
 }




}

/* show-off card slider */
  

/* Promptional Card */

.card-container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

}

.card1 {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
background-image: url("https://sweetyguys.com/posts/background5.png");

  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px wheat;
  max-width: 600px;
  width: 100%;
  border: solid 2px rgb(14, 13, 13);
}

.card-image1 {
  padding: 10px; /* Padding around the image */
  
}

.card-image1 img {
  width: 100%;
  height:auto;
 
  border-radius: 10px;
}

.card-content1 {
  padding: 20px;
}

.card-content1 h3 {
text-align: left;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 23px;
color: black;
}

.card-content1 p {
  margin: 0;
  color:black;
  font-weight: 540;
  font-size: 20px;
}
.card-privacy {
  position: relative;
  color: #6d3ad6;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease;
}

.card-privacy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #6d3ad6;
  transition: width .5s ease;
}

.card-privacy:hover {
  color: #4b1c9a;
}

.card-privacy:hover::after {
  width: 100%;
}

/* Media Query for Smaller Screens */
@media (max-width: 600px) {
  .card1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
  }

  .card-image1,
  .card-content1 {
    padding: 20px;
  }

  .card-image1{
    padding-bottom: 0;
    height: 300px;
    margin-bottom:50px;
  }

  .card-image1 img{
     max-height:270px;
  }

  .card-content1 {
    padding-top: 0;
  }

  .card-content1 p{
font-size: 20px;
font-weight: 450;
color: #c1bfbf;
  }

  .card-content1 h3 {
    margin-top: 45px;
    font-size: 20px;
    text-align: justify;
    color: rgb(194, 194, 194);
   
  }
  .promotion-price{
    font-weight: 500;
  }
}


.text1{
  font-size: 24px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: justify;
  line-height: 2rem;
  color: #bebdbd;

 
}

.profile1{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.pic-text1{
  font-family: Georgia, 'Times New Roman', Times, serif;
 margin-right: auto;
 margin-top: auto ;
 font-size: 21px;
 font-weight: 500;
box-shadow: 0 0 25px rgb(78, 20, 78) inset;
color: #f9f6f2;


}


.btn1{
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: rgb(156, 85, 243);
  font-size: 23px;
  font-weight: 600;
  color: whitesmoke;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  box-shadow: 0 0 30px inset rgb(222, 25, 222);
  border: none;
 

}

.btn1:hover{
  background-color: #ffaa00;
  transform: scale(0.95);
}

.bi-flag-fill:hover{
  transform: scale(0.87);
  color: red;
}


 
  /* Promptional Card */

