* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color_2: #12172d;
    --bg_color: #0c1023;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    background-color: #0c1023;
    color: var(--white);
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #b5bad3;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--bg_color_2);
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: var(--bg_color_2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.logo img {
    width: 300px;
}

.logo {
    position: relative;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--white);
    font-weight: 400;
}

.navbar_nav ul a:hover {
    color: #ca416e;
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: var(--white);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 6px 20px;
    transition: ease-in-out .5s;
}

.navbar_nav ul .dropdown li a {
    color: var(--bg_color);
    font-size: 15px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

#myHeader.sticky .navbar_nav .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    border-radius: 50%;
    padding: 7px 12px;
    cursor: pointer;
    color: #fff;
    border: 2px solid var(--white);
}

.magnifying {
    background: #c9c9c9;
    padding: 11px;
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
    height: 100%;
}

.banner_item {
    position: relative;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    z-index: 9;
    cursor: pointer;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.top_head {
    background-color: var(--bg_color);
}

.top_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_btn {
    background: linear-gradient(0deg, #e31e24 -28.51%, rgb(39 55 85) 142.24%);
    color: var(--white);
    padding: 13px 25px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #273755 -28.51%, rgb(227 30 36) 142.24%);
    z-index: -1;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
}

.top_num ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}


.top_num a,
.top_num i {
    color: var(--white);
}

.t_details span {
    display: block;
    font-size: 12px;
    color: #d7d7d7;
}

.top_icon {
    border: 1.5px solid #fff;
    padding: 6px 10px;
    border-radius: 50%;
}

.socal_media {

    display: flex;
    align-items: center;
    gap: 0 27px;

}

.socal_media {
    padding: 10px 42px;
    clip-path: polygon(12% 0, 88% 0, 100% 100%, 0% 100%);
}

.socal_media a {
    color: var(--white);
}

.socal_media a:hover {
    color: #ca416e;
}

.ab_img img {
    border-radius: 15px;
}

.ab_home {
    display: flex;
    padding: 60px 0;
}

.ab_img {
    float: left;
    width: 46%;
    margin-right: 50px;
    position: relative;
    text-align: center;
}

.big_head {
    font-family: "El Messiri", sans-serif;
    display: block;
    font-size: 45px;
    color: #ca416e;
}

.big_head span {
    color: var(--white);
}

.small_head {
    display: inline-block;
    font-size: 20px;
    position: relative;
    padding-right: 20px;
}

.small_head::after {
    content: "";
    width: 100px;
    height: 1px;
    position: absolute;
    left: 100%;
    top: 50%;
    background-color: var(--white);
}

.horoscope {
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: .5;
    animation: rotating 20s linear infinite;
}


@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.card_box {
    text-align: center;
    border: 1px solid #94949486;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--bg_color_2);
    position: relative;
    z-index: 9;
}

.card_box span {
    display: block;
    font-family: "El Messiri", sans-serif;
    font-size: 23px;
    margin: 17px 0;
}

.card_box:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -135px 0 0 -135px;
    background-image: url(../img/circle.png);
    width: 271px;
    height: 270px;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    z-index: -1;
    opacity: 0;
    animation: rotating 20s linear infinite;
}

.card_box:hover {
    background: linear-gradient(188deg, #770c9d, #000000);
    cursor: pointer;
}

.card_box:hover:after {
    opacity: 1;
}

.card_box:hover p {
    color: var(--white);
}

.product {
    padding: 90px 0;
}

.pro_item {
    border: 1px solid #252839;
    background-color: var(--bg_color_2);
    margin: 5px;
}

.pro_item .pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pro_title {
    display: block;
    font-size: 22px;
    font-family: "El Messiri", sans-serif;
    color: var(--white);
}

.pro_btn {
    color: #ca416e;
    display: block;
    margin-top: 10px;
    letter-spacing: 2px;
    font-size: 17px;
    transition: ease-in-out .5s;
}

.pro_btn:hover {
    color: var(--white);
}

.why_box {
    margin: 50px 0;
}

.why_box span {
    display: block;
    margin: 15px 0 5px;
    font-size: 25px;
    color: #ca416e;
    font-family: "El Messiri", sans-serif;
}

.why_box img {
    width: 100px;
}

.why_box p {
    font-size: 14px;
    font-weight: 300;
}

.why_img {
    position: relative;
    padding: 30px;
}

.why_bg {
    animation: rotating 20s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.whyChoose {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.why_img {
    border-radius: 50%;
    margin-top: 30px;
}

.test_contant {
    background-color: var(--bg_color);
    padding: 30px;
    padding-bottom: 60px;
    border-radius: 10px;
}

.test_item {
    margin: 6px;
}

.name_box {
    margin-top: -50px;
}

.name_box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
}

.name_box .name {
    font-family: "El Messiri", sans-serif;
    display: block;
    font-size: 22px;
    margin: 10px 0 5px;
}

.test_contant i {
    font-size: 70px;
}

.testimonials {
    padding: 60px 0;
    background-color: var(--bg_color_2);
}

.vastu_img {
    position: relative;
}

.contact form {
    background: linear-gradient(145deg, #110d22, #1a1432);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 12px;
    padding: 3rem;
}

.contact input,
textarea,
select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .2);
    color: var(--white);
    border-radius: 8px;
    padding: .85rem 1rem;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    transition: border-color var(--transition);
    resize: vertical;
    margin: 10px 0;
}

.contact select option {
    color: #000;
}

.form_title {
    display: block;
    font-size: 35px;
    font-family: "El Messiri", sans-serif;
    margin-bottom: 20px;
}

.contact-info-card {
    background: linear-gradient(145deg, #110d22, #1a1432);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 15px 2rem;
    margin: 10px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 12px;
    display: inline-grid;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ca416e;
    margin-right: 5px;
}

.contact-info-card a {
    display: block;
    color: #fff;
}

.contact-info-card p {
    color: var(--white);
}

.lable_title {
    color: #a5a4a7;
    display: block;
    margin-bottom: 10px;
}

footer {
    background-color: #06040f;
    padding-top: 40px;
    border-top: 1px solid rgba(219, 66, 66, 0.311);
}

footer p {
    color: #ada5c5;
    font-weight: 300;
    display: inline;
}

.foot_logo img {
    margin-bottom: 10px;
}

.foot_title {
    display: block;
    color: #ca416e;
    font-size: 25px;
    font-family: "El Messiri", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.foot_nav ul li a {
    color: #ada5c5;
    font-weight: 300;
    display: block;
    padding: 8px 0;
}

.foot_nav ul {
    overflow: auto;
    max-height: 250px;
}

.foot_contact {
    background: linear-gradient(145deg, #110d22, #1a1432);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 10px 1rem;
    margin: 10px 0;
}



.foot_contact a {
    color: #ada5c5;
    font-weight: 300;
}

.foot_nav ul li a:hover {
    color: #fff;
}

.foot_contact a:hover {
    color: #fff;
}

.maltipal_card {
    border: 1px solid rgba(201, 168, 76, .1);
    padding: 70px 0;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #ba48485e;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: #ada5c5;
}

.copy_right p a {
    color: #ada5c5;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(240, 5, 5);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}









.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.inner_header img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0c1023ad;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 992px) {
    .top_con {
        display: none !important;
    }

    .navbar_nav ul li {
        padding: 20px 11px;
    }

    .navbar_nav ul a {
        font-size: 15px;
    }

    .logo img {
        width: 208px;
    }

    .vastu_contant {
        margin-top: 20px;
    }
}


@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
        z-index: 99;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
        color: #000;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .top_main {
        flex-direction: column;
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 28px;
    }

    .small_head {
        font-size: 17px;
    }

    .ab_home,
    .maltipal_card,
    .product,
    .whyChoose {
        padding: 40px 0;
        overflow: hidden;
    }

    .my {
        margin: 40px 0;
    }

    .contact_details {
        margin-top: 20px;
    }

    .why_box {
        margin: 20px 0;
    }
}

@media only screen and (max-width: 500px) {
    .top_num {
        display: none;
    }

    .why_img {
        padding: 18px;
        margin-top: 16px;
    }

    .contact form {
        padding: 1rem;
    }

    .form_title {
        font-size: 26px;
        margin-bottom: 4px;
    }
}