@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* new Font-Family */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/*--*/
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --font-raleway: "Raleway", sans-serif;
    --font-lora: "Lora", serif;
    --font-nunito: "Nunito", sans-serif;
}

body {
    font-family: var(--font-nunito);
    font-size: clamp(15px, 2vw, 18px);
}

* {
    box-sizing: border-box;
    font-family: var(--font-nunito);
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: var(--font-lora);
    font-size: clamp(25px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.2em;
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.1em;
    font-family: var(--font-lora);
}

h3 {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.2em;
    font-weight: 600;
    font-family: var(--font-lora);
}

h4 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2em;
    font-family: var(--font-lora);
}

h5 {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.2em;
    color: #181828;
    font-family: var(--font-lora);
}

h6 {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4em;
    font-family: var(--font-lora);
}

#shop-by-category h6 {
    font-size: clamp(16px, 2vw, 18px) !important;
}

#top-products .custom-font h6 {
    font-size: clamp(16px, 2vw, 18px) !important;
}

p,
a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    font-family: var(--font-nunito);
    line-height: 28px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
}

img {
    border-style: none;
}

.text-brown {
    color: #B18E4A;
}

.btn-theme {
    position: relative;
    display: inline-block;
    background: #69004C;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 500;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(105, 0, 76, 0.2);
}

    /* Subtle gradient overlay effect */
    .btn-theme::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
        transform: translateX(-100%);
        transition: 0.5s ease;
    }

    /* Hover */
    .btn-theme:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(105, 0, 76, 0.35);
        background: #5a003f;
    }

        /* Shine animation */
        .btn-theme:hover::before {
            transform: translateX(100%);
        }

    /* Active click */
    .btn-theme:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(105, 0, 76, 0.25);
    }

    /* Focus (important for accessibility) */
    .btn-theme:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(105, 0, 76, 0.25);
    }

.btn-theme-white {
    position: relative;
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    color: #66044d;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 4, 77, 0.15); /* important */
}

    /* Visible shine (use theme color, not white) */
    .btn-theme-white::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent, rgba(102, 4, 77, 0.15), transparent );
        transform: translateX(-100%);
        transition: 0.5s ease;
    }

    /* Hover */
    .btn-theme-white:hover {
        transform: translateY(-2px);
        background: #fdf7fb; /* slight pinkish tint */
        color: #69004C;
        box-shadow: 0 10px 25px rgba(102, 4, 77, 0.2);
        border-color: rgba(102, 4, 77, 0.3);
    }

        /* Shine animation */
        .btn-theme-white:hover::before {
            transform: translateX(100%);
        }

    /* Active */
    .btn-theme-white:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

@media(max-width:992px) {
    .btn-theme, .btn-theme-white {
        margin: auto;
    }
}


.padding-100 {
    padding: 80px 0px;
}

.padding-top {
    padding-top: 80px;
}

.padding-bottom {
    padding-bottom: 80px;
}

.fixed-top {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 3px 6px, rgba(0, 0, 0, 0.0) 0px 3px 6px;
}

/* a.navbar-brand {
    padding-top: 12px;
} */

@media (min-width: 992px) {
    a.navbar-brand {
        width: 139px;
        transform: translateY(-24%);
        position: absolute;
    }
}

/* 
@media (min-width: 1399px) {
    a.navbar-brand {
        width: 25px;
        transform: scale(6);
        transform-origin: left
    }
} */

@media (max-width: 991px) {
    a.navbar-brand {
        width: 60px !important;
        padding: 0px;
    }

    a.social-icon {
        border: 1px solid #69004C;
        padding: 3px 8px;
        border-radius: 6px;
    }
}

.bg-light-pink {
    background: #F8F1EA;
}

non

.text-brown {
    color: #69004C !important;
}

@media (max-width: 991px) {
    .navbar {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
}

.navbar p {
    font-family: var(--font-lora);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

/*footer*/

#footer {
    background: url('../img/footer-bg.png'), url('../img/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-logo {
    width: 270px;
}

.text-small {
    font-size: 15px !important;
}


@media(min-width: 992px) {
    .links ul {
        color: #fff;
        list-style: disc;
    }
}

    @media(max-width: 992px) {
        .links ul {
            color: #fff;
            list-style-type: none;
        }
    }

    .links ul li a {
        color: #fff;
    }


    .border-line {
        border: 1px solid #fff !important;
        opacity: unset !important;
    }

    .bg-footer-white {
        background: url('../img/footer-yantra-bg-img.png'), url('../img/footer-yantra-bg-img.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .content-shifts {
        padding-left: 180px;
    }

    @media(max-width: 1400px) {
        .content-shifts {
            padding-left: 148px;
        }
    }


    @media(max-width: 1200px) {
        .content-shifts {
            padding-left: 98px;
        }
    }

    @media(max-width: 992px) {
        .content-shifts {
            padding-left: 98px !important;
        }
    }

    @media(max-width: 576px) {
        .content-shifts {
            padding-left: unset !important;
        }
    }

    .link-purple-hover:hover {
        color: #69004C;
    }

    .text-purple {
        color: #69004C;
    }


    /*home*/

    /*#home-banner #banner-1
{
    background: url('../img/proyantra-llp-banner-bg-img.png'), url('../img/powerful-proyantra-energy-activation-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#home-banner #banner-2
{
    background: url('../img/proyantra-llp-banner-bg-img.png'), url('../img/powerful-proyantra-energy-activation-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
*/
    #home-banner .banner-slide {
        position: relative;
    }

    @media (min-width:992px) {
        #home-banner .banner-slide .banner-content {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .owl-carousel .owl-item img {
            height: 580px;
            object-fit: cover;
        }
    }

    @media (max-width:992px) {
        #home-banner .banner-slide .banner-content {
            background: #F8F1EA
        }
    }

    @media (max-width:992px) {
        .owl-carousel .owl-item img {
            height: 300px;
            object-fit: cover;
            background: #fff !important;
            color: #fff;
        }
    }

    .font-bolder {
        font-weight: 600;
    }


    /* krishna */

    /* Inner Page Title Banner */
    .custom-banner {
        background: url("../img/proyantra-first-title-banner.png") no-repeat center center;
        background-size: cover;
        min-height: 180px;
        color: #000;
        position: relative;
    }

        .custom-banner h2 {
            font-size: 1.8rem;
        }

    /* Contact Form Css */
    .contact-form-wrapper {
        padding: 35px;
        border-radius: 25px;
        border: 1px solid #69000C;
    }

        .contact-form-wrapper input,
        .contact-form-wrapper select {
            padding: 12px;
            border: 1px solid black;
        }

        .contact-form-wrapper textarea {
            border: 1px solid black;
        }

    /* Customized Products Page */
    .customized-products-form {
        padding-right: 120px;
        padding-left: 120px;
    }

    /* Contact Us Page */
    .contact-card {
        background: #f8f1ea;
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .contact-icon {
        background: #69004c;
        color: #fff;
        font-size: 24px;
        padding: 12px;
        border-radius: 10px;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
    }

        .contact-icon img {
            height: 28px;
        }

    .contact-info h6 {
        margin: 0;
        font-weight: bold;
        color: #690046;
    }

    .contact-details {
        padding-right: 100px;
    }

        .contact-details h3 {
            margin-top: 35px;
        }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .custom-banner {
            min-height: 120px;
            padding: 20px 0;
        }

            .custom-banner h2 {
                font-size: 1.4rem;
            }

            .custom-banner p {
                font-size: 0.85rem;
            }
    }

    @media (max-width: 576px) {
        .contact-form-wrapper {
            padding: 15px;
        }

        .contact-submit-btn {
            margin-bottom: 15px;
        }
    }

    @media (max-width: 372px) {
        .custom-banner h2 {
            font-size: 20px;
        }
    }

    @media (max-width: 1400px) {
        .customized-products-form {
            padding-right: 12px;
            padding-left: 12px;
        }
    }

    @media (max-width: 992px) {
        .contact-details {
            padding-right: 10px;
        }

            .contact-details h3 {
                margin-top: 0px;
            }
    }

    @media (min-width: 992px) and (max-width: 1400px) {
        .contact-details {
            padding-right: 50px;
        }
    }

    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 .25rem #69004c47 !important;
    }

    .content-down {
        margin-top: 108px;
    }

    @media (max-width:992px) {
        .content-down {
            margin-top: 75px;
        }
    }

    .text-purple {
        color: #69004C;
    }

    /*banner*/

    #inner-banner {
        background: url(../img/banner-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 117px;
        width: 100%;
    }


    @media (max-width: 991px) {
        #inner-banner {
            margin-top: 75px;
        }
    }


    .heading-space-inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .text-custom-bold {
        font-weight: 600 !important;
        font-family: var(--font-nunito) !important;
    }

    .active {
        color: #69004C !important;
        font-weight: 600 !important;
    }

    #footer ul li a.active {
        color: #fff112 !important;
        font-weight: 600 !important;
    }

    #header ul li .nav-link {
        color: #1A1A1A;
        font-size: 16px;
        margin-top: 10px;
        padding-inline: 10px
    }

    .custom-breadcrumb a {
        font-size: clamp(16px, 2vw, 20px);
        line-height: 1.4em;
        font-family: var(--font-lora);
    }

    @media(max-width: 992px) {
        .proyantra-energy-img img {
            width: 350px !important;
        }
    }

    @media(max-width: 576px) {
        .proyantra-energy-img img {
            width: 270px !important;
        }
    }

    .modal-body input {
        padding-block: 13px;
    }

    @media (max-width: 767px) {
        .modal-body input {
            padding-block: 11px;
        }
    }

    .modal-body .form-control:focus,
    .modal-body .form-select:focus {
        box-shadow: 0 0 0 .25rem #69004c00 !important;
    }

    .translate-middle {
        transform: scale(0.8) translate(-50%, -50%) !important;
    }


/* Section */

.prg-section {
    position: relative;
    padding: 90px 0;
    background: url('../img/privacy-result-guarantee-bg-img.png') no-repeat center center/cover;
    z-index: 1;
}

.prg-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(122, 106, 92, 0.15);
    box-shadow: 0 10px 30px rgba(122, 106, 92, 0.08);
    position: relative;
    overflow: hidden;
}
    .prg-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #4F2940, #76415370);
        transition: all 0.4s ease;
    }

    .prg-card:hover::before {
        left: 0; /* THIS is required */
    }

    /* Hover */
    .prg-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(122, 106, 92, 0.2);
    }

/* Icon */
.icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f1ea;
    border-radius: 50%;
    transition: 0.3s ease;
}

    .icon-box img {
        width: 60px;
    }

/* Icon hover */
.prg-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: #efe4da;
}

/* Text */
.prg-card h5 {
    color: #69004C;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    font-size: clamp(16px, 2vw, 15px);
}

/* Responsive */
@media (max-width: 768px) {
    .prg-section {
        padding: 70px 0;
    }

    .prg-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .prg-card h5 {
        font-size: 1rem;
    }
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    color: #fff !important;
}

#top-products .owl-theme .owl-nav [class*=owl-]:hover {
    background: #69004C !important;
}

#top-products {
    background: url('../img/top-products-bg-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header ul li a:hover {
    color: #69004C !important;
}


.bg-about, #about-visionary-leadership {
    background: url(../img/about-us-bg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.abt-content {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#about-visionary-leadership .inner-img {
    float: left;
    width: 42%;
    min-width: 300px;
    margin-right: 30px;
}

@media (max-width: 992px) {
    #about-visionary-leadership .inner-img {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}

#inner-banner h2, #inner-banner h6, #inner-banner h6 a{
    color: #fff !important;
}