/*=============== NIAGRA CSS ===========*/

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'SolaimanLipi';
    src: url(../fonts/SolaimanLipi_20-04-07.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --headr-footer: #0a1f44;
    --mainBg: #f5f7fa;
    --btn-color: #007bff;
    --white: #fff;
    --semi-white: #eee;
    --niagra-colo: #d48e2f;
    /* ==== z-index ==== */
    --z-index-normal: 100;
    --z-index-highest: 200;
}

/* ============ home navigation and home banner =========== */

.cm-navigation {
    position: relative;
    padding: 0 100px;
    background: var(--white);
}

.cm-navigation .cm-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.cm-header .logo {
    position: relative;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-header .logo a {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-header .logo a img {
    width: 100%;
}

.cm-header button {
    display: none;
}

.nav-midd {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-header ul {
    position: relative;
    padding: 0;
    margin: auto;
    display: flex;
}

.cm-header ul li {
    position: relative;
    list-style: none;
    padding: 10px 0;
}

.cm-header ul li a {
    text-decoration: none;
    padding: 0 20px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.38);
}

.cm-header ul li a:hover {
    color: rgba(0, 0, 0, 1);
}

.cm-header ul li ul {
    position: absolute;
    width: 200px;
    top: 42px;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    z-index: var(--z-index-normal);
    transition: 0.5s;
}

.cm-header ul li:hover ul {
    opacity: 1;
    visibility: visible;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-top: none;
}

/* ============ End home navigation and home banner =========== */

/* ============ sub (another pages) pages navigation and banner =========== */

.cm-sub-navigation {
    position: relative;
    border-bottom: 5px solid #5ac0cd;
}

.cm-sub-navigation .cm-header {
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--headr-footer);
}

.cm-sub-navigation .nav-menu-right ul {
    margin-top: 5px;
    display: flex;
    gap: 20px;
}

.cm-sub-navigation .nav-menu-right ul li {
    border-radius: 30%;
}

.cm-sub-navigation img {
    width: 100%;
}

/* ============ End sub pages navigation and banner =========== */
/* ============= start home page ================= */
.main {
    position: relative;
    background: var(--mainBg);
}

.carosel-middle-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carosel-middle-content img {
    width: 800px;
    transform: scale(0.6);
    filter: blur(5px);
}

.speci-content {
    position: relative;
    margin-left: 15%;
    z-index: var(--z-index-normal);
}

.speci-content h1 {
    position: absolute;
    top: 70px;
    left: 0;
    font-family: "Dancing Script", serif;
    background: linear-gradient(90deg, #f34b36, #b663fc, #0b8df7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 7em;
    letter-spacing: 15px;
    white-space: nowrap;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: textAnimate 5s linear infinite;
}

@keyframes textAnimate {

    0%,
    20% {
        color: var(--white);
        opacity: 1;
    }

    20.000001%,
    90% {
        filter: hue-rotate(360deg);
        opacity: 1;
    }

    90.000001%,
    95% {
        opacity: 0.7;
    }

    95.000001%,
    97% {
        opacity: 0.5;
    }

    97.000001%,
    99% {
        opacity: 0.2;
    }

    99.000001%,
    100% {
        opacity: 0;
    }
}

.speci-content span {
    position: relative;
    color: var(--niagra-colo);
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
    font-size: 5.5em;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 0 15px;
}

.about {
    position: relative;
}

.about-cont {
    position: relative;
    text-align: center;
}

.about-cont h1 {
    margin: auto;
    width: 350px;
    padding-top: 30px;
    font-weight: bolder;
}

.about-cont span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 10px;
    background: linear-gradient(to left, #16619a, transparent);
}

.about-cont .content {
    position: relative;
    margin: 20px auto 0;
}

.about-cont .content p {
    position: relative;
    margin: 0 auto 20px;
    width: 50%;
    text-align: justify;
    font-size: 14px;
    z-index: var(--z-index-normal);
}

.about-cont .content p:nth-child(2) {
    display: none;
    transition: 1s;
}

.about-cont .content a {
    position: relative;
    padding: 7px 12px;
    background: var(--btn-color);
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    z-index: var(--z-index-normal);
    transition: 0.5s;
    border-radius: 5px;
}

.about-cont .content a:hover {
    letter-spacing: 1.5px;
}

.about-cont .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, transparent, rgb(244, 180, 180), transparent);
}

.about-cont .img img {
    transform: scale(0.8);
    border-radius: 30px;
}

.div-separator {
    width: 100%;
    height: 0.8em;
    background: var(--white);
}

.prod-features {
    position: relative;
    display: flex;
    flex-direction: column;
}

.prod-feature-inner {
    position: relative;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-feature-img {
    position: relative;
    width: 50%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-feature-img .prod-overlay {
    position: absolute;
    width: 100%;
    height: 125%;
    background: linear-gradient(to left, #c81743 -5%, transparent, transparent);
    border-radius: 50%;
}

.prod-feature-img img:nth-child(2) {
    position: absolute;
    top: calc(10% + 60px);
    left: 20%;
    z-index: var(--z-index-normal);
}

.prod-feature-img img:nth-child(3) {
    position: absolute;
    top: calc(10% + 0px);
    left: 35%;
}

.prod-feature-title {
    position: relative;
    width: 50%;
    padding: 50px;
}

.prod-feature-title h2 {
    padding: 5px;
    width: 500px;
    font-family: 'Solaimanlipi';
    color: var(--white);
    text-align: center;
    background: #16619a;
    border-radius: 3px;
}

.prod-feature-title ul {
    position: relative;
    margin-top: 30px;
}

.prod-feature-title ul li {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 5px 0;
}

.prod-feature-title ul li .fa-check {
    font-size: 40px;
    color: #16619a;
}

.need-help-sec {
    position: relative;
    margin-top: 130px;
    padding-right: 50px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #800000;
}

.need-img-bx {
    position: relative;
    transform: scale(0.4);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 0 50px var(--white),
        inset 0 5px 5px rgba(0, 0, 0, 0.9),
        inset 0 -5px 5px rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    border: 10px solid var(--white);
}

.need-help-sec a {
    text-decoration: none;
    color: var(--white);
}
.call-us{
	font-size: 20px;
	color: #fff;
}
.whatsapp {
	width: 30px;
    cursor: pointer;
    border-radius: 50%;
}
.call-us a{
	text-decoration: none;
	color: #fff;
}
.call-us .fa-mobile {
	color: #40c351;
} 
.common-ask-ans-sec {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.common-ask-ans-sec h1 {
    font-family: 'Solaimanlipi';
    width: 75%;
    direction: rtl;
}

.common-ask-ans-sec span {
    position: relative;
    width: 75%;
    height: 10px;
    background: linear-gradient(to left, #16619a, transparent);
}

.common-ask-ans-contai {
    position: relative;
    padding: 30px 20px 0;
}

.common-ask-ans-contai-inner {
    position: relative;
    margin: auto;
    width: 75%;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 100px;
}

.common-ask-ans-contai ul {
    position: relative;
    width: 100%;
}

.common-ask-ans-contai ul li {
    list-style: none;
    text-align: right;
}

.common-ask-ans-contai ul li label {
    font-weight: bold;
    text-shadow: 0 0 1px rgba(0, 0, 0, 1);
}

.ans-block ul {
    position: relative;
    padding-right: 20px;
    box-shadow: none;
}

.ans-block ul li {
    position: relative;
    padding-bottom: 15px;
    list-style: disc;
    direction: rtl;
}

.ans-block ul li:nth-child(2) {
    padding-bottom: 45px;
}

.ans-block ul li span {
    position: absolute;
    width: 100%;
    background: transparent;
    right: -7px;
}

.ans-block ul li::marker {
    padding-right: 50px;
    font-size: 25px;
}

.query-details {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.query-details .box {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(to bottom, #c81743 -5%, transparent, transparent);
    border-radius: 50%;
}

.query-details .box img {
    transform: scale(0.69);
}

.query-details .box a {
    position: absolute;
    top: 55%;
    left: 50%;
    padding: 20px 110px;
    transform: translateX(-50%);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--white);
    background: var(--btn-color);
    text-decoration: none;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.query-details .box a:hover {
    color: rgba(0, 0, 0, 0.2);
}

/* ====== End home page ============= */

/* ========== start products faq page ============= */
.sub-main {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    background: var(--mainBg);
}

.sub-main h1 {
    margin-top: 65px;
    font-family: 'SolaimanLipi';
    font-size: 35px;
    font-weight: 600;
}

.sub-main h1::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 5px;
    background: var(--white);
    border-radius: 5px;
}

.info-source {
    position: absolute;
    top: -200px;
    right: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #c817c8;
    z-index: var(--z-index-normal);
    transition: top 2s;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 5px 5px 30px -10px rgba(0, 0, 0, 1),
        -5px -5px 10px -10px rgba(0, 0, 0, 1),
        -10px -10px 30px rgba(255, 255, 255, 1),
        -15px -15px 60px rgba(255, 255, 255, 1),
        inset 10px 10px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.info-source h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.info-source .info-links {
    position: absolute;
    top: -175px;
    right: 30px;
    width: 230px;
    height: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.33);
}

.info-links::after {
    content: '';
    right: 10px;
    bottom: -15px;
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 10px solid var(--white);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.info-source .info-links.active {
    visibility: visible;
    opacity: 1;
}

.info-links span {
    position: absolute;
    top: -0.5px;
    right: 5px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 15px;
}

.info-links h3 {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.35);
}

.info-links a {
    margin: 8px 30px;
    padding: 4px 0;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.2);
    font-size: 15px;
    color: var(--white);
    border-radius: 5px;
    transition: 0.5s;
}

.info-links a:hover {
    background: #c81743;
}

.sub-main ul {
    position: relative;
    width: 60%;
    padding-left: 0;
}

.sub-main ul li {
    position: relative;
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 10px;
    background: linear-gradient(to bottom, #f7dc6f, var(--white));
    border-radius: 5px;
}

.sub-main ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'SolaimanLipi';
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.sub-main ul li label span {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
}

.faq-inner-contents {
    position: relative;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--semi-white);
    border-radius: 3px;
    transition: max-height 0.5s;
}

.faq-inner-contents p {
    font-family: 'SolaimanLipi';
    font-size: 15px;
    font-weight: 500;
}

.faq-inner-contents.active {
    padding: 20px;
    max-height: 1400px;
}

.faq-inner-contents ul {
    position: relative;
}

.faq-inner-contents ul li {
    list-style-type: disc;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
}

.faq-inner-contents .poramorsho {
    color: #4a235a;
    font-weight: bold;
}

.poramorsho span {
    color: #4a235a;
    font-size: 20px;
    font-weight: bold;
}

/* ========== End products faq page ============= */
/* ============ contact ============ */
.contact-container {
    position: relative;
    background: var(--mainBg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-container h1 {
    padding-top: 50px;
    color: var(--btn-color);
    text-shadow: 0 0 3px rgba(0, 0, 0, 1);
    font-size: 2.3em;
    letter-spacing: 0.5px;
}

.contact-container form {
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
}

.contact-container form .inputBx {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-container form .inputBx label {
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 1px;
}

.contact-container form .inputBx label sup {
    color: #f00;
}

.contact-container form .inputBx input {
    margin: 1px 0 20px;
    width: 500px;
    padding: 10px;
    border: 1.5px solid rgba(0, 0, 0, 0.09);
    outline: none;
}

.contact-container form .inputBx textarea {
    width: 100%;
    height: 250px;
    border: 1.5px solid rgba(0, 0, 0, 0.09);
}

.contact-container form button {
    margin-top: 30px;
    padding: 7px 50px;
    color: var(--white);
    background: var(--btn-color);
}

.contact-container form button:hover {
    background: #0b8df7;
}

/* ============ End contact ============ */
/* ============ start footer page ============= */
.foot-cont {
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    background: var(--headr-footer);
}

.foot-cont .top-sec {
    position: relative;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
}
.top-sec .call-us a{
	font-size: 14px;
}
.top-sec h1 {
    user-select: none;
}

.top-sec h1:nth-child(1) {
    position: relative;
    font-size: 60px;
    color: var(--niagra-colo);
}

.top-sec h1:nth-child(1) small {
    position: absolute;
    top: 35px;
    left: 50px;
    font-family: "Dancing Script", serif;
    white-space: nowrap;
    color: var(--white);
    text-shadow: 0 0 5px rgba(0, 0, 0, 7);
}

.top-sec h1:nth-child(3) {
    font-size: 20px;
}

.top-sec h1:nth-child(3) small {
    font-size: 17px;
    font-weight: 100;
}

.top-sec .box-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.box-img img {
    transform: scale(0.38);
}

.box-img::before {
    content: '';
    position: absolute;
    top: 0;
    width: 400px;
    height: 250px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white,
        5px 5px 40px white;
}

.box-img img:nth-child(1) {
    position: absolute;
    top: 0;
    z-index: var(--z-index-highest);
}

.box-img img:nth-child(2) {
    position: absolute;
    top: -40px;
    left: -175px;
}

.midle-sec {
    position: relative;
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.midle-sec ul {
    padding: 0 80px;
}

.midle-sec ul li a {
    color: var(--white);
    text-decoration: none;
}

.end-sec {
    position: relative;
    text-align: center;
}

.end-sec p {
    margin: auto;
    width: 800px;
    padding: 10px;
    border-top: 10px solid white;
}

/* ============ End footer page ============= */

/* ===================== start responsive design ============== */
@media screen and (max-width: 1024px) {
    .side-ab {
        width: 310px;
    }

    .side-ab h1 {
        font-size: 3em;
    }

    .side-ab h1 span {
        bottom: 0;
    }

    .side-ab img {
        transform: scale(0.5) !important;
    }

    .ab-contai {
        padding: 0 !important;
    }

    .ab-contai span {
        width: 100%;
    }

    .ab-contai p {
        padding: 0 !important;
    }

    .prod-feature-title h2 {
        width: 400px;
        font-size: 25px;
    }

    .need-img-bx {
        margin-left: -100px;
    }
}

@media screen and (max-width: 991px) {

    /* carosel content */

    .carosel-middle-content {
        flex-direction: column;
    }

    .carosel-middle-content img {
        position: relative;
        margin: calc(8% + 0px) 0 auto;
    }

    .speci-content {
        position: relative;
        margin: auto;
    }

    .speci-content h1 {
        top: calc(100% + 250px);
        left: 50%;
        transform: translateX(-50%);
        font-size: 4em;
    }

    .speci-content span {
        position: absolute;
        top: calc(100% + 165px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* need help from home page */
    .need-img-bx {
        display: none;
    }

    .need-help-sec {
        padding: 0;
    }

    .need-help-sec .call-us {
		margin: auto;
        text-align: center;
    }
}

@media screen and (max-width: 800px) {

    /* headeer */

    .cm-header button {
        position: absolute;
        right: 0;
        border: none;
        outline: none;
        background: transparent;
        display: block;
    }

    .cm-header button i {
        font-size: 25px;
        color: rgba(0, 0, 0, 0.38);
    }

    .cm-header button:hover i {
        color: rgba(0, 0, 0, 1);
    }

    .nav-midd {
        display: none;
    }

    .nav-midd.responsiv-nav-div {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 220px;
        height: 20vh;
        background: rgb(128, 128, 128);
        border-right: 5px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        z-index: var(--z-index-highest);
    }

    .nav-midd.responsiv-nav-div.active {
        display: block;
    }

    .cm-header ul {
        flex-direction: column;
    }

    .cm-header ul li a {
        color: rgba(0, 0, 0, 1);
    }

    .cm-header ul li ul {
        width: 100%;
        top: 35px;
    }

    /* home content product feature */
    .prod-feature-img {
        display: none;
    }

    .prod-feature-title {
        width: 100%;
    }

    /* home page commons questions and ask section */
    .common-ask-ans-contai-inner {
        flex-direction: column;
        gap: 0;
    }

    .common-ask-ans-contai ul {
        width: 100%;
    }

    .common-ask-ans-contai .query-details {
        width: 100%;
    }

    /* footer section */
    .top-sec .box-img {
        display: none;
    }

    .end-sec p {
        width: 100%;
    }

    /* for niagra page */

    .sub-main ul {
        width: 90%;
    }

}

@media screen and (max-width: 540px) {

    /* header */
    .cm-navigation {
        padding: 0 10px;
    }

    .nav-midd.responsiv-nav-div {
        height: 30vh;
    }

    .carosel-middle-content img {
        width: 300px;
    }

    .speci-content h1 {
        top: calc(100% + 80px);
        font-size: 2em;
    }

    .speci-content span {
        top: calc(100% + 0px);
        font-size: 4.5em;
    }

    /* about content */
    .about-cont h1 {
        width: 290px;
        font-size: 60px;
    }

    .about-cont .content {
        padding-bottom: 25px;
    }

    .about-cont .content p {
        width: 90%;
        margin-bottom: 20px;
    }

    .about-cont .img {
        display: none;
    }

    /* home content product feature */
    .prod-feature-inner {
        margin-top: 30px;
    }

    .prod-feature-title {
        padding: 0;
    }

    .prod-feature-title h2 {
        width: 300px;
        text-align: left;
        padding-left: 10px;
        font-size: 18px;
    }

    .prod-feature-title ul {
        padding-right: 5px;
    }

    /* ======= need help ======= */
    .need-help-sec {
        margin-top: 0;
        height: 150px;
    }

    /* home page commons questions and ask section */
    .common-ask-ans-sec h1 {
        width: 85%;
    }

    .common-ask-ans-sec span {
        width: 90%;
    }

    .common-ask-ans-contai-inner {
        width: 90%;
    }

    .common-ask-ans-contai-inner ul {
        padding-left: 0;
    }

    .common-ask-ans-contai-inner .ans-block:nth-child(2) ul li {
        margin-bottom: 30px;
    }

    .query-details .box {
        height: 250px;
    }

    .query-details .box img {
        transform: scale(0.54);
    }

    .query-details .box a {
        padding-left: 90px;
        padding-right: 90px;
    }

    /* ===== niagra ===== */
    .sub-main h1 {
        margin-top: 20px;
        font-size: 25px;
    }

    /* ===== End niagra ===== */
    /* ======= contact us ====== */
    .contact-container form .inputBx input {
        width: 300px;
    }

    /* ======= End contact us ====== */
    /* footer section */
    .foot-cont .top-sec {
        flex-direction: column;
        gap: 15px;
    }

    .top-sec h1 a {
        font-size: 18px;
    }

    .midle-sec {
        margin-top: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

}

/* ===================== End responsive design ============== */