@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    box-sizing: border-box !important;
}
html{
    scroll-behavior: smooth;
}

:root{
    --primary-color: #fc0;
    --secondary-color: #ca0202;
    --green-color: #157500;
    --hover-color: #d2a700;
    --heading-color: #ffcc00;
    --text-color: #333;
    --white-color: #fff;
    --black-color: #000;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
    color: #666666;
    font-size: 14px;
    line-height: 1.80857;
    font-weight: normal;
    background-color: var(--white-color);
}

.carousel {
    margin: 20px auto;
    width: 95%;
    height: 150px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 10px;
}
.carousel-slide {
    min-width: 100%;
    position: relative;
    border-radius: 10px;
    z-index: -1;
}
.carousel-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-slide {
    position: relative;
}
.carousel-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
}


/************************ gurudev**********************/

.section-2{
    width: 80%;
    margin: 0 auto;
}
.flex-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.flex-item-1{
    border-radius: 5px;
}
.flex-item-1 h2,
.flex-item-2 h2{
    text-align: center;
    background: #fbf0d6;
    color: #700000;
    line-height: 30px;
    padding: 5px;
    border-radius: 10px;
}
.flex-item-1 img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

.flex-item-2 {
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flex-item-2 img{
    width: 300px;
    height: 400px;
    object-fit: center;
    border-radius: 10px;
}

/***************** maa ************************/
.section-3{
    width: 80%;
    margin: 0 auto;
}
.section-3 h2{
    text-align: center;
    background: #fbf0d6;
    color: #700000;
    line-height: 30px;
    padding: 5px;
    border-radius: 10px;
}
.flex-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.flex-item-3{
    border-radius: 5px;
}
.flex-item-3 img{
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.flex-item-4 video{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/***************************************/

.section-1{
    margin: 20px auto;
    width: 95%;
    gap: 10px;
    border-radius: 15px;
}
.section-1-item{
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    
    /* background-image: linear-gradient(135deg, #ffe259 10%, #ffa751 100%); */
    background:radial-gradient(circle at 90% 80%, rgba(255, 180, 130, 0.2) 1%, transparent 40%), #ecf1f5;
    background-color: hsla(210, 25%, 95%, 1); /* Light, neutral color */
    background-repeat: no-repeat;   
    overflow: hidden;
}
.form-head{
    background: rgba(90, 90, 90, 0.2);
    border-radius: 15px;
    border-radius: 0 0 80px 80px;
}
.login-heading{
    width: 100%;
    margin: 0;
    padding: 10px 40px;
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 900;
    border-radius: 15px;
    background: linear-gradient(45deg, #560618, #eb2f3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.login-heading img{
    width: 40px;
}
.login-form{
    padding: 20px 40px;
    margin-top: 10px;
}
.form-group{
    display: flex;
    background: rgba(90, 90, 90, 0.2);
    border-radius: 8px;
    border: 1.5px solid var(--secondary-color);
    margin-bottom: 25px;
}

.form-group label{
    background: linear-gradient(45deg, #560618, #eb2f3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 14px;
    font-weight: 600;
    font-size: 1.5rem;
}

.form-group input{
    padding: 15px;
    border: none;
    background: transparent;
    outline: none;
}

.form-group input::placeholder{
    color: #700000;
}

.login1-btn{
    margin-bottom: 10px;
}

.submit-btn{
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-image 0.3s ease-in-out;
}
.submit-btn:hover{
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
}

.forgot{
    color: var(--black-color);
}
.forgot:hover,
.forgot a:hover{
    color: var(--text-color);
}
.forgot a{
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
}

.bottom-head .signup{
    width: 100%;
    margin: 0;
    padding: 10px 40px;
    text-align: center;
    color: var(--secondary-color);
    border-radius: 15px;
    color: var(--primary-color);
    font-weight: 600;
    padding-top: 25px;
    font-size: 1rem;
    line-height: 25px;
}

.bottom-head .signup a{
    color: var(--white-color);
}
.bottom-head .signup a:hover{
    background: linear-gradient(-45deg, #6a6a6a, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bottom-head{
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    height: 100px;
    border-radius: 80px 80px 0 0px;
}
.astro-icons{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/****************research Section************/

.custom-research-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    background:radial-gradient(circle at 90% 80%, rgba(255, 180, 130, 0.2) 1%, transparent 40%), #ecf1f5;
    background-color: hsla(210, 25%, 95%, 1); /* Light, neutral color */
    background-repeat: no-repeat;   
    animation: fadeup 3s;
    animation-delay: 1.5s;
    border-radius: 15px;
}

.custom-research-left {
    flex: 1;
    max-width: 30%;
}

.custom-research-title {
    font-size: 2rem;
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 35px;
}

.custom-research-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.custom-slider-controls {
    display: flex;
    gap: 10px;
}

.custom-prev-btn,
.custom-next-btn {
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: var(--primary-color);
    border: none;
    padding: 5px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.custom-prev-btn:hover,
.custom-next-btn:hover {
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
}

.custom-research-right {
    flex: 2;
    overflow: hidden;
    position: relative;
}

.custom-card-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    margin: 50px;
}

.custom-card {
    flex: 0 0 50%; /* Each card takes ~23% of the container */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-weight: 600;
    color: #000;
    padding: 20px;
}

.custom-card:hover {
    transform: scale(1.05);
}

.custom-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.custom-card-title {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
}

.custom-card-description {
    font-size: 1rem;
    color: #666;
    padding: 0 10px 10px;
}

/*****************YNT************************/
.ynt{
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}
.ynt h2{
    color: #000;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}
.ynt p{
    font-size: 1rem;
    text-align: center;
    margin-top: 0;
}
.flex-container-ynt{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card-ynt img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.card-ynt img:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card-ynt h3{
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    margin-top: 5px;
}

/***********************Custome Yantra Sections**********************/
.custom-yantra{
    background: url('../img/bg5.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin: 20px auto;
    padding: 50px 0;
}

.custom-heading{
    text-align: center;
    padding-top: 20px;
}
.custom-heading h2{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
    background-image: linear-gradient(109.6deg, rgba(204, 0, 0, 1) 11.2%, rgba(68, 0, 0, 1) 100.6%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.custom-heading p{
    margin-top: 0;
}

.rotate-img{
    position: relative;
}
.rotate-img img{
    position: absolute;
    width: 400px;
    opacity: 0.4;
    animation: rotate 10s linear infinite;
}
/* Rotation Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.custom-yantra-container{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.custom-yantra-form{
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}
.yantra-form-item{
    display: grid;
    margin-bottom: 15px;
}
.yantra-form-item label{
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.yantra-form-item input,
.yantra-form-item textarea{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--hover-color);
    outline-color: var(--primary-color);
    background: transparent;
    outline-offset: none;
    color: var(--white-color);
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.yantra-form-item textarea::placeholder,
.yantra-form-item input::placeholder{
    color: #999;
}
.yantra-form-item button{
    cursor: pointer;
    padding: 10px;
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.yantra-form-item button:hover{
    transform: scale(0.95);
}
.custom-yantra-text{
    color: #fff;
}
.custom-yantra-text .yantra-icons{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.custom-yantra-text h2{
    font-size: 2.5rem;
    margin-bottom: 0;
}
.yantra-p{
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}
.yantra-icons .icon{
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}
.yantra-text{
    color: #ccc;
}
/**********************Product Section******************************/

.product-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.product-container{
    width: 80%;
    margin: 0 auto;
}

.product-container h4{
    text-align: center;
    width: 165px;
    padding: 10px;
    font-weight: 500;
    border: 1px solid var(--second-color);
    margin: 0 auto;
    color: var(--second-color);
}

.product-container h3{
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

.product-img img{
    width: 150px;
    height: 100%;
}

.product-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-img{
    width: 100%;
    height: 180px;
    background-color: rgba(215, 220, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.product-card{
    padding: 10px;
    display: block;
    margin-bottom: 40px;
}

.product-name,.cart-button{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card .ratings{
    color: goldenrod;
}

.product-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strike-cost{
    font-size: 0.8rem;
    margin-top: -15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.off{
    font-weight: 600;
    color: green;
}

.qty input{
    padding: 8px;
    border: none;
    background-color: rgba(215, 220, 255, 0.4);
    border: 1px solid var(--main-color);
}

.qtyminus,.qtyplus{
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cart-button a{
    border: 1px solid var(--secondary-color);
    padding: 5px 10px;
    background-color: transparent;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.cart-button a:hover{
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: var(--white-color);
}

.discount-section{
    width: 80%;
    margin: 50px auto;
    padding: 10px;
    background-color: rgba(215, 220, 255, 0.8);
}

.discount-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-color: var(--white-color);
    padding: 50px;
}

.discount-text{
    width: 60%;
}

.discount-img{
    width: 40%;
}

.discount-img img{
    width: 100%;
}

.discount-name p{
    text-align: center;
    width: 250px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.grab-text{
    color: #000;
    font-family: "Jost", Sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2em;
}
.view-all-btn{
    display: flex;
    align-items: center;
    justify-content: center;
 }

.products h2{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.line-img{
    width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.line-text{
    text-align: center;
    width: 60%;
    margin: 15px auto;
}

.btn{
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}
.btn:hover {
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
}
.view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
}

/************************About us Section****************************/
.about-section {
    text-align: center;
    padding: 50px 0;
    background: url('../img/bg1.jpg');
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: 50px auto;
    padding: 20px;
}

.about-item {
    flex: 1;
    padding: 20px;
    text-align: left;
}
.about-title{
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--white-color);
}

.about-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
}

.know-btn {
    width: 170px;
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--black-color);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.know-btn img{
    width: 20px;
    transition: all 0.3sease-in-out;
}
.know-btn:hover img{
    rotate: 10deg;
}

.know-btn:hover {
    background: var(--hover-color);
}

.about-img {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-bg {
    position: absolute;
    width: 500px; /* Adjust size as needed */
    height: 500px;
    animation: rotate 10s linear infinite;
}

.rotating-bg img {
    width: 100%;
    height: auto;
}

.foreground-img {
    position: relative;
    width: 250px; /* Smaller than rotating background */
    height: auto;
    z-index: 2;
}

/* Rotation Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*************************Rules Dos and Dont's******************/
.rules-section {
    width: 80%;
    margin: 10px auto;
    padding: 20px;
    border-radius: 10px;
}
.rules-item ul{
    padding-left: 0;
}
/* Headings */
.rules-section h2 {
    color: #b8860b;
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 600;
}

/* Paragraph Styling */
.rules-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Dos and Don'ts Styling */
.rules-section p strong {
    display: block;
    font-size: 18px;
    margin-top: 15px;
    color: #8b4513;
}

/* List Styling */
.rules-section p ul {
    list-style: none;
    padding-left: 20px;
}

.rules-section p ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
}

.rules-section ul li i {
    color: #228b22;
    font-weight: bold;
    font-size: 1.2rem;
    padding-right: 15px;
}

/* Don'ts List Styling */
.rules-section ul.donts li i {
    color: #b22222;
}


/****************************Contact Us*************************/
.contact-section{
    padding: 30px 0;
}
.contact-section h2{
    text-align: center;
    font-size: 2.5rem;
}
.contact-container{
    width: 80%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 15px;
}
.contact-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.contact-item i{
    padding: 10px;
    border-radius: 50%;
    color: var(--secondary-color);
    background: var(--primary-color);
}
.contact-item iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
}
.contact-form .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-form textarea{
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    resize: none;
    outline: none;
}
textarea::placeholder{
    color: #560618;
}

/* Responsive */
@media (max-width: 800px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-item, .about-img {
        width: 100%;
    }
    .about-title {
        font-size: 3rem;
        margin: 0;
      }
    .about-img {
        margin-top: 20px;
    }
    .section-1 {
        grid-template-columns: 100%;
    }
    .login-container{
        display: none;
    }
    #section-1{
        grid-template-columns: 100%;
    }
    .custom-yantra-container {
        flex-direction: column;
    }
    .custom-yantra-form {
        width: 100%;
    }
    .rotating-bg {
        display: none;
    }
}

@media (max-width: 1200px) {
    .custom-card {
        flex: 0 0 100%;
    }
    .section-1 {
        grid-template-columns: 35% 65%;
    }
    .custom-yantra-container {
        width: 90%;
    }
    .rotating-bg {
        position: absolute;
        width: 300px;
        height: 300px;
        animation: rotate 10s linear infinite;
    }
}

@media (max-width: 500px) {
    .custom-research-section{
        flex-direction: column;
    }
    .custom-research-left{
        max-width: 100%;
    }
    .custom-research-right {
        width: 100%;
    }
    .line-img {
        width: 80%;
    }
    .form-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }
    .line-text {
        width: 90%;
    }
    .custom-heading h2 {
        font-size: 1.6rem;
        line-height: 35px;
    }
    .custom-yantra-text h2 {
        font-size: 2rem;
       margin: 0;
       line-height: 40px;
    }
    .about-item, .about-img {
        padding: 0;
    }
    .carousel {
        height: 100px;
    }
    .carousel-slide img {
        height: 100px;
    }
    .flex-container{
        flex-direction: column;
    }
    .flex-item-1 img{
        height: auto;
    }
    .ynt p {
        font-size: 0.7rem;
    }
    .ynt h2{
        font-size: 1.5rem;
        margin-top: 0;
    }
    .flex-container-ynt {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 25px;
    }
    .card-ynt img {
        height: 100px;
    }
}