/*Reset CSS*/
:root
{
    --primary-color: #ffd203;
    --primary-text-color: #333333;
    --black: #000000;
    --white: #ffffff;
    --border-color: #dddddd;
}
*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    line-height: 130%;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    scroll-behavior: smooth;
    color: var(--primary-text-color);
    /* outline: 1px solid; */
}
h1,h2,h3,h4,h5,h6,
button,input,label
{
    line-height: 110%;
}
img, picture,svg
{
    max-width: 100%;
    display: block;
}
a
{
    text-decoration: none;
    display: inline-block;
    transition:0.5s all ease;
}
.container
{
    max-width: 85.906vw;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}
@media(min-width: 1921px){
    .container{
        max-width: 1320px;
    }
}
@media(max-width: 767px){
    .container{
        max-width: 100%;
    }
}
h1
{
    font-size: clamp(2rem, 1.5rem + 2.2222vw, 3.5rem);
    font-weight: 500;
}
h2
{
    font-size: clamp(1.5rem, 1.3333rem + 0.7407vw, 2rem);
    font-weight: 500;
}
h3
{
    font-size: clamp(22px, calc(1.375rem + ((1vw - 7.67px) * 0.1735)), 24px);
}
h4
{
    font-size: clamp(18px, calc(1.125rem + ((1vw - 7.67px) * 0.1735)), 20px);
}
.custom-btn
{
    color: var(--black);
    background-color: var(--primary-color);
    padding: 10px 15px;
}
.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active
{
    background-color: var(--black);
    color: var(--primary-color);
}
.header-wrapper
{
    padding-bottom: 40px;
}
/*Global CSS*/
/*Header Section*/
.header
{
    position: sticky;
    top: 0%;
    background-color: var(--white);
    z-index: 99 ;
    padding: 10px 0;
}
.navigation
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.navbar
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    max-width: 100%;
}
.nav-ul
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    gap: 25px;
}
.dropdown a
{
    display: flex;
    align-items: center;
}
li.nav-links.dropdown:after 
{
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    top: 100%;
    left: 0;
}
.dropdown
{
    position: relative;
}
.header.sticky .navbar .submenu {
    top: 60px;
}
.submenu
{
    display: none;
    position: absolute;
    top: 200%;
    left: 0%;
    padding: 10px 5px;
    width: 180px;
    transition: 0.5;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px var(--border-color);
    background-color: var(--white);
}
.submenu li a
{
    padding: 10px 5px;
}
.dropdown:hover .submenu
{
    display: block;
}
.dropdown a:focus .submenu
{
    display: block;
}
.menu-btn
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: 5s;
}
.header_img
{
    width: 100px;
    transition:0.5s all ease;
}
.login
{
    display: none;
}
.contact-btn
{
    padding: 15px 20px;
}
.nav-links a svg
{
    transition: 0.5s;
}
.nav-links a:hover
{
    color: var(--primary-color);
}
.nav-links a:hover svg path
{
    fill: var(--primary-color);
}
.submenu li a:hover
{
    border-color: var(--primary-color);
}
.nav-ul a:after {
    position: absolute;
    content: "";
    background: var(--primary-color);
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    transition: 0.5s all ease;
}
.nav-links a 
{
    position: relative;
    padding: 10px 0px;
    overflow: hidden;
    display: inline-flex;
}
.nav-links a:hover:after 
{
   left: 0;
}
.dropdown a:hover .caret-down
{
    display: none;
}
.caret-up
{
    display: none;
}
.dropdown a:hover .caret-up
{
    display: inline-block;
    stroke: var(--primary-color);
}
.login svg path
{
    transition: 0.5s;
}
.login:hover svg path
{
    stroke: var(--primary-color);
}
.bars
{
    display: none;
}
.cancel
{
    display: none;
}
.header.sticky{
    box-shadow:0px 0px 6px 1px #b2b2b2;
}
.header.sticky .header_img{
    width:60px;
}
@media (max-width: 992px)
{
    .header_img
    {
        position: relative;
    }
    .navbar
    {
        display: inline-block;
        position: absolute;
        left: -100%;
        top: 100%;
        z-index: 999;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        padding: 20px 0px;
        transition: 1s;
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: center;
    }
    .navbar .nav-ul
    {
        margin: 0 auto;
        width: 100%;
        max-width: 85.906vw;
    }
    .dropdown a
    {
        display: inline-block;
    }
    .dropdown a svg
    {
        display: inline-block;
    }
    .dropdown a .caret-up
    {
        display: none;
    }
    .dropdown a:hover .caret-down
    {
        display: none;
    }
    .dropdown a svg .caret-up
    {
        display: inline-block;
    }
    .dropdown a:after 
    {
        position: absolute;
        content: "";
        background: var(--primary-color);
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        transition:0.5s all ease;
    }
    .dropdown a {
        position: relative;
        padding: 10px 0px;
        overflow: hidden;
    }
    .submenu
    {
        display: none;
        position: relative;
        width: 100%;
        transition: 0.5;
        border-radius: 10px;
        box-shadow: 0px 0px 0px 0px var(--border-color);
    }
    .dropdown a:hover .submenu
    {
        display: inline-block;
    }
    .nav-ul
    {
        z-index: 500;
        display: inline-block;
    }
    .bars
    {
        display: block;
        position: relative;
        top: 0%;
    }
    .navbar .nav-ul .nav-links
    {
        text-align: left;
    }
    .login
    {
        display: block;
    }
    .contact-btn
    {
        display: none;
    }
}
/*Header Section*/
/*Banner Section*/
.banner
{
    background-image: url('../images/hero-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}
.banner-row
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif ;
}
.subtitle
{
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
    font-weight: 500;
    color: var(--black);
    display: inline-block;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
}
.banner-desc h1
{
    font-size: clamp(2rem, 1.1667rem + 3.7037vw, 4rem);
    font-weight: 800;
    padding: 20px 0; 
}
.banner-img img
{
    margin: 0 auto;
    border-radius: 50%;
    animation: rotate-animation 10s infinite linear;
}
@keyframes rotate-animation {
	0% 
    {
		transform: rotate(0deg);
    }
    50% 
    {
		transform: rotate(180deg);
	}
	100% 
    {
		transform: rotate(360deg);
	}
}
.banner-info
{
    font-size: clamp(1rem, 0.875rem + 0.5556vw, 1.375rem);
    line-height: 1.5;
    padding-bottom: 20px;
}
.btn-large
{
    font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
    padding: 15px 25px;
    font-weight: 700;
}
@media (max-width: 1024px)
{
    .banner-row
    {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }
    .banner-desc
    {
        order: 2;
    }
    .banner-img
    {
        order: 1;
    }
}
@media (max-width:992px)
{
    .banner-desc h1
    {
        padding: 10px 0;
    }
}
/*Horoscope Section*/
.horoscope
{
    padding: 80px 0;
    text-align: center;
}
.zodiac
{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.signs
{
    padding: 30px;
    border: 1px solid;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}
.signs:hover
{
    box-shadow: 0px 5px 0px 0px inset var(--primary-color);
    border: 1px solid var(--primary-color);
}
.horoscope h2
{
    font-weight: 700;
    margin: 20px 0;
}
.horoscope p
{
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
    text-align: center;
}
.signs h3{
    transition: 0.5s;
}
.signs:hover h3
{
    color: var(--primary-color);
}
@media (max-width: 1200px)
{
    .zodiac
    {
        display: grid;
        grid-template-columns: repeat(4,1fr);
    }
}
@media (max-width: 992px)
{
    .zodiac
    {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .horoscope h2
    {
        margin: 10px 0;
    }
}
@media (max-width: 768px)
{
    .zodiac
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 375px)
{
    .zodiac
    {
        display: grid;
        grid-template-columns: 1fr;
    }
}
/*Astro-Banner Section*/
.astro-banner
{
    background-image: url('../images/backbanner-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
}
.astro-grid
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.astro-desc h2
{
    font-weight: 700;
    margin: 20px 0;
}
.astro-para
{
    font-size: clamp(1rem, 0.9071rem + 0.381vw, 1.25rem);
    line-height: 1.8;
    margin: 20px 0;
}
@media (max-width: 1024px)
{
    .astro-grid
    {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        justify-content: center;
        gap: 25px;
    }
    .astro-desc
    {
        text-align: center;
    }
}
@media (max-width:992px)
{
    .astro-desc h2
    {
        margin: 10px 0;
    }
}
/*Services Section*/
.services
{
    text-align: center;
    padding: 80px 0;
}
.services h2
{
    font-weight: 700;
    margin: 20px 0;
}
.service
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border: 1px solid;
    padding: 40px;
    transition: 0.5s;
}
.provide
{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    gap: 30px;
}
.service-img
{
    padding: 20px;
    border-radius: 50px;
    background-color: var(--primary-color);
    transition: 0.5s;
}
.service:hover .service-img
{
    background-color: var(--black);
}
.service:hover svg,
.service:hover svg path
{
    fill: var(--primary-color);
}
.service:hover
{
    box-shadow: 15px 15px 0px -5px var(--primary-color);
}
@media (max-width: 1024px)
{
    .provide{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:992px)
{
    .services h2
    {
        margin: 10px 0;
    }
}
@media (max-width:624px)
{
    .provide{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}
/*Digital Catalogue Section*/
.catalogue
{
    background: #fff2b6;
    text-align: center;
    padding: 80px 0;
}
.catalogue-grid
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.catalogue h2
{
    font-weight: 700;
    margin: 20px 0;
}
.digital a
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.digital a svg path
{
    transform: translateX(-10px);
}
.cards
{
    display: flex;
    gap: 25px;
    justify-content: end;
    align-items: center;
}
.service
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border: 1px solid;
    padding: 40px;
    transition: 0.5s;
}
.digital
{
    padding: 30px;
    background-color: var(--white);
    transition: 1s;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    border: 1px solid var(--primary-color);
}
.digital:hover
{
    box-shadow: 0px 10px 0 0px var(--primary-color) inset;
    border-color: var(--primary-color);
}
.ruby-svg,
.neelam-svg
{
    margin: 0 auto;
    transition: 1s;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 100%;
    padding: 10px;
}
.neelam-svg g polygon,
.neelam-svg g path,
.neelam:hover a svg path,
.ruby:hover a svg path
{
    transition: 1s;
}
.digital h3
{
    margin: 30px 0 10px;
    transition: 1s;
}
.ruby:hover .ruby-svg,
.neelam:hover .neelam-svg
{
    fill: black;
    background:black
}
.ruby:hover a,
.ruby:hover a svg path,
.neelam:hover a,
.neelam:hover a svg path
{
    color: var(--primary-color);
    fill: var(--primary-color);
}
.neelam:hover .neelam-svg g polygon

{
    fill:var(--primary-color);
}
.neelam:hover .neelam-svg g path
{
    fill: var(--primary-color);
}
.ruby:hover a,
.ruby:hover a svg path
{
    color: var(--primary-color);
    fill: var(--primary-color);
}
.head
{
    text-align: left;
}
.digital a:hover svg path
{
    transform: translateX(10px);
}
@media (max-width:1064px)
{
    .catalogue-grid
    {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        text-align: center;
        justify-content: center;
        gap: 25px;
    }
    .head
    {
        text-align: center;
    }
    .cards
    {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width:1024px)
{
    .digital
    {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        border: 1px solid var(--primary-color);
        padding: 40px;
        transition: 0.5s;
    }
}
@media (max-width:992px)
{
    .catalogue h2
    {
        margin: 10px 0;
    }
}
/*Videolog Section*/
.videolog
{
    padding: 80px 0;
}
.swiper .swiper-wrapper .swiper-slide
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.border
{
    margin-bottom: 40px;
    padding-left: 20px;
    border: 5px solid var(--primary-color);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    line-height: 1.8;
}
.video-desc h2
{
    padding: 25px 0;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.7357rem + 0.5714vw, 1.25rem);
}
iframe
{
    aspect-ratio: 16/9;
}
.video-heading
{
    text-align: center;
}
.video-heading h2
{
    font-weight: 700;
    margin: 20px 0;
}
.user
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.user h5
{
    font-size: 16px;
    margin-bottom: 5px;
}
.user img
{
    border-radius: 50%;
    width: 50px;
}
.relation
{
    position: relative;
}
.swiper-prev
{
    position: absolute;
    left: -5%;
    top: 40%;
    z-index: 1;
    cursor: pointer;
}
.swiper-next
{
    position: absolute;
    right: -5%;
    top: 40%;
    z-index: 1;
    cursor: pointer;
}
.swiper-next,
.swiper-prev
{
    fill: var(--black);
    transition: 0.5s all ease-in-out ;
    padding: 15px;
    background-color: var(--primary-color);
}
.swiper-next:hover,
.swiper-prev:hover
{
    fill: var(--primary-color);
    background-color: var(--black);
}
@media (max-width:1200px)
{
    .swiper .swiper-wrapper .swiper-slide
    {
        display: grid;
        grid-template-columns:repeat(1,1fr);
    }
}
@media (max-width: 992px)
{
    .swiper-prev
    {
        position: absolute;
        left: 40%;
        top: 95%;
        z-index: 1;
    }
    .swiper-next
    {
        position: absolute;
        right: 40%;
        top: 95%;
        z-index: 1;
    }
    .swiper-next,
    .swiper-prev
    {
        padding: 10px;
    }
    .video-heading h2
    {
        margin: 10px 0;
    }
    .video-desc
    {
        margin-bottom: 40px;
    }
}
@media (max-width:425px)
{
    .swiper-prev
    {
        position: absolute;
        left: 35%;
        top: 95%;
        z-index: 1;
    }
    .swiper-next
    {
        position: absolute;
        right: 35%;
        top: 95%;
        z-index: 1;
    }
}
/*Calendly Section*/
.calendly
{
    padding: 80px 0;
    background:#fff2b6;
}
.calendly-section
{
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    align-items: center;
}
.calendly-inline-widget
{    
    height: 500px;
    box-shadow: 0px 0px 6px 2px #b2b2b2;
    background-color: white!important;
}   
.head h2
{
    font-weight: 700;
    margin: 20px 0;
}
.head .contact-btn
{
    margin-top: 20px;
}
@media (max-width:1064px)
{
    .calendly-section
    {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        justify-content: center;
        align-items: center;
    }
    .calendly-inline-widget
    {
        min-width: 320px;
        height: 630px;
    }
}
@media (max-width:992px)
{
    .head h2
    {
        margin: 10px 0;
    }
    .calendly-inline-widget
    {
        min-width: 320px;
        height: 890px;
    }
}
/*Footer Section*/
.footer
{
    padding: 80px 0 0 0;
    background: linear-gradient(#f7f3ee);
}
.footer-section
{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    gap: 35px;
    padding-bottom: 40px;
}
.logo p
{
    padding: 25px 15px 0px 0px;
    line-height: 1.8;
}
.footer-section ul li a 
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
}
.footer-section ul li h3
{
    padding-bottom: 10px;
    font-size: 20px;
}
ul li a svg path,
ul li a p
{
    transition: 0.5s all ease-in-out;
}
ul li a:hover svg path,
ul li a:hover p
{
    fill: var(--black);
    stroke: var(--primary-color);
    color: var(--primary-color);
}
a:hover .phone path
{
    fill: var(--primary-color);
}
.links li a:hover svg path
{
    stroke: var(--primary-color);
    fill: var(--primary-color)
}
.footer-last
{
    padding: 40px 0;
    border: 1px solid var(--border-color);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.social
{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
}
.social a svg
{
    transition: 0.5s all ease;
}
.social a svg path
{
    transition: 0.5s all ease;
}
a:hover .facebook
{
    fill: #1877F2;
}
a:hover .twitter
{
    fill: #1DA1F2;
}
a:hover .instagram path
{
    fill: #E4405F;
}
a:hover .youtube path
{
    fill: #FF0000;
}
 @media (max-width:1350px)
{
    .footer-section
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
    }
}
@media (max-width: 768px)
{
    .footer-section
    {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        justify-content: center;
        align-items: center;
    }
}
@media (max-width:992px) 
{
    .banner,.horoscope,
    .astro-banner,.services,
    .catalogue,
    .calendly,.footer
    {
        padding: 40px 0;
    }
    .header-wrapper
    {
        padding-bottom: 20px ;
    }
}