.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #150029;
    color: #000;
    z-index: 99999999999;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.5s ease;
    padding: 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.side-drawer.open {
    width: 100%;
    padding: 20px;
}

.close-btn {
    background-color: #f4a300;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.container .text {
    text-transform: uppercase;
    position: relative;
    font-size: 7vw;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0;
    width: 100%;
    color: rgb(255 255 255 / 0%);
    background: linear-gradient(to right, #f0a8ff, #3d3d3d) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.7s;
    border-bottom: 1px solid #2f2b28;
    display: inline-block;
    z-index: 5;
    -webkit-text-stroke: 1px #f0a8ff;
}

.container .text span {
    position: absolute;
    -webkit-text-stroke: 1px black;
    /* Add stroke width */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f0a8ff;
    color: #0d0d0d;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transition: clip-path 0.4s cubic-bezier(0.1, 0.5, 0.5, 1);
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.text:hover>span {
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.drawer-inner-content {
    padding: 50px 200px;
}

.why-section {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content {
    display: flex;
    overflow: hidden;
    margin-top: 60px;
}

/* 50% width for desktop view */
.image-box {
    width: 48%;
}

.text-box {
    width: 48%;
    background-color: #2c1f39;
    margin-left: 25px;
    padding: 35px;
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-box img {
    max-width: 100%;
    height: auto;
}

.text-box {
    color: #ccc;
}

.text-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #f0a8ff;
    margin-top: 0px;
    font-weight: 500;
    line-height: 35px;
}

.text-box p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 200;
    color: white;
}

.bullet-points {
    display: flex;
    /* align-items: center; */
}

.bullet-points img {
    height: 22px;
}

.bullet-points p {
    margin: 0px;
    margin-left: 10px;
    margin-top: -5px;
    margin-bottom: 15px;
}

span.blod-text {
    color: #f0a8ff;
    font-weight: 600;
}


@media (max-width: 768px) {

    .image-box,
    .text-box {
        width: 100%;
        padding: 15px;
    }

    .why-heading {
        text-align: center;
    }
}

.bullet-points.what-sec span.blod-text {
    color: white;
    font-weight: 500;
}

.bullet-points.what-sec p {
    margin: 0px;
    margin-left: 10px;
    margin-top: -3px;
    margin-bottom: 15px;
}

.why-content button {
     background-color: #8500FF;
  color: white;
    border: none;
    padding: 11px;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}


.ring {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.ring i {
    position: absolute !important;
    inset: 0 !important;
    border: 2px solid #fff !important;
    transition: 0.5s;
}

.ring i:nth-child(1) {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: animate 6s linear infinite;
}

.ring i:nth-child(2) {
    border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
    animation: animate 4s linear infinite;
}

.ring i:nth-child(3) {
    border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
    animation: animate2 10s linear infinite;
}

.ring-sec {
    padding: 10px !important;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
}
.arror-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}
.slider-Btn-Next.right button .arrow {
    transform: rotate(90deg);

}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}



/* Next ring csss */

@keyframes stemDashOffsetOut {
	 to {
		 stroke-dashoffset: 24;
	}
}
 @keyframes stemDashOffsetIn {
	 from {
		 stroke-dashoffset: -24;
	}
	 to {
		 stroke-dashoffset: 0;
	}
}
 @keyframes leafDashOffsetOut {
	 to {
		 stroke-dashoffset: 9;
	}
}
 @keyframes leafDashOffsetIn {
	 from {
		 stroke-dashoffset: 9;
	}
	 to {
		 stroke-dashoffset: 0;
	}
}
 .slider-Btn-Next button {
	 display: flex;
	 align-items: center;
	 justify-content: center;
    width: 60px;
    height: 60px;
	 background: transparent;
	 position: relative;
	 cursor: pointer;
	 border: 0;
	 padding: 0;
}
 .slider-Btn-Next button svg {
	 stroke: #fff;
}
 .slider-Btn-Next button .circle {
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 stroke-dasharray: 200;
	 stroke-dashoffset: 200;
	 pointer-events: none;
	 transition: stroke-dashoffset 1s ease-out, transform 0.8s ease;
}
 .slider-Btn-Next button .circle.left {
	 transform: rotate(-90deg);
	 margin-left: 6px;
}
 .slider-Btn-Next button .circle.right {
	 transform: rotate(90deg);
	 margin-right: 6px;
}
 .slider-Btn-Next button .arrow {

     height: 24px;
    transform: rotate(270deg);
    transform-origin: center;
}
 .slider-Btn-Next button .arrow .stem {
	 stroke-dasharray: 24;
	 stroke-dashoffset: -24;
	 transition: stroke-dashoffset 0.4s ease-out;
}
 .slider-Btn-Next button .arrow .leaf {
	 stroke-dasharray: 9;
	 stroke-dashoffset: 9;
	 transition: stroke-dashoffset 0.4s 0.4s ease-in;
}
 .slider-Btn-Next button.on-load .circle, .slider-Btn-Next button.on-load .stem, .slider-Btn-Next button.on-load .leaf {
	 stroke-dashoffset: 0;
}
 .slider-Btn-Next button:hover .circle.left {
	 transform: rotate(-90deg) translateY(-6px);
}
 .slider-Btn-Next button:hover .circle.right {
	 transform: rotate(90deg) translateY(-6px);
}
 .slider-Btn-Next button:hover .arrow .stem {
	 animation: stemDashOffsetOut 0.4s ease-in forwards, stemDashOffsetIn 0.4s 0.8s ease-out forwards;
}
 .slider-Btn-Next button:hover .arrow .leaf {
	 animation: leafDashOffsetOut 0.4s 0.4s ease-out forwards, leafDashOffsetIn 0.4s 1.2s ease-in forwards;
}
.slider-Btn-Next.perv button .arrow {
    height: 24px;
    transform: rotate(90deg);
    transform-origin: center;
}
.banner-btn {
    z-index:3;
    text-align: end;
    margin-top: -30px;
}
button#exploreMoreBtn
 {

    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    width: auto;
        opacity: 0;
    font-size: 14px;
    cursor: pointer;border-radius: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid white;
}
@media (max-width: 768px) {
       .drawer-inner-content {
        padding: 60px 0px;
    }

    .why-content {
    display: flex;
    overflow: hidden;
    margin-top: 30px;
    flex-direction: column;
}
    .why-section {
        max-width: max-content;
        margin: 0 auto;
        padding-left: 20px;
    }

.slider-Btn-Next button {
   
    width: 50px;
    height: 50px;
 
}
.side-drawer.open {
    width: 100%;
    padding: 20px;
}
.container .text {

    margin-left: 20px;
}
.text-box {
        width: auto;
       
    }
    .text-box {
        width: auto;
        background-color: #2c1f39;
        margin-left: 15px;
        padding: 15px;
    }

}

.image-box img{
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.image-box  img:hover {
  filter: grayscale(0%);
}
.ring:hover i {
  border-color: #f0a8ff !important;
  filter: drop-shadow(0 0 20px var(#c7831c));
}