*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Navbar Styling Start */

.header
{
    color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 0px 25px;
    height: 60px;
    align-items:center;
}


.gracious
{
    font-size: 35px;
    font-family:Dancing Script;
    color: Black;
    font-weight: 1200px;
}

.garments
{
font-size: 25px;
font-family: Dancing Script;
color: #4caf50;
font-weight: 900px;
}


.search
{
    padding-top: 5px;
}

.search input
{

    height: 30px;
    width: 100%;
    border: none;
    outline:1px solid black;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    color: grey;
}

.icons
{
    text-align: right;
}

.icons .fa-solid

{
    color: black;
    text-decoration: none;
    font-size: 20px;
    padding: 0px 10px;
    transition: 0.6s;
}

.fa-solid:hover
{
    color:   #4caf50;
}

@media screen and (max-width:576px)
{
    .header
    {
        grid-template-columns: auto auto;
        padding: 10px 5px;
        height: auto;
    }

    .logo
    {
        padding-bottom: 10px;
    }

    .search
    {
        width: 100%;
        grid-column: 2;
        grid-row: 2;
        grid-column: 1/span 2;
    }

    .icons .fa-solid
    {
        padding: 10px;
    }

    .bottom_nav li a
    {
        color: black;
        font-weight: 200;
        font-size: 14px;
    }


}

@media screen and (max-width:768px)
{
    .header
    {
        grid-template-columns: auto auto;
        padding: 10px 5px;
        height: auto;
    }

    .logo
    {
        padding-bottom: 10px;
    }


    .search
    {
        width: 100%;
        grid-column: 2;
        grid-row: 2;
        grid-column: 1/span 2;
    }

    .icons .fa-solid
    {
        padding: 10px;
    }

    .bottom_nav li a
    {
        color: black;
        font-weight: 300;
        font-size: 18px;
    }

}

@media screen and (max-width:992px)
{
    .header
    {
        grid-template-columns: auto auto;
        padding: 10px 5px;
        height: auto;
    }

    .logo
    {
        padding-bottom: 10px;
    }


    .search
    {
        width: 100%;
        grid-column: 2;
        grid-row: 2;
        grid-column: 1/span 2;
    }

    .icons .fa-solid
    {
        padding: 10px;
    }

    .bottom_nav li a
    {
        color: black;
        font-weight: 400;
        font-size: 20px;
    }
 
  }
  
.bottom_nav
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.bottom_nav li
{
    list-style:none;  
}

.bottom_nav li a
{
    text-align: center;
    text-decoration: none;
    color: black;
    font-family: Young Serif;
    font-weight: 500;
    font-size: 22px;
    transition:0.6s;
}

.bottom_nav li a:hover
{
    color: #4caf50;
}


/* Navbar Styling End */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Your existing styles */
.heading-3 {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 20px auto;
}

.heading-3 h2 {
  font-family: Croissant One;
  font-size: 40px;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.heading-3 h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0 auto;
  background-color: #4caf50;
}
 @media (min-width: 768px) {

  /* show 3 items */
  .carousel-inner .active,
  .carousel-inner .active + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item  {
      display: block;
  }
  
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
      transition: none;
  }
  
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    transform: translate3d(0, 0, 0);
  }
  
  .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: absolute;
      top: 0;
      right: -25%;
      z-index: -1;
      display: block;
      visibility: visible;
  }
  
  /* left or forward direction */
  .active.carousel-item-left + .carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: relative;
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
  }
  
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      display: block;
      visibility: visible;
  }
  
  /* right or prev direction */
  .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: relative;
      transform: translate3d(100%, 0, 0);
      visibility: visible;
      display: block;
      visibility: visible;
  }

} 

/*Cards Top Selling Styling Start*/

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cards {
    width: 100%;
    max-width: 280px; /* Adjust max-width as needed */
    transition: all .5s linear;
    margin: 10px; /* Add margin for spacing between cards */
}

.box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

img {
    width: 100%;
    transition: all 1s linear;
}

img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.box span
{
    padding-top: 18px;
    font-size: 30px;
    font-weight: 800;

}

.box:hover img {
    opacity: 0;
}

.box:hover img.hover {
    opacity: 1;
    transform: scale(1.1);
}

.star i {
    font-size: 15px;
}

.para p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 2%;
}

.buttons a {
    padding: 10px;
    background-color: black;
    color: white;
    text-decoration: none;
    margin-top: 2%;
    animation-name: bg;
    animation: 1s infinite;
}

.buttons {
    text-align: center;
}

.delivery p {
    font-size: 20px;
    font-weight: bold;
}

/* Media Query for Tablets (768px) and larger screens */
@media (min-width: 768px) {
    .cards {
        width: calc(50% - 20px); /* Two cards per row with margin */
    }
}

/* Media Query for Desktop (1200px) and larger screens */
@media (min-width: 1200px) {
    .cards {
        width: calc(33.33% - 20px); /* Three cards per row with margin */
    }
}

/*Cards Top Selling Styling End*/



/*About Us styling Start */
.heading
{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h2
{
  font-family: Croissant One;
  font-size: 40px;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}


.heading h2::after
{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #4caf50;
}



.heading
{
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 20px auto;
}

.heading h1
{
  font-family: Croissant One;
  font-size: 40px;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.heading h1::after
{
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0 auto;
  background-color: #4caf50;
}

.heading p
{
  font-size: 18px;
  color: #666;
  margin-bottom: 35px;
}

.container
{
  width: 90%;
  margin: 0 auto;
  padding: 10px 20px;
}

.about
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

}

.about-image
{
  flex: 1;
  margin-right: 40px;
  overflow: hidden;
  margin-left: 40px;
}

.about-image img
{
  max-width: 100%;
  height: auto;
  display: block;

}

.about-image img:hover
{
  transform: scale(1.1);
}

.about-content
{
  flex: 1;
}

.about-content .heading-6
{
  font-family:Pacifico;
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.about-content .heading-6:hover
{

  color: rgb(12, 89, 114);
}

.about-content .para-5
{
  font-size: 18px;
  line-height: 1.5;
  color: #666;
}

.about-content .read-more
{
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #4caf50;
  font-size: 19px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 15px;
}

.about-content .read-more:hover
{
  background-color: #3e8e41;

}


@media screen and (max-width: 768px) {
  .heading{
      padding: 0px 20px;
  }
  .heading h1{
      font-size: 36px;
  }
  .heading p{
      font-size: 17px;
      margin-bottom: 0px;
  }
  .container{
      padding: 0px;

  }
  .about{
      padding: 20px;
      flex-direction: column;

  }
  .about-image{
      margin-right: 0px;
      margin-bottom: 20px;
  }
  .about-content p{
      padding: 0px;
      font-size: 16px;

  }
  .about-content .read-more{
      font-size: 16px;
  }
}




/*About Us Styling End*/ 



        /* Review skider styling start */
        .title
        {
            width: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            margin: 20px auto;
        }
        
        .title h2
        {
          font-family: Croissant One;
          font-size: 40px;
          color: #000;
          margin-bottom: 25px;
          position: relative;
        }
      
      
        .title h2::after
        {
            content: "";
            position: absolute;
            width: 100%;
            height: 4px;
            display: block;
            margin: 0 auto;
            background-color: #4caf50;
        }
      
          h4 {
            font-size: 0.875rem;
          }
          p {
            margin-bottom: 1.25rem;
            color: gray;
          }
          
          /*
          =============== 
          Reviews
          ===============
          */
          main {
            min-height: 90vh;
            display: grid;
            place-items: center;
          }
          .title {
            text-align: center;
            margin-top: 0.1rem;
            margin-bottom: 2.5rem;
          }
          .container {
            width: 80vw;
            max-width: 80%;
          }
          .review {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            box-shadow:  0 5px 15px rgba(0, 0, 0, 0.3);
            transition: box-shadow 0.3s linear;
            text-align: center;
          }
          .review:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          }
          .img-container {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto;
            margin-bottom: 1.5rem;
          }
          #person-img {
            width: 100%;
            display: block;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            position: relative;
          }
          .img-container::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f10e";
            position: absolute;
            top: 0;
            left: 0;
            width: 2.5rem;
            height: 2.5rem;
            display: grid;
            place-items: center;
            border-radius: 50%;
            transform: translateY(25%);
            background: #3e8e41;
            color: white;
          }
          .img-container::before {
            content: "";
            width: 100%;
            height: 100%;
            background: #3e8e41;
            position: absolute;
            top: -0.25rem;
            right: -0.5rem;
            border-radius: 50%;
          }
          #author {
            margin-bottom: 0.25rem;
          }
          #job {
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            color: gray;
            font-size: 0.85rem;
          }
          #info {
            margin-bottom: 0.75rem;
          }
          .prev-btn,
          .next-btn {
            color: #3e8e41;
            font-size: 1.25rem;
            background: transparent;
            border-color: transparent;
            margin: 0 0.5rem;
            transition: color 0.3s linear;
            cursor: pointer;
          }
          .prev-btn:hover,
          .next-btn:hover {
            color: black;
          }
          .random-btn {
            margin-top: 0.5rem;
            background: #3e8e41;
            color: white;
            padding: 0.25rem 0.5rem;
            text-transform: capitalize;
            border-radius: 5px;
            transition: background 0.3s linear, color 0.3s linear;
            border: 2px solid black;
            cursor: pointer;
          }
          .random-btn:hover {
            background: white;
            color: black;
          }
          
          /* Review skider styling end */


          /* Project Counter Styling Start */
          @import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow);
          body {
            font-family: Open Sans, "Helvetica Neue", "Helvetica", Helvetica, Arial,   sans-serif;
            font-size: 13px;
            color: #666;
            position: relative;
            -webkit-font-smoothing: antialiased;
            margin: 0;
          }
          
          * {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
          }
          
          body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
            margin: 0;
            padding: 0;
            font-size: 13px;
            direction: ltr;
          }
          
          .sectionClass {
            padding: 20px 0px 50px 0px;
            position: relative;
            display: block;
          }
          
          .fullWidth {
            width: 100% !important;
            display: table;
            float: none;
            padding: 0;
            min-height: 1px;
            height: 100%;
            position: relative;
          }
          
          
          .sectiontitle {
            background-position: center;
            margin: 30px 0 0px;
            text-align: center;
            min-height: 20px;
          }
          
          .sectiontitle h2 {
            font-size: 30px;
            color: #222;
            margin-bottom: 0px;
            padding-right: 10px;
            padding-left: 10px;
          }
          
          
          .headerLine {
            width: 370px;
            height: 5px;
            border-radius: 10px;
            display: inline-block;
            background: #4caf50;
          }
          
          
          .projectFactsWrap{
              display: flex;
            margin-top: 30px;
            flex-direction: row;
            flex-wrap: wrap;
          }
          
          
          #projectFacts .fullWidth{
            padding: 0;
          }
          
          .projectFactsWrap .item{
            width: 25%;
            height: 100%;
            padding: 50px 0px;
            text-align: center;
          }
          
          .projectFactsWrap .item:nth-child(1){
            background:black;
          }
          
          .projectFactsWrap .item:nth-child(2){
            background: black;
          }
          
          .projectFactsWrap .item:nth-child(3){
            background: black;
          }
          
          .projectFactsWrap .item:nth-child(4){
            background: black;
          }
          
          .projectFactsWrap .item p.number{
            font-size: 40px;
            padding: 0;
            font-weight: bold;
          }
          
          .projectFactsWrap .item p{
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            margin: 0;
            padding: 10px;
            font-family: 'Open Sans';
          }
          
          
          .projectFactsWrap .item span{
            width: 60px;
            background: rgba(255, 255, 255, 0.8);
            height: 2px;
            display: block;
            margin: 0 auto;
          }
          
          
          .projectFactsWrap .item i{
            vertical-align: middle;
            font-size: 50px;
            color: rgba(255, 255, 255, 0.8);
          }
          
          
          .projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
            color: white;
          }
          
          .projectFactsWrap .item:hover span{
            background: white;
          }
          
          @media (max-width: 786px){
            .projectFactsWrap .item {
               flex: 0 0 50%;
            }
          }
          
          /* AUTHOR LINK */
          
          
          .footer_start{
            z-index: 100;
            padding-top: 50px;
            padding-bottom: 50px;
            width: 100%;
            bottom: 0;
            left: 0;
          }
          
        .footer_start p {
          color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            opacity: 0;
            font-family: 'Open Sans';
            width: 100%;
              word-wrap: break-word;
            line-height: 25px;
            -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
            margin: 0;
            -webkit-transition: all 250ms ease;
            -moz-transition: all 250ms ease;
            transition: all 250ms ease;
          }
          
          .footer_start .authorWindow a{
            color: white;
            text-decoration: none;
          }
          
          .footer_start p strong {
              color: rgba(255, 255, 255, 0.9);
          }
          
          .about-me-img {
            width: 120px;
            height: 120px;
            left: 10px;
            /* bottom: 30px; */
            position: relative;
            border-radius: 100px;
          }
          
          
          .about-me-img img {
          }
          
          
          .authorWindow{
            width: 600px;
            background: #75439a;
            padding: 22px 20px 22px 20px;
            border-radius: 5px;
            overflow: hidden;
          }
          
          .authorWindowWrapper{
            display: none;
            left: 110px;
            top: 0;
            padding-left: 25px;
            position: absolute;
          }
          
          
          
          
          
          .trans{
            opacity: 1;
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            transition: all 500ms ease;
          }
          
          @media screen and (max-width: 768px) {
              .authorWindow{
                   width: 210px;
              }
          
              .authorWindowWrapper{
                       bottom: -170px;
            margin-bottom: 20px;
              }
          
              footer p{
                    font-size: 14px;
              }
          }
          
          

          /* Project Counter Styling End */

     /* footer styling start */

     .footer
     {
       background-color: #eef8ff;
     }
     
     
     
     footer
     {
       width: 100%;
       bottom: 0;
       background: rgb(70, 70, 70, 0.7);
       color: #fff;
       padding: 100px 30px 0px;
       border-top-left-radius: 125px ;
       font-size: 13px;
       line-height: 20px;
     }
     
     .row
     {
       width: 85%;
       margin: auto;
       display: flex;
       flex-wrap: wrap;
       align-items: flex-start;
       justify-content: space-between;
     }
     
     
     
     .col
     {
       flex-basis: 25%;
       padding: 10px;
     }
     
     .col :nth-child(2) ,.col :nth-child(3) 
     {
       flex-basis: 15%;
     
     }
     
     
     .col h3
     {
       width: fit-content;
       margin-bottom: 20px;
       position: relative;
     }
     
     .email-Id
     {
       width: fit-content;
       color: white;
       margin: 20px 0px;
     }
     
     ul li
     {
       list-style: none;
       margin-bottom: 12px;
     }
     
     
     ul li a
     {
       line-height: 15px;
       text-decoration: none;
       font-size: 14px;
       color: white;
     }
     
     #Footer-form 
     {
       padding-bottom: 15px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       border-bottom:1px solid #ccc;
       margin-bottom: 50px;
       
     }
     
     #Footer-form ::-webkit-input-placeholder
     {
         color: black;
     }
     
     
     form .fa-regular
     {
       font-size: 18px;
       margin-right: 10px;
     
     }
     
     form .searchbar
     {
       width: 100%;
       background: transparent;
       color: #ccc;
       border: none;
       outline: none;
     
     
     }
     
     form button 
     {
       background: transparent;
       border: none;
       outline: none;
       cursor: pointer;
     }
     
     form button .fa-arrow-right
     {
       font-size: 16px;
       color:#ccc;
     }
     
     #Para
     {
         color: white;
     }
     
     .socialmedia-icons .fa-brands
     {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       text-align: center;
       line-height: 40px;
       font-size: 20px;
       color: #000;
       background-color: #fff;
       margin-right: 15px;
       cursor: pointer;
     }
     
     #socialmedia-links
     {
         padding-left: 30px;
     }

     .social li a:hover
     {
      color: #4caf50;
      font-weight: 600;
     }
     
     .underline-3
     {
       margin-left: 30px;
       margin-top: 8px;
       width: 70%;
       height: 5px;
       background-color: rgb(56, 56, 56);
       border-radius: 3px;
       position: absolute;
       top: 25px;
       left: 0;
       overflow: hidden;
     
     }


     .underline-3 span
     {
       width: 15px;
       height: 100%;
       background: #4caf50;
       border-radius: 3px;
       position: absolute;
       top: 0;
       left: 10px;
       animation: moving-2 2s linear infinite;
     }
     
     @keyframes moving-2 {
         0%
         {
           left: -20px;
         }
         100%
         {
           left: 100%;
         }
       
       }
     
     .socialmedia-icons li
     {
         list-style: none;
         display: inline;
     }
     
     #footer-hr
     {
       width: 90%;
       border: none;
       border-bottom: 1px solid #ccc;
       margin: 20px auto;
     
     }
     
     #para-1
     {
         color: white;
     }
     
     
     .copyright
     {
       font-size: 18px;
       text-align: center;
       color:  black;
       font-weight: 700;
     }
     
     .underline
     {
       margin-top: 8px;
       width: 100%;
       height: 5px;
       background-color: rgb(56, 56, 56);
       border-radius: 3px;
       position: absolute;
       top: 25px;
       left: 0;
       overflow: hidden;
     
     }
     
     .underline span
     {
       width: 15px;
       height: 100%;
       background: #4caf50;
       border-radius: 3px;
       position: absolute;
       top: 0;
       left: 10px;
       animation: moving 2s linear infinite;
     }
     
     @keyframes moving {
       0%
       {
         left: -20px;
       }
       100%
       {
         left: 100%;
       }
     
     }
     
     
     
     @media (max-width:700px)
     {
       footer
       {
         bottom: unset;
       }
     
       .col
       {
         flex-basis: 100%;
       }
       
       .col :nth-child(2) ,.col :nth-child(3) 
       {
         flex-basis: 15%;
       
       }
     } 
     
     @media (max-width:500px)
     {
         .footer-logo
         {
           margin-bottom: 10px;
         }
     }
     
     /* footer styling End */