:root {
    --btncolor: #be0f19;
    --textcolor1: rgb(23 23 23);
    --textcolor2: #949494;
    --textcolor3: #760909;
    --textcolor4: #19b919;
    --textcolor5: #2e2d2d;
    --textcolor6: rgb(70, 66, 66);
    --font-Cabin: 'Cabin', sans-serif;
    --font-MavenPro: 'Maven Pro', sans-serif; 
    --font-Poppins: 'Poppins', sans-serif;
    --font-Cantata: 'Cantata One', serif;
    --font-Outfit: 'Outfit', sans-serif;
    --font-DynaPuff: 'DynaPuff', cursive;
    --font-Libre: 'Libre Baskerville', serif;
    --font-Nunito:'Nunito Sans', sans-serif;
    --font-Playfair:'Playfair Display', serif;
    --font-Satisfy:'Satisfy', cursive;

  }
body{
 font-family: var(--font-Nunito);
}

/* ------------------------Loader---------------------------- */

 /* Disable scroll while loading */
    body.loading {
      overflow: hidden;
    }

    /* Fullscreen white overlay loader */
    .loading-spinner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #ffffff;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .loading-spinner .spinner-inner {
      position: relative;
      width: 90px;
      height: 90px;
      background: url(https://rihyaaz.com/wp-content/uploads/2025/06/logo-black-copy.png) center no-repeat;
      background-size: contain;
    }

    .loading-spinner .spinner-inner::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 100%;
      background-color: transparent;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 4px 0 0 #000;
      animation: lds-eclipse 1s linear infinite;
    }

    @keyframes lds-eclipse {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }
      50% {
        transform: translate(-50%, -50%) rotate(180deg);
      }
      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

/* -------------------------loader end--------------------------------- */
/*-------------------------heading css--------------------------*/
.signature{
  font-family: var(--font-Satisfy);
  font-size: 30px;
}

.heading_sd h3{
     font-family: var(--font-Playfair);
     font-size: 27px;
     color: var(--textcolor1);
     text-align: center;
     font-weight: bold;
}
.heading_sd p{
    font-family: var(--font-Nunito);
    font-size: 17px;
    color: var(--textcolor5);
    text-align: justify;
}

.heading_sd_2 h3{
    font-family: var(--font-Outfit);
    font-size: 45px;
    color: #023047;
    text-align: center;
    font-weight: bold;
}
/*-------------------------heading css end--------------------------*/
/* ---------------------------------------slider */
/* Hide mobile slider by default */
.mobile-slider {
    display: none !important;
}

/* Show mobile slider and hide desktop slider on mobile (max-width: 480px) */
@media (max-width: 480px) {
    .desktop-slider {
        display: none !important;
    }
    .mobile-slider {
        display: block !important;
    }
}
/* ------------------------------------------endslider */
/*---------------------- navbar ----------------------*/

/* Header css */
.row{
	display: flex;
	flex-wrap: wrap;
}
.logo img{
  width:50%;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
  font-family: var(--font-Nunito);
}
a{
	text-decoration: none;
  font-family: var(--font-Nunito);
}
/* header */
.header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 99;
	padding:5px;
}
.header .item-left{
	flex:0 0 17%;
}

.header .item-center{
	flex:0 0 66%;
  display:flex;
  justify-content:center;
}
.header .item-right{
	flex:0 0 17%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin: 0px 15px 0px 15px
}
.header .menu > ul > li > a{
	font-size: 14px;
	font-weight: 500;
	color:var(--textcolor6);
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
  font-family: var(--font-Nunito);
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
  font-family: var(--font-Nunito);
}
 .cart-icon {
    display: inline-block;
  }

  .cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -13px;
    background: #fcd303; /* yellow badge color */
    color: #000;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 18px;
    border: 1px solid #fff;
  }
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title a{
	font-size: 16px;
	color:#ea4636;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
  text-decoration: none;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 300px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px) {
  body, html {
    overflow-x: hidden;
  }

  .header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 99;
	padding:15px;
}

  .row.v-center {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header .item-left,
  .header .item-center,
  .header .item-right {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo img {
    width: 100px;
    max-width: 130%;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu > ul > li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }

  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

/* Header css end*/
/* Search bar css */
.modal-backdrop.show {
  opacity: 0.6 !important;
  z-index: 10 !important;
}

.modal.show {
  z-index: 10 !important;
}

.modal-content {
  position: relative;
  z-index: 10 !important;
}



/*---------------------- navbar end ----------------------*/
/*slider css*/

#carousel_slider .owl-nav .owl-prev,
#carousel_slider .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 24px;      /* Smaller icon size */
    width: 40px;           /* Smaller width */
    height: 40px;          /* Smaller height */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

#carousel_slider .owl-nav .owl-prev:hover,
#carousel_slider .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

#carousel_slider .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#carousel_slider .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/*slider css end*/

/*product css*/
.product_sd .product_sd_row {
    width: 100%;
}

.product_sd .product-card {
    border: 1px solid #ddd !important;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    justify-content: space-between; /* Ensures space between elements */
    height: 350px;  /* Regular height before hover */
}
.product_sd .product-card1 {
    height: 350px; 
}

.product_sd .product-card:hover {
    height: 390px;  /* Expands height on hover */
    z-index: 10;
}

.product_sd .discount-badge {
    position: absolute;
    top: 80%;
    left: 7%;
    background: var(--btncolor);
    color: white;
    padding: 1px 6px;
    font-size: 13px;
    font-weight: bold;
    font-family: var(--font-Poppins);
    border-radius: 0px;
}

.product_sd .old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--textcolor2);
    font-family: var(--font-Poppins);
    margin-top: 0%;
    margin-bottom: 0%;
}

.product_sd .new-price {
    color: var(--btncolor);
    font-size: 18px;
    margin-bottom: 0%;
    font-family: var(--font-Poppins);
}

.product_sd .card-title {
    color: var(--textcolor5);
    font-family: var(--font-Poppins);
    font-size: 16px;
    margin-bottom: 10px; /* Adds space below the title */
    flex-grow: 1;  /* Ensures the title area takes up space */
}

.product_sd .add-to-cart {
    background-color: #ff6b6b;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 90%;
    bottom: -40px; /* Initially position below the card */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.product_sd .card-body {
    padding: 0px 15px 0px 15px;
}

.product_sd .product-card:hover .add-to-cart {
    bottom: 10px; /* Brings the button into view on hover */
    opacity: 1;
}

.image-aspect-ratio {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.image-aspect-ratio::before {
    display: block;
    content: "";
}

.image-aspect-ratio-1by1::before {
    padding-top: 100%;
}

.image-aspect-ratio img {
    padding: 15px 15px 0px 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.product_sd .item {
    display: flex;
    justify-content: center;
}

/*product css end*/

@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");

.column_sd .gr-2 { background: linear-gradient(170deg, #B4EC51 0%, #429321 100%); }

* { transition: 0.5s; }

.column_sd .align-middle { position: relative; top: 50%; transform: translateY(-17%); }

.column_sd .column:hover .card .txt h1, .column:hover .card .txt p { color: white; opacity: 1; }

.column_sd .card {
  min-height: 80px;
  margin: 0;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 0;
  color: black;
  font-family: var(--font-Poppins);
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.27);
  position: relative;
}

.column_sd .card .txt {
  z-index: 1;
}

.column_sd .card .txt h1 {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--font-Cabin);
}

.column_sd .card .txt p {
  font-size: 0.8rem;
  font-family: var(--font-Poppins);
  margin-top: 33px;
  opacity: 0;
  color: white;
}

.column_sd .card .ico-card {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column_sd .card i {
  font-size: 3rem;
  opacity: 0.2;
  color: white;
}

/* .column_sd .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    justify-content: center;
}

.column_sd .col-md-3 {
    flex: 1;
    max-width: calc(25% - 10px); 
}

.column_sd i{
    color: var(--textcolor1);
}
.column_sd h5{
    font-family: var(--font-Poppins);
    color: var(--textcolor1);
}
.column_sd p{
    font-family: var(--font-Poppins);
    color: var(--textcolor1);
} */

.column_sd .sd_1{
    border: solid 4px #26547c;
}

.column_sd .sd_2{
    border: solid 4px #ef476f;
}

.column_sd .sd_3{
    border: solid 4px #ffd166;
}

.column_sd .sd_4{
    border: solid 4px #06d6a0;
}

.column_sd_1 i{
    color: var(--textcolor1);
}
.column_sd_1 h5{
    font-family: var(--font-Poppins);
    color: var(--textcolor1);
}
.column_sd_1 p{
    font-family: var(--font-Poppins);
    color: var(--textcolor1);
}
/* Category round CSS */
.category_prpduct_sd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.category_prpduct_sd a{
   text-decoration: none;
}
/* Individual Item */
.category_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 108px; /* Fixed width */
    transition: transform 0.3s;
}
.category_item:hover {
    transform: scale(1.1);
  }

/* Circular Background */
.category_background_sd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Image inside circle */
.category_background_sd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Category Title */
.category_title {
    font-size: 12px; /* Smaller text */
    margin-top: 8px;
    font-weight: 500;
    color: #000000;
    font-family: var(--font-Outfit);
}
/* ---------------------------- category css----------------------------- */

.category_sd .card {
    border-radius: 0 !important;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures card content fits well */
    overflow: hidden;
}

.category_sd .card img {
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.category_sd .card-content {
    padding: 10px;
    display: inline-block;
}

.category_sd .card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-top: 15px;
    padding-left: 15px;
}

.category_sd .card_title1 {
    font-size: 27px;
}

.category_sd .card-text {
    max-width: 75%;
}

.category_sd .card-title, .card-text {
    color: var(--textcolor5) !important;
    font-family: var(--font-Poppins);
}

.category_sd .card_text1_right {
    color: var(--textcolor5) !important;
    font-family: var(--font-Poppins);
    font-size: 14px;
    max-width: 55%;
}

.category_sd .btn {
    color: #fff;
    font-weight: bold;
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
}

/* FIXED HEIGHT FOR LARGE SCREENS */
.category_sd .left-card {
    height: 49vh;
    max-height: 350px; /* Prevents cards from growing too big */
}

.category_sd .right-card {
    height: 32.5vh;
    max-height: 250px; /* Prevents expansion */
}

.category_sd .bottom-card {
    height: 49vh;
    max-height: 350px; /* Prevents cards from growing too big */
}
/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
    .category_sd .left-card,
    .category_sd .right-card,
    .category_sd .bottom-card {
        height: auto;
        max-height: none; /* Allows content to flow naturally */
    }
}

/* ---------------------------- category css end----------------------------- */

/*  Default: Computer Services (Visible), Mobile Services (Hidden) */
.computer_services {
    display: block;
}
.mobile_services {
    display: none;
}

/*  Trending Products Container */
.trending_prpduct_sd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0px;
}

/*  Trending Item */
.trending_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 320px;
}

/*  Background Container for Image (Round Shape, Shadow & Hover) */
.trending_background_sd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    box-shadow: 0 7px 10px rgba(0,0,0,0.12), 0 7px 10px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.trending_background_sd:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.trending_title .arrow {
    margin-right: 0.25rem;
    height: 0.1rem;
    width: 1rem;
  
    position: relative;
    background: #ff4754;
  
    transition: width 0.2s ease;
  }
  
  .trending_title .arrow::before,
  .trending_title .arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  
    background: #ff4754;
  
    height: 0.1rem;
    width: 0.6rem;
  }
  
  .trending_title .arrow::before {
    transform: rotate(45deg);
    transform-origin: right bottom;
  }
  
  .trending_title .arrow::after {
    transform: rotate(-45deg);
    transform-origin: right top;
  }
  
  .trending_title:hover .arrow {
    width: 2rem;
  }

/*  Image Styling */
.trending_background_sd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* button style */
.trending_prpduct_sd .btn-shop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 4px 12px;
    font-weight: bold;
    border: none;
}

.trending_prpduct_sd .btn-shop:hover {
    background-color: #d93636;
}

/*  Title Styling */
.trending_title a {
    text-decoration: none;
    font-family: var(--font-Poppins);
    color: var(--textcolor5);
    font-size: 16px;
    font-weight: 600;
    user-select: none;
    display: flex;
    align-items: center;
}

/*  Desktop View: 3 Services in One Row */
@media (min-width: 1024px) {
    .trending_prpduct_sd {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        justify-items: center;
    }
    .trending_item {
        width: 100%;
    }
}

/*  Mobile View: 2 Services in One Row (Fixed Overflow) */
@media (max-width: 768px) {
    .computer_services {
        display: none; /* Hide Desktop Version */
    }
    .mobile_services {
        display: block; /* Show Mobile Version */
    }

    .mobile_services .trending_prpduct_sd {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 services per row */
        gap: 10px; /* Reduced gap */
        justify-items: center;
    }

    .mobile_services .trending_item {
        width: 100%;
    }

    /*  Reduce Image Size for Mobile */
    .mobile_services .trending_background_sd {
        width: 150px; /* Smaller size */
        height: 150px; /* Smaller size */
    }

    .mobile_services .trending_title a {
        font-size: 10px; /* Smaller text */
    }
}

/* trending css end */
/* ------------------Garden_Decor_Care css------------- */
.Garden_Decor_Care_sd .product-box {
    min-height: 300px; /* Increased height for full visibility */
    background-size: cover;
    background-position: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 23px;
}

.Garden_Decor_Care_sd .product-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

/* Heading Style */
.Garden_Decor_Care_sd .Decor_Care_heading {
    font-size: 30px;
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
}

/* Paragraph Style */
.Garden_Decor_Care_sd p {
    font-size: 18px;
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
}

/* Button Style */
.Garden_Decor_Care_sd .btn-shop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
}

.Garden_Decor_Care_sd .btn-shop:hover {
    background-color: #d93636;
}

/* ------------------Garden_Decor_Care css end------------- */

/* ------------------Garden_Decor_Care css2------------- */


.Garden_Decor_Care_sd_1 .service-card {
    background: #fff;
    overflow: hidden; /* Ensures the entire card does not overflow */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.Garden_Decor_Care_sd_1 .service-image-container {
    height: 270px; /* Fixed height */
    overflow: hidden; /* Prevents overflow */
}

.Garden_Decor_Care_sd_1 .service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-in-out;
}

.Garden_Decor_Care_sd_1 .service-card:hover .service-image {
    transform: scale(1.1); /* Zoom-in effect */
}

.Garden_Decor_Care_sd_1 .service-content {
    padding: 20px;
    background-color: #fff;
}

/* Heading Style */
.Garden_Decor_Care_sd_1 .Decor_Care_heading {
    font-size: 26px;
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
}

/* Paragraph Style */
.Garden_Decor_Care_sd_1 p {
    font-size: 16px;
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
}

.Garden_Decor_Care_sd_1 .btn-shop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
}

.Garden_Decor_Care_sd_1 .btn-shop:hover {
    background-color: #d93636;
}

/* ------------------Garden_Decor_Care css 2 end------------- */

@keyframes flip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.mvp_sd .image-container {
    width: 100%; /* Full width */
    max-width: 555px; /* Increased size */
    aspect-ratio: 4 / 3; /* Maintains square shape */
    overflow: hidden; /* Prevents distortion */
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 5px;


}
.mvp_sd .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space */
    border-radius: 5px;
    transition: transform 0.4s ease-in-out;

}

/* Hover Effect */
.mvp_sd .image-container:hover img {
    transform: scale(1.1); /* Zoom in */
    border-radius: 5px;

}

.mvp_sd .image-container:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Smooth shadow */
    border-radius: 5px;

}


.mvp_sd .mvp_content{
   color: var(--textcolor1);
   font-family: var(--font-Poppins);
}
.mvp_sd .btn_mvb{
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 13px 20px;
    font-weight: bold;
    border: none;
    text-decoration: none;
}
.mvp_content h4 i {
    animation: flip 2s infinite linear; /* Flipping effect */
}
.mvp_sd .btn_mvb:hover {
    background-color: #d93636;
}

@media only screen and (max-width: 480px){
    .mvp_sd h4{
        margin-top: 10px;
    }

}
/* <!----------------------------------------------- workshops --> */

.workshops_sd .service-card {
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.workshops_sd .image-aspect-ratio {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.workshops_sd .image-aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0%;
}

.workshops_sd .service-image-container {
    overflow: hidden;
}

.workshops_sd .service-image {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.workshops_sd .service-card:hover .service-image {
    transform: scale(1.1);
}

.workshops_sd .service-content {
    padding: 15px  0px;
    background-color: #fff;
    min-height: 95px;
}
.workshops_sd .service-content h5{
    color: var(--textcolor5);
    font-size: 17px;
    font-weight: bold;
    font-family: var(--font-Poppins);
}

.workshops_sd .btn_woksshop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 13px 20px;
    font-weight: bold;
    border: none;
    text-decoration: none;
    font-size: 15px;
}

.workshops_sd .custom-nav {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    border: 1px solid #fff7f7;
}
.workshops_sd .custom-nav.left { left: 3px; }
.workshops_sd .custom-nav.right { right: 3px; }

.workshops_sd .arrow-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 10%); /* Adjust this percentage for visibility */
    background: var(--btncolor);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.workshops_sd .arrow-btn:hover {
    background: #d93636;
    color: black;
  }

#workshops {
    scroll-margin-top: 80px; /* Adjust based on navbar height */
}
/* <!----------------------------------------------- workshopsend --> */
/*----------------------testimonials css---------------------------*/
/* Navigation Arrows */
.testimonial_sd .owl-carousel .owl-nav .owl-prev,
.testimonial_sd .owl-carousel .owl-nav .owl-next {
    font-size: 20px;  /* Smaller arrow size */
    color: black;  /* Black arrow color */
    background: none;  /* No background */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
    z-index: 10;
}

/* Positioning */
.testimonial_sd .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 10px;  /* Adjust for better visibility */
    top: 50%;
    transform: translateY(-50%);
}

.testimonial_sd .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Remove hover effects */
.testimonial_sd .owl-carousel .owl-nav .owl-prev:hover,
.testimonial_sd .owl-carousel .owl-nav .owl-next:hover {
    color: black;  /* Keep black */
    background: none;
}

/* Dots (Make Sure They Show) */
.testimonial_sd .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial_sd .owl-carousel .owl-dot {
    width: 9px;
    height: 9px;
    margin: 5px;
    background: rgb(173, 173, 173);  /* Default dot color */
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

/* Active Dot */
.testimonial_sd .owl-carousel .owl-dot.active {
    background: rgb(70, 69, 69);  /* Active dot color */
}


#customers-testimonials .box {
    opacity: .2;
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .box {
    opacity: 1;
    transform: scale3d(1.0, 1.0, 1);
    -webkit-transform: scale3d(1.0, 1.0, 1);
}

.testimonial_sd .testimonial-card {
min-width: 300px;
margin: 0 10px;
padding: 20px;
border-radius: 8px;
transition: transform 0.3s ease;
text-align: center;
}

.testimonial_sd .testimonial-card:hover {
transform: scale(1.05);
}

.testimonial_sd .testimonial-text {
font-size: 1.3em;
font-style: italic;
font-family: var(--font-Poppins);
color: var(--textcolor1);
margin-bottom: 15px;
}

.testimonial_sd h3 {
font-size: 1.4em;
margin: 10px 0 5px 0;
font-family: var(--font-Poppins);
color: var(--textcolor1);
}

.testimonial_sd .client-role {
font-size: 0.9em;
font-family: var(--font-Poppins);
color: var(--textcolor2);
}


/*----------------------testimonials css end---------------------------*/



/* ------------------blog css--------------------- */

.blog_sd .blog-card {
    border: 1px solid #ddd; /* Light border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog_sd .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}
.blog_sd .blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;        
}
.blog_sd .blog-content {
    text-align: center;
    padding: 15px;
    min-height: 115px;
}
.blog_sd .blog-content h5 a{
    text-decoration: none;
    font-size: 20px;
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
    margin-bottom: 10px;
}
.blog_sd .blog-content a {
    color: var(--btncolor);
    font-size: 16px;
    font-family: var(--font-Poppins);
    text-decoration: none;
}

.blog_sd a {
    color: var(--btncolor);
    font-size: 16px;
    font-family: var(--font-Poppins);
    text-decoration: none;
}
/* ------------------blog css end--------------------- */
/* All Blog Page */

.sd_blogpage .hero-text {
    text-align: center;
    margin-top: 65px;
    margin-bottom: 30px;
    color: #023047;
    font-family: var(--font-Libre);
  }
  .sd_blogpage .search-bar {
    max-width: 300px;
    margin: 20px auto;
  }
  .sd_blogpage .card-container {
    margin-top: 40px;
  }
  .sd_blogpage .blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s;
  }
  .sd_blogpage .blog-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s;
  }
  .sd_blogpage .blog-card:hover img {
    transform: scale(1.05);
  }
  .sd_blogpage .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 53, 34, 0.774);
    opacity: 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: opacity 0.3s ease-in-out;
  }
  .sd_blogpage .blog-card:hover .overlay {
    opacity: 1;
  }
  .sd_blogpage .overlay h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-Outfit);
  }
  .sd_blogpage .overlay .btn {
    background-color: #28a745;
    border: none;
    font-family: var(--font-Outfit);
  }
  .sd_blogpage .card-title {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: #1d3c34;
    font-family: var(--font-Outfit);
  }
  .sd_blogpage .sd_blog_content{
    text-align: left;
  }

/* All Blog Page End*/
/* blog single css */

.blog_sigle_sd .card-title a:hover {
    color: #28a745;
  }
  
  .blog_sigle_sd .card {
    transition: all 0.3s ease-in-out;
  }
  .blog_sigle_sd .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .blog_sigle_sd h2 p{
    font-family: var(--font-Outfit);
  }
  .blog_sigle_sd .blog_author{
    font-family: var(--font-Outfit);
  }

/* blog single css end */

/*------------------------ytvideosd css-----------------------------*/

.youtube_video_sd .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
}

.youtube_video_sd .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*------------------------ytvideosd css end-----------------------------*/
/* ------------------------theme gifting css------------------------- */

.themegifting_sd .profile-card-5 {
    margin-top: 20px;
 }
 
.themegifting_sd .profile-card-5 .btn {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 20px;
 }
 
.themegifting_sd .profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;
 }
 
.themegifting_sd .profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
 }
 
.themegifting_sd .profile-card-5 h5 {
    color: var(--textcolor5);
    font-family: var(--font-Poppins);
    font-weight: 600;
    text-align: center;
    min-height: 48px;
 }
 
.themegifting_sd .profile-card-5 p {
    font-size: 14px;
    font-weight: 300;
 }

 .themegifting_sd .btn_woksshop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 13px 20px;
    font-weight: bold;
    border: none;
    text-decoration: none;
    font-size: 15px;
}

/* ------------------------theme gifting css end------------------------- */

 .bottom_content{
    color: var(--textcolor1);
    font-family: var(--font-Poppins);
 }
 
 .bottom_content h3{
    color: var(--textcolor5);
    font-family: var(--font-Poppins);
 }
 .bottom_content h3:after {
    content: "";
    margin: 4px 0px 0px;
    display: block;
    width: 164px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(25deg, #F13F79, #FFC778);
  }
 .bottom_content h4{
    color: var(--textcolor5);
    font-family: var(--font-Poppins);
 }
 .bottom_content h5{
    color: var(--textcolor5);
    font-family: var(--font-Poppins);
 }
 
 


/*fooetr css end*/




/* --------------------------------------about us mvp----------------------------------------- */
/* Image Styling */
.about_us_mvp .image-container {
    width: 100%;
    max-width: 570px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    /* --b: .2em;
  --c: 1em;
  --r: 2em;
  place-self: center;
  position: relative;
  margin: 1em auto;
  border: solid var(--b) transparent;
  padding: 1em;
  font: 2.19em ubuntu, sans-serif; */
}
/* .about_us_mvp .image-container::before{
    position: absolute;
    z-index: -1;
    inset: calc(-1*var(--b));
    border: inherit;
    border-radius: var(--r);
    background: linear-gradient(orange, deeppink, purple) border-box;
    --corner:
        conic-gradient(from -90deg at var(--c) var(--c), red 25%, #0000 0)
            0 0/ calc(100% - var(--c)) calc(100% - var(--c)) border-box;
    --inner: conic-gradient(red 0 0) padding-box;
    mask: var(--corner) subtract, var(--inner);
    content: "";

} */

/* Image Inside the Container */
.about_us_mvp .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: filter 0.3s ease-in-out;
}

/* Glossy Light Effect */
.about_us_mvp .image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
    transform: skewX(-25deg);
    transition: left 0.6s ease-in-out;
}

.about_us_mvp .image-container:hover::after {
    left: 100%;
}

.about_us_mvp .image-container:hover img {
    filter: brightness(1.2);
}


/* Title Styling */
.about_us_mvp .section-title {
    font-size: 25px;
    font-weight: bold;
    margin-top: 0px;
    font-family: var(--font-Outfit);
    color: rgb(33 37 41);
}

/* Paragraph Styling */
.about_us_mvp .section-text {
    font-size: 16px;
    font-family: var(--font-Poppins);
    color: var(--textcolor1);
    text-align: justify;
}

.about_us_mvp .section-title i{
    color: #bd0e19;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    animation: flip 3s infinite linear; /* Flipping effect */
}


/* Keyframes for Shaking Animation */
@keyframes flip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* ------------------------About Us Fancy box-------------------------- */
.rihyaaz_sd .container {
      padding: 2rem 1rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .rihyaaz_sd .card {
      background: var(--color-white);
      box-shadow: var(--box-shadow);
      border-radius: 2px;
      overflow: hidden;
    }

    .rihyaaz_sd .card-image {
      position: relative;
      padding-top: 70%;
      overflow: hidden;
    }

    .rihyaaz_sd .card-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .rihyaaz_sd .card-image:hover img {
      transform: scale(1.05);
    }

    .rihyaaz_sd .card-image .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .rihyaaz_sd .card-image:hover .overlay {
      opacity: 1;
    }

    .rihyaaz_sd .card-image .overlay i {
      color: #fff;
      font-size: 2rem;
    }

    /* Tablet & Mobile: 2 Columns */
    @media (max-width: 991.98px) {
      .rihyaaz_sd .container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
/* --------------------------------------about us fancy box end----------------------------------------- */
  
/* --------------------------------------about us mvp end----------------------------------------- */

/* --------------------------------------about us member----------------------------------------- */

.member_sd {
    color:#313437;
    background-color:#eef4f7;
  }
  
  .member_sd p {
    color:#7d8285;
  }
  
  .member_sd h2 {
    font-weight:bold;
    margin-bottom:40px;
    padding-top:40px;
    color:inherit;
  }
  
  @media (max-width:767px) {
    .member_sd h2 {
      margin-bottom:25px;
      padding-top:25px;
      font-size:24px;
    }
  }
  
  .member_sd .intro {
    font-size:16px;
    max-width:500px;
    margin:0 auto;
  }
  
  .member_sd .intro p {
    margin-bottom:0;
  }
  
  .member_sd .people {
    padding:50px 0;
    display: flex;
    justify-content: center;
  }
  
  .member_sd .item {
    text-align:center;
  }
  
  .member_sd .item .box {
    text-align:center;
    padding:30px;
    background-color:#fff;
    margin-bottom:30px;
  }
  
  .member_sd .item .name {
    font-weight:bold;
    margin-top:28px;
    margin-bottom:8px;
    color:inherit;
    color: #023047;
    font-family: var(--font-Outfit);
  }
  
  .member_sd .item .title {
    text-transform:uppercase;
    font-weight:bold;
    color: var(--btncolor);
    letter-spacing:2px;
    font-size:13px;
  }
  
  .member_sd .item .description {
    font-size:15px;
    margin-top:15px;
    margin-bottom:20px;
  }
  
  .member_sd .item img {
    max-width:175px;
  }
  

/* Button Style */
.member_sd .member_details_btn a{
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
    text-decoration: none;
}

.member_sd .member_details_btn:hover a{
    background-color: #d93636;
}


/* --------------------------------------about us member end----------------------------------------- */
/* ----------------------------------------Corporate Gifting-------------------------------------------- */

.corporate_gifting_sd .btn-shop{
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 8px 35px;
    font-weight: bold;
    border: none;
}

.corporate_gifting_sd .btn-shop:hover {
    background-color: #d93636;
}


.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    border: 1px solid #fff7f7;
}
.custom-nav.left { left: 10px; }
.custom-nav.right { right: 10px; }
/* ----------------------------------------Corporate Gifting end-------------------------------------------- */
/* ----------------------------------------Corporate Biophilic-------------------------------------------- */

.corporate_Biophilic_sd .profile-card-5 {
    margin-top: 20px;
    text-align: center;
 }

.corporate_Biophilic_sd .profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;
 }

.corporate_Biophilic_sd .profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
 }

 /* Centering the button */
.corporate_Biophilic_sd .profile-card-5 .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
 }

 .corporate_Biophilic_sd .btn-shop{
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: bold;
    border: none;
}

.corporate_Biophilic_sd .btn-shop:hover {
    background-color: #d93636;
}

/* top banner video section */
.services_sd .video-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.services_sd .video-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.services_sd .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.services_sd .play-button:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #ff0000;
}

.services_sd .video-iframe {
  width: 100%;
  height: 500px;
  border: none;
}

@media (max-width: 768px) {
  .services_sd .video-iframe {
    height: 300px;
  }
}
/* ----------------------------------------Corporate Biophilic end-------------------------------------------- */
/* <!-- -----------------------Bringing Nature------------------------ --> */
.bringing_nature_sd .custom-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}
.bringing_nature_sd .content-box {
    max-width: 500px;
}
.bringing_nature_sd .rounded-img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}
.bringing_nature_sd .btn-shop {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
}

.bringing_nature_sd .btn-shop:hover {
    background-color: #d93636;
}
.bringing_nature_sd h2{
    font-family: var(--font-Poppins);
    color: var(--textcolor5);
    font-size: 48px;
    padding: 70px 0px 40px 0px;
}
.bringing_nature_sd p{
    font-family: var(--font-Poppins);
    color: var(--textcolor5);
    font-size: 16px;
}
/* <!-- -----------------------Bringing Nature end------------------------ --> */
/* ----------------------yt-video---------------------- */
/* Button Style */
/* Button Style */
.btn_ytvideomore {
    background-color: var(--btncolor);
    font-family: var(--font-Poppins);
    color: white;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
}

.btn_ytvideomore:hover {
    background-color: #d93636;
    color: #fff;
}



/* -------------------------yt-videoend------------------------- */

/* <!-- -----------------------blog single------------------------ --> */
.blog_sigle_sd .custom-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}
.blog_sigle_sd .content-box {
    max-width: 500px;
}
.blog_sigle_sd .rounded-img {
    border-radius: 15px;
    width: 85%;
    max-width: 90%;
    height: auto;
}
.blog_sigle_sd h2{
    font-family: var(--font-Outfit);
    color: var(--textcolor5);
    font-size: 36px;
    padding: 0px 0px 6px 0px;
}
.blog_sigle_sd p{
    font-family: var(--font-Outfit);
    color: var(--textcolor5);
    font-size: 18px;
    padding-top: 50px;
}
 .bottom_blog_content_sd {
    font-family: var(--font-Outfit);
}
.blog_sigle_sd .blog_form_sd p{
    font-family: var(--font-Outfit);
    color: var(--textcolor5);
    font-size: 16px;
    padding-top: 0px;
}

/* services single page styling */

/* Hero Section */
.services_sd .hero-section {
    position: relative;
    width: 100%;
  }

  .services_sd .hero-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .services_sd .hero-btn-wrapper {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .services_sd .btn-enquire {
background-color: #08814c;
color: white;
font-weight: bold;
padding: 8px 30px;
font-size: 1rem;
border: none;
border-radius: 5px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
font-family: var(--font-Outfit);
}

.services_sd .btn-enquire::before {
content: '';
position: absolute;
top: 0;
left: -75%;
width: 50%;
height: 100%;
background: linear-gradient(
  120deg,
  rgba(255, 255, 255, 0.1) 0%,
  rgba(255, 255, 255, 0.5) 50%,
  rgba(255, 255, 255, 0.1) 100%
);
transform: skewX(-20deg);
}

.services_sd .btn-enquire:hover::before {
animation: glossy-shine 1s ease-in-out forwards;
}

@keyframes glossy-shine {
0% {
  left: -75%;
}
100% {
  left: 125%;
}
}

.services_sd .btn-enquire:hover {
background-color: #0a9a58;
color: white;
}


/* Fixed Aspect Ratio */
  .services_sd .aspect-img {
    aspect-ratio: 640 / 380;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* no radius */
    box-shadow: 0 7px 10px rgba(0,0,0,0.12), 0 7px 10px rgba(0,0,0,0.24);

  }
  .services_sd .aspect-img1 {
    aspect-ratio: 640 / 450;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* no radius */
    box-shadow: 0 7px 10px rgba(0,0,0,0.12), 0 7px 10px rgba(0,0,0,0.24);

  }

  .services_sd .aspect-img2 {
    aspect-ratio: 640 / 490;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.12), 0 7px 10px rgba(0, 0, 0, 0.24);
}

.services_sd .aspect-img3 {
    aspect-ratio: 1 / 1;
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.12), 0 7px 10px rgba(0, 0, 0, 0.24);
}
  .tm_service{
    font-family: var(--font-Outfit);
  }
  .tm_service h3{
    font-family: var(--font-Outfit);
  }

  .services_sd .sd_heading h2{
    font-size: 38px;
    font-weight: bold;
    font-family: var(--font-Poppins)
  }

  .services_sd .sd_heading2 h2{
    font-size: 35px;
    font-weight: bold;
    font-family: var(--font-Poppins)
  }

  .services_sd .banner_head_sd{
    color: #ffcd31;
    font-size: 40px;
    font-weight: bold;
    font-family: var(--font-DynaPuff);
    font-weight: 700;
    padding: 0px 200px;
  }

/* services single page styling end*/

/* faq css */

.sd_faq .faq-header {
    background-color: rgb(33 37 41);
    color: #ffff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;            
}
.sd_faq .accordion-button {
    background-color: rgb(33 37 41);
    color: #ffff;
}
.sd_faq .accordion-button:focus {
    box-shadow: none;
}
.sd_faq .accordion-button:not(.collapsed) {
    background-color: rgb(33 37 41);
    color: #ffff;
    font-size: 18px;
}
.sd_faq .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Hide Bootstrap's default arrow */
.sd_faq .accordion-button::after {
    display: none;
}

/* Custom white arrow */
.sd_faq .accordion-button .white-arrow {
    position: absolute;
    right: 1rem;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.sd_faq .accordion-button:not(.collapsed) .white-arrow {
    transform: rotate(180deg);
}


/* faq css end */

/* -------------------------Story Css--------------------- */

.sd_story .btn-enquire {
    background-color: #08814c;
    color: white;
    font-weight: bold;
    padding: 8px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-Outfit);
    }
    
    .sd_story .btn-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
    transform: skewX(-20deg);
    }
    
    .sd_story .btn-enquire:hover::before {
    animation: glossy-shine 1s ease-in-out forwards;
    }
    
    @keyframes glossy-shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
    }
    
    .sd_story .btn-enquire:hover {
    background-color: #0a9a58;
    color: white;
    }
    

.sd_story .video-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .sd_story .video-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .sd_story .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .sd_story .play-button:hover {
    background: rgba(0, 0, 0, 0.6);
    color: #ff0000;
  }

  .sd_story .video-iframe {
    width: 100%;
    height: 500px;
    border: none;
  }

  @media (max-width: 768px) {
    .sd_story .video-iframe {
      height: 300px;
    }
  }
  /* CTA Floating Button */
  .sd_story .cta-button {
    position: fixed;
    bottom: 134px;
    right: 19px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #d93636);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.sd_story .cta-button:hover {
    transform: scale(1.08);
}

.sd_story .overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 9998;
}

  /* Bottom Sheet */
  .sd_story .bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 75vh;
    background: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  .sd_story .drag-handle {
    width: 40px;
    height: 5px;
    background-color: #ccc;
    border-radius: 5px;
    margin: 0 auto 15px;
  }

  .sd_story .bottom-sheet ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sd_story .bottom-sheet li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .sd_story .bottom-sheet a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sd_story .bottom-sheet a i {
    color: #d93636;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
  }

  .sd_story .bottom-sheet a:hover i {
    transform: rotate(20deg);
  }

  @media (min-width: 769px) {
    .sd_story .bottom-sheet {
      max-width: 420px;
      right: 20px;
      left: auto;
      border-radius: 16px;
    }
  }
  .sd_story .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .sd_story .content-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: #386b05;
    color: #fff;
  }

  .sd_story .image-section {
    flex: 1;
    position: relative;
    padding: 20px;
  }

  .sd_story .image-section img {
    width: 100%;
    height: auto;
    border: 20px solid #386b05;
    box-sizing: border-box;
  }

  .sd_story .text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sd_story .text-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
  }

  .sd_story .text-section strong {
    font-weight: bold;
  }

  .sd_story .pillars {
    font-size: 1.3rem;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .sd_story .content-container {
      flex-direction: column;
    }

    .sd_story .text-section {
      padding: 20px;
    }

    .sd_story .image-section {
      padding: 10px;
    }
  }

  /* Parallax Background Section */
  .sd_story .parallax-section {
    background-image: url('https://bigpagedemo.in/touchgreen/wp-content/uploads/2025/04/pexels-akilmazumder-1072824-1.jpg'); /* Replace with your actual image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    position: relative;
  }

  .sd_story .sd_story_heading{
    font-family: var(--font-Outfit);
    color: #023047;
  }

  .sd_story .sd_story_text{
    font-family: var(--font-Outfit);
  }

  .sd_story .sd_story_text1{
    font-family: var(--font-Outfit);
    color: white;
  }

.hi_sd{
  width: 100px; position: absolute; top: -45px; right: 1px;
}

  @media (max-width: 480px) {
    .hi_sd {
        width: 66px;
      }
}  

.story_3column_sd .feature-icon {
  height: 200px;
  margin-bottom: 20px;
}

.story_3column_sd .feature-heading {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
  font-family: var(--font-Libre);
}

.story_3column_sd .feature-text {
  font-size: 17px;
  color: #1b4332;
  font-family: var(--font-Outfit);
}

.story_3column_sd .feature-box {
  text-align: center;
  padding: 30px;
}

/* --------------------------Story Css End-------------------- */

/* end tag line */

.sd_end_tagline {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-Libre);
}

/* end tag line */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1;
  }

/*footer css*/
.footer {
  background-color: #fdf5eb;
  font-family: var(--font-Nunito);
  font-size: 15px;
  color: rgb(92 92 92);
}

/* Headings */
.footer h6 {
  font-size: 23px;
  color: #111;
  font-family: var(--font-Playfair);
}

/* General Links */
.footer a {
  color: rgb(92 92 92);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #2d7a2d;
}

/* Social Icons */
.footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: rgb(92 92 92);
}

.footer .social-icons a:hover {
  color: #2d7a2d;
}

/* Contact Info */
.footer .contact-emails a,
.footer .contact-phones a {
  display: inline-block;
  margin-top: 5px;
  color: rgb(92 92 92);
}

.footer .contact-emails i,
.footer .contact-phones i {
  margin-right: 5px;
}

/* Quick Links List */
.footer .footer-links ul,
.footer .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.footer .footer-links li,
.footer .list-unstyled li {
  margin-bottom: 8px;
}

/* Subscribe Form */
.footer .foot_email_sd .btn{
    background-color: var(--btncolor);
    font-family: var(--font-Nunito);
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
 }


/* Footer Bottom */
.footer .bg-dark {
  background-color: #222 !important;
}

.footer .bg-dark p,
.footer .bg-dark a {
  color: #fff !important;
}

/* Visitor Counter */
/* Parent container */
    .visitor_counter_sd {
      display: flex;
      justify-content: center;
      flex-direction: column;
    }

    /* Styles for website counter container */
    .visitor_counter_sd .website-counter {
      background-color: #ff4957;
      height: 50px;
      width: 80px;
      color: white;
      border-radius: 30px;
      font-weight: 700;
      font-size: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
/* footer end */


 @media (max-width: 767px) {
  /* Style the mobile navbar */
  .navbar_sd_monileview {
    width: 100%;
  }

  /* Container for menu item */
  .navbar_sd_monileview .nav_item_sd_mobile {
    position: relative;
  }

  /* Dropdown menu - hidden by default */
  .navbar_sd_monileview .dropdown-menu-mobile {
    background-color: #023047;
    list-style: none;
    padding-left: 0px;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    display: block;
    position: absolute;
    z-index: 9999;
    border-radius: 10px;
  }

  /* Show dropdown when .active is added */
  .navbar_sd_monileview .dropdown-menu-mobile.active {
    max-height: 500px; /* adjust as needed for content */
  }

  /* List items in dropdown */
  .navbar_sd_monileview .dropdown-menu-mobile li {
    margin-bottom: 8px;
  }

  /* Dropdown links */
  .navbar_sd_monileview .dropdown-menu-mobile li a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background-color: #023047;
    border-radius: 0px;
  }

  /* Hover state */
  .navbar_sd_monileview .dropdown-menu-mobile li a:hover {
    background-color: #ffb703;
    text-decoration: none;
  }

  /* Optional arrow styling */
  .navbar_sd_monileview .dropdown-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .navbar_sd_monileview .dropdown-menu-mobile.active ~ .dropdown-arrow i {
    transform: rotate(180deg);
  }
}
.tm_rating i {color: gold;}

/* archive product css */

/* Sidebar Styling */
    .archive_product_sd .sidebar {
        background: #e6f4ea;
        padding: 20px;
        border-radius: 0px;
    }
    .archive_product_sd .sidebar h4 {
        color: rgb(33 37 41);
        font-weight: bold;
        margin-bottom: 15px;
        border-bottom: 2px solid #bd0e19;
        padding-bottom: 5px;
        font-family: var(--font-Playfair);
    }
    .archive_product_sd .sidebar ul {
        list-style: none;
        padding-left: 0;
    }
    .archive_product_sd .sidebar ul li {
        margin-bottom: 10px;
    }
    .archive_product_sd .sidebar ul li a {
        text-decoration: none;
        color: rgba(49, 54, 59, 0.856);
        font-weight: 500;
        transition: color 0.3s;
        font-family: var(--font-Nunito);
    }
    .archive_product_sd .sidebar ul li a:hover {
        color: #ffb703;
        text-decoration: underline;
    }
    .archive_product_sd .btn-primary {
        background: rgb(33 37 41);
        border: none;
        font-weight: 600;
        color: #fff;
        font-family: var(--font-Nunito);
    }
    .archive_product_sd .btn-primary:hover {
        background: rgb(33 37 41);
        color: #fff;
    }

    /* Product Card Styling */
    .archive_product_sd .product-card {
        border: none;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #dddddd;
    }
    .archive_product_sd .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    .archive_product_sd .product-card img {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        height: 300px;
        width: 100%;
        object-fit: cover;
        padding: 14px;
    }
    .archive_product_sd .product-card .card-body {
        background: #fff;
        text-align: center;
        padding: 15px;
    }
    .archive_product_sd .product-card .card-title {
        font-size: 1rem;
        color:rgb(75, 51, 51);
        margin-bottom: 10px;
        font-family: var(--font-Nunito);
    }
    .archive_product_sd .product-card .card-text {
        font-size: 1rem;
        color: rgb(37, 23, 23);
        font-weight: 600;
        font-family: var(--font-Nunito);
    }

    /* Mobile view - increase height to 400px */
@media (max-width: 767px) {
    .archive_product_sd .product-card img {
        height: 400px;
    }
}

    /* Headings */
    .archive_product_sd h1, h2, h3, h4, h5, h6 {
        color: rgb(33 37 41);
        font-weight: bold;
        font-family: var(--font-Playfair);
    }

    .archive_product_sd .tm_category h3 {
        text-align: center;
        padding: 10px;
        border-bottom: 3px solid #bd0e19;
        display: inline-block;
        margin-bottom: 20px;
    }
    .archive_product_sd .btn-primary {
    background: rgb(33 37 41); 
    border: none;
}

.archive_product_sd .btn-primary:hover {
    background: #bd0e19; 
}
.archive_product_sd .tm_cat i{color: #9ab79f}


.archive_product_sd .discount-badge {
    background-color: #ff8003;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 0px;
    /* z-index: 10; */
}

/* archive product css end */

/* <!-- Watsapp button --> */

.wp_btn .float{
	position: fixed;
    width: 50px;
    height: 50px;
    bottom: 76px;
    right: 19px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.wp_btn .my-float{
	margin-top:16px;
}


/* <!-- Watsapp button --> */
.wp-block-woocommerce-checkout {
    margin: 0;
    padding-top: 24px;
    margin-left: 50px!important;
    margin-right: 50px!important;
}


.wc-block-components-checkout-place-order-button{
background-color: #28a745 !important;  /* Your desired color */
    color: #ffffff !important;            /* Text color */
    border: none;
}

/* nav css product css */
/* #carousel_products_sd .owl-dots {
    order: 1;
    display: flex;
    justify-content: center;
    margin-top: 10px;
} */

#carousel_products_sd .owl-nav {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}

#carousel_products_sd .owl-nav .arrow-btn {
    display: inline-block !important;
    font-size: 20px;
    color: #222020;
    background: transparent;
    padding: 5px 15px;
    cursor: pointer;
}

@media (max-width: 767px) {
    #carousel_products_sd .owl-nav {
        display: flex !important;
    }
}

/* ============================================================Saree Shop Css================================================================ */

/*-------------------------heading css--------------------------*/

.sareea_shop_sd .heading_sd h3 {
  font-family: var(--font-Playfair);
  font-size: 27px;
  color: rgb(33 37 41);
  text-align: center;
  font-weight: bold;
  position: relative;
  line-height: 1.5em;
  padding-bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Bottom underline line */
.sareea_shop_sd .heading_sd h3::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 60%;
  margin-left: -30%;
  width: 40%;
  height: 1px;
  background-color: #777;
  z-index: 4;
}

/* Bottom center icon */
.sareea_shop_sd .heading_sd h3::after {
  content: '\00a7'; /* Section symbol */
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 30px;
  color: #bd0e19;
  background-color: #ffff;
  font-weight: 400;
  z-index: 5;
  text-align: center;
}
.sareea_shop_sd .heading_sd p{
    font-family: var(--font-Outfit);
    font-size: 17px;
    color: var(--textcolor5);
    text-align: justify;
}

.sareea_shop_sd .heading_sd_2 h3{
    font-family: var(--font-Outfit);
    font-size: 45px;
    color: var(--textcolor3);
    text-align: center;
    font-weight: bold;
}
/*-------------------------heading css end--------------------------*/

/* <!-- Shop Area css--> */

.sareea_shop_sd .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sareea_shop_sd .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .sareea_shop_sd .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sareea_shop_sd .product-item {
  min-height: 445px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

/* Mobile view adjustment */
@media (max-width: 767.98px) {
  .sareea_shop_sd .product-item {
    min-height: auto;
  }
}

.sareea_shop_sd .product {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.sareea_shop_sd .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.sareea_shop_sd .product img.hover-image {
  opacity: 0;
}

.sareea_shop_sd .product:hover img.hover-image {
  opacity: 1;
}

.sareea_shop_sd .product:hover img.default-image {
  opacity: 0;
}

.sareea_shop_sd .title {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding-top: 5px;
  text-align: center;
  font-family: var(--font-Outfit);
}

.sareea_shop_sd .fa-star {
  font-size: 0.65rem;
  color: goldenrod;
}

.sareea_shop_sd .price {
  font-weight: 600;
  margin-bottom: 5px;
}

.sareea_shop_sd .view_more {
  background-color: #023047;
  color: #ffb703;
  border: none;
  border-radius: 0;
  padding: 10px 0;
  width: 100%;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  display: none;
  transition: all 0.3s ease;
  font-family: var(--font-Outfit);
}

/* Show .view_more only on hover in desktop/tablet */
@media (min-width: 768px) {
  .sareea_shop_sd .product-item:hover .view_more {
    display: block;
  }
}

/* Prevent space for button in mobile view */
@media (max-width: 767.98px) {
  .sareea_shop_sd .view_more {
    display: block;
  }
}


/* <!-- Shop Area css End--> */

/* <!-- Middle 3 Column Section Css --> */

.sareea_shop_sd .box {
      text-align: center;
      position: relative;
      overflow: hidden;
      color: #fff;
      font-family: var(--font-Outfit);
    }

    .sareea_shop_sd .box img {
      width: 100%;
      height: auto;
    }

    .sareea_shop_sd .box:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: all 0.5s ease 0s;
      z-index: 2;
    }

    .sareea_shop_sd .box:hover:before {
      opacity: 1;
    }

    .sareea_shop_sd .box:after {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      left: 170%;
      top: 0;
      transform: skewX(45deg);
      transition: all 1s ease 0s;
      background-color: #023047;
      z-index: 1;
    }

    .sareea_shop_sd .box:hover:after {
      left: -170%;
      top: 0;
    }

    .sareea_shop_sd .box .box-content {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      transition: all 0.5s ease 0s;
      z-index: 3;
    }

    .sareea_shop_sd .box:hover .box-content {
      bottom: 40%;
    }

    .sareea_shop_sd .box .box-content .name {
      font-size: 22px;
      font-weight: 700;
      margin: 0 0 10px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
      font-family: var(--font-Outfit);
    }

    .sareea_shop_sd .box .box-content .post {
      display: block;
      font-size: 15px;
      font-style: italic;
      font-weight: 600;
    }

    @media screen and (max-width: 990px) {
      .sareea_shop_sd .box {
        margin-bottom: 30px !important;
      }
    }

/* <!-- Middle 3 Column Section Css End --> */


/* ============================================================Saree Shop Css End================================================================ */


/* ============================================================Woo coomerce Orede css================================================================ */
.woocommerce-order {
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 480px) {
  .woocommerce-order {
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
  }
}


/* ============================================================Woo coomerce Orede css end================================================================ */

/* ============================================================Rihyaaz Shop Css ================================================================ */

  .rihyaaz_shop_sd .carousel-heading-wrap {
    display: inline-flex;
  }

  .rihyaaz_shop_sd .view_all_sd a{
    font-size: 0.8rem;
    font-family: var(--font-Nunito);
    margin: 0;
    color: var(--btncolor);
    text-decoration: underline;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .rihyaaz_shop_sd .carousel-heading {
    font-size: 2rem;
    font-family: var(--font-Playfair);
    font-weight: 500;
    margin: 0;
    color: var(--textcolor1);
  }

  .rihyaaz_shop_sd .carosel_product_name {
    font-size: 1.5rem;
    font-family: var(--font-Playfair);
    font-weight: 500;
    margin: 0;
    color: #fff;
  }


  .rihyaaz_shop_sd .arrow-btn {
    font-size: 16px;
    cursor: pointer;
    color: #222;
    opacity: 0.6;
    transition: 0.2s ease;
  }

  .rihyaaz_shop_sd .arrow-btn:hover {
    opacity: 1;
  }

  .rihyaaz_shop_sd .item img {
    height: 450px;
    object-fit: cover;
    width: 100%;
  }

  .rihyaaz_shop_sd .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }

  .rihyaaz_shop_sd .overlay-content h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
  }

/* Carosel Product Css */

     .rihyaaz_shop_sd .product-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 0px;
        overflow: hidden;
        transition: box-shadow 0.3s;
        position: relative;
      }

     .rihyaaz_shop_sd .product-card:hover {
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      }

     .rihyaaz_shop_sd .product-image {
        position: relative;
        height: 400px;
        overflow: hidden;
      }

     .rihyaaz_shop_sd .inner-carousel img {
        width: 100%;
        height: 400px;
        object-fit: cover;
      }

     .rihyaaz_shop_sd .view-more-btn {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        padding: 8px 25px;
        font-weight: 600;
        font-size: 14px;
        border: 1px solid rgb(211, 208, 208);
        border-radius: 4px;
        opacity: 0;
        transition: 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        z-index: 2;
        color: #000;
      }
      .rihyaaz_shop_sd .view-more-btn a{
        text-decoration: none;
        color: black;
      }
     .rihyaaz_shop_sd .product-card:hover .view-more-btn {
        opacity: 1;
      }

     .rihyaaz_shop_sd .inner-carousel .owl-nav {
        position: absolute;
        top: 40%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        opacity: 0;
        transition: 0.3s ease;
      }

     .rihyaaz_shop_sd .inner-carousel .owl-nav button {
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.555) !important;
        width: 30px;
        height: 30px;
        font-size: 18px;
        color: #000 !important;
      }

     .rihyaaz_shop_sd .product-card:hover .inner-carousel .owl-nav {
        opacity: 1;
      }

     .rihyaaz_shop_sd .product-title {
        font-size: 1rem;
        padding: 10px 10px 0;
        color: #333;
        font-weight: 500;
        min-height: 58px;
      }

     .rihyaaz_shop_sd .product-price {
        padding: 5px 10px 15px;
        font-size: 1rem;
      }

     .rihyaaz_shop_sd .sale-price {
        color: #000;
        font-weight: bold;
        margin-right: 6px;
      }

     .rihyaaz_shop_sd .original-price {
        color: #888;
        text-decoration: line-through;
        margin-right: 6px;
      }

     .rihyaaz_shop_sd .sale-tag {
        color: red;
        font-weight: bold;
      }


/* Video css */
.video-card {
      position: relative;
      overflow: hidden;
      height: 450px;
      flex: 0 0 auto;
      width: 100%;
    }

    .video-card video {
      position: absolute;
      top: 50%;
      left: 50%;
      height: 100%;
      width: auto;
      min-width: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
    }

    .rihyaaz_shop_sd .video-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      color: #fff;
      z-index: 2;
    }

    .rihyaaz_shop_sd .video-subtitle {
      font-size: 0.8rem;
      text-transform: uppercase;
      font-family: var(--font-Nunito);
    }

    .rihyaaz_shop_sd .video-title {
      font-size: 2rem;
      margin-top: 0.3rem;
      font-family: var(--font-Playfair);
    }


    /* Jandani section */

    .rihyaaz_shop_sd .jamdani-section .section-label {
  text-transform: uppercase;
  font-size: 12px;
  color: #6c757d;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.rihyaaz_shop_sd .jamdani-section .section-title {
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--font-Playfair);
}

.rihyaaz_shop_sd .jamdani-section .section-description {
  max-width: 100%;
  margin: 0 auto 24px auto;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .rihyaaz_shop_sd .jamdani-section .section-description {
    margin: 0 0 24px 0;
  }
}

.rihyaaz_shop_sd .jamdani-section .jamdani-btn {
  background-color: var(--btncolor);
  color: #fff;
  padding: 10px 26px;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
}

.rihyaaz_shop_sd .jamdani-section .jamdani-btn:hover {
  background-color: red;
}

/* IMAGE POSITIONING */
.jamdani-image-box {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.jamdani-image-box .base-img {
  width: 60%;
  position: relative;
  z-index: 2;
}

.jamdani-image-box .overlay-img {
  position: absolute;
    bottom: 15%;
    left: 45%;
    transform: translateX(10%);
    width: 60%;
    max-width: 60%;
    z-index: 1;
}

@media (max-width: 767.98px) {
  .jamdani-image-box .overlay-img {
    left: 34%;
  }
}


/* Jandani section end */

/* summer_favourites */

.summer_favourites .item {
  position: relative;
  overflow: hidden;
}

.summer_favourites .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem 0.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summer_favourites .carosel_product_name {
  font-size: 1.2rem;
  font-family: var(--font-Playfair, serif);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* summer_favourites end */

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 50px; /* space between each repeat */
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-family: var(--font-Playfair);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Time section css */

.timing-section {
  background-color: #fdf8f0;
  color: #333;
}

.timing-section h3{
  font-family: var(--font-Playfair);
  
}

.timing-section a {
  color: #000;
  text-decoration: none;
}

.timing-section a:hover {
  text-decoration: underline;
}

/* Time section css end */

/* above footer section css */
.service-icons i {
  color: #2c2e54;
  font-size: 1.4rem;
}

.service-icons p {
  font-family: var(--font-Playfair);
  color: #2c2e54;
  font-size: 1.4rem;
}



/* above footer section css end */

.testimonial-slider {
      padding: 4rem 0;
      position: relative;
      background-color: #fcfaf3;
    }

   .testimonial-slider .testimonial-content {
      max-width: 500px;
    }

    .testimonial-slider .testimonial-content small {
      letter-spacing: 1px;
      font-weight: 600;
      text-transform: uppercase;
      color: #555;
    }

    .testimonial-slider .testimonial-content .text-warning {
      font-size: 1.2rem;
    }

    .testimonial-slider .testimonial-content p.fs-4 {
      color: #222;
    }
    .testimonial-slider .testimonial-main-content{

      font-family: var(--font-Playfair);

    }

    .testimonial-slider .testimonial-image {
      width: 450px;
      height: 450px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .testimonial-slider .testimonial-image img {
      width: 80%;
      height: auto;
      object-fit: cover;
    }

    .testimonial-slider .custom-nav_1 {
      margin-top: 20px;
      text-align: left;
    }

    .testimonial-slider .custom-nav_1 button {
      border: none;
      margin: 0 5px;
      font-size: 20px;
      color: #333333c2;
      transition: 0.3s;
    }

    .testimonial-slider .custom-nav_1 button:hover {
      background: #ccc;
    }
/* ---------------------pop up css------------------- */

 /* Make sure modal is above all content */
  #offerPopup {
  z-index: 1060 !important;
}
.modal-backdrop {
  z-index: 1050 !important;
}
.popup-form-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-family: var(--font-Outfit);
}

.popup-form-wrapper .input-group {
  display: flex;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.popup-form-wrapper .country-code {
  background-color: #f0f0f0;
  padding: 10px 15px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.popup-form-wrapper .input-field {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.popup-form-wrapper .input-field.mb {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-form-wrapper .submit-btn {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-form-wrapper .submit-btn:hover {
  background-color: #333;
}

/* ---------------------pop up css end------------------- */
/* ---------------------Live google rrview---------------------- */
.google_review_sd {
  background-color: #fdf8f0;
}

/* ---------------for online pay page----------------- */
.woocommerce{
padding: 50px;
}

.woocommerce #btn-razorpay,
.woocommerce #btn-razorpay-cancel {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Razorpay Pay Button */
.woocommerce #btn-razorpay {
  background-color: #008CFF; /* Razorpay blue */
  color: #fff;
}

.woocommerce #btn-razorpay:hover {
  background-color: #0077e6;
  transform: scale(1.03);
}

/* Cancel Button */
.woocommerce #btn-razorpay-cancel {
  background-color: #f44336; /* red */
  color: #fff;
  margin-left: 10px;
}

.woocommerce #btn-razorpay-cancel:hover {
  background-color: #d32f2f;
  transform: scale(1.03);
}

/* ============================================================Rihyaaz Shop Css End================================================================ */
.tm_rewards a {color:red!important; font-weight: bold!important;}