@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0%;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    width: 8px;
    background: rgb(184, 184, 184, .2);
}

body::-webkit-scrollbar-thumb {
    width: 8px;
    background: rgba(206, 31, 153);
}

:root {
    --al-title-family: 'Philosopher', sans-serif;
    --al-global-family: 'Inter', sans-serif;
    --al-main-bg: #031d2e;
    --al-main-bg: #07273c;
    --al-alternate-bg: #17384e;
    --al-dark: #07273c;
    --al-dark2: #10334a;
    --al-dark3: #234a64;
    --al-font-color: #e5f0f5;
    --al-title-color: var(--al-white);
    --al-white: #ffffff;
    --al-offf-white: rgb(255 255 255 / 10%);
    --al-primary-color: #ff7010;
    --al-primary-light: #e66712;
    --al-border-color: rgb(255 255 255 / 8%);
    --al-input-border: #375b72;
    --al-input-bg: #10334a;
    --al-yellow: #ffaa17;
    --al-green: #53d575;
    --al-wishlist: #ff6695;
    --al-footer-bg: #242b3d;
    --al-placeholder: #97b0c1;
    --al-placeholder: rgb(255 255 255 / 45%);
    --al-submenu-bg: #04131d;
    --al-sub-menu-bg: #01090e;
    --al-radius0: 0;
    --al-input-radius: 0px;
    --al-textarera-radius: 0px;
    --al-radius-comman: 3px;
    --al-radius10: 10px;
    --al-circle-radius: 50%;
    --al-page-title-font: 50px;
    --al-font-size: 14px;
    --al-font14: 14px;
    --al-font16: 16px;
    --al-font18: 18px;
    --al-font20: 20px;
    --al-font24: 24px;
    --al-font34: 34px;
    --al-font36: 36px;
    --al-title-size: 32px;
    --al-sub-title-size: 26px;
    --al-widgets-title-size: 22px;
    --al-shadow: 0 0 30px rgb(255 255 255 / 3%);
    --al-transition: all 0.3s ease-in-out;
    --al-page-title-bg: #09243b;
    --al-footer-bg: #031d2e;
    --al-gradient-color1: rgb(244, 170, 54);
    --al-gradient-color2: rgb(243, 115, 53);
    --al-header-bg-color: transparent;
    --al-copyright-bg: #17384e;
    --al-btn-hover-bg: #234a64;
    --al-btn-radius: 0px;
    --top-header-bg: transparent;
    --top-header-color: #ffffff;
}

nav {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    background: #07273c; 
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    z-index: 999999;
}

nav img {
    width: 260px;
    margin-left: 9%;
    height: 70px;
}
nav .ul_search {
    display: flex;
    align-items: center;
}

nav .ul_search ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav .ul_search ul li {
    padding: 3px 10px;
    position: relative;
    overflow: hidden;
}
nav .ul_search ul li .show_list {
    position: absolute;
    top: 30px;
    left: -58px;
    height: 0;
    padding: 10px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
    transition: .3s linear;
}
nav .ul_search ul li:hover {
    overflow: unset;
}
nav .ul_search ul li:hover .show_list{
    height: 250px;
    opacity: 1;
}
/* nav .ul_search ul li .show_list_active{
    height: 250px;
    opacity: 1;
} */

nav .ul_search ul li .show_list::before {
    content: '';
    position: absolute;
    width: 100%;
    height:100%;
    border-radius: 5px;
    background: rgb(138 158 147);
    /* background: rgb(184, 184, 184, 1); */
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 20px;
}
nav .ul_search ul li .show_list a{
    position: relative;
    font-size: 12px;
    padding: 10px 0;
}
nav .ul_search ul li .show_list a::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1   100%);
    top: 0;
    left: 0;
    border-radius: 0 0 3px 3px;
    transition: .3s linear;
    margin: auto;
}

nav .ul_search ul li:nth-child(1) a {
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1   100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: unset;
    /* -webkit-text-fill-color: transparent; */
}

nav .ul_search ul li a {
    position: relative;
    color: var(--al-title-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
}

nav .ul_search ul li a::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1   100%);
    top: -31.5px;
    left: 0;
    border-radius: 0 0 3px 3px;
    transition: .3s linear;
    margin: auto;
}

nav .ul_search ul li a:hover::before {
    width: 100%;
}

nav .ul_search ul li:nth-child(1) a::before {
    width: 100%;
}

/* nav .ul_search ul li a:hover {
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1  100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
/* #8c9f95 0%, #f0f2f1  */

nav .ul_search ul li .search {
    display: none;
    align-items: center;
}
nav .ul_search ul .login {
    text-decoration: none;
    color: #000;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    background: linear-gradient(0deg, #8c9f95 0%, #f0f2f1 100%) #f0f2f1;
    transition: .3s linear;
}

nav .ul_search .search input {
    border: none;
    outline: none;
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;
    width: 150px;
    margin-left: 30px;
}

nav .ul_search .search i {
    border: none;
    outline: none;
    background: linear-gradient(90deg, var(--al-gradient-color1) 0%, var(--al-gradient-color2) 100%);
    fill: var(--al-white);
    width: 50px;
    cursor: pointer;
    position: relative;
    padding: 2px 9px;
    margin: 0px 0px 0px -5px !important;
    color: #fff;
    top: 1.3px;
    border-radius: 0 5px 5px 0;
    transition: .3s linear;
}
nav .ul_search .search a {
    text-decoration: none;
    color: #000;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    background: linear-gradient(0deg, #8c9f95 0%, #f0f2f1 100%) #f0f2f1;
    transition: .3s linear;
}
nav .ul_search .search a:hover {
    background: #8c9f95;
}

header {
    width: 100%;
    position: relative;
    /* top: 60px; */
    height: 100vh;
}

header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/New-Project-1.jpg)no-repeat center center/cover;
    z-index: -1;
}

header .header {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;

}

header .left_bx,
.right_bx {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* border: 1px solid #000; */
}

header .left_bx .content {
    position: relative;
}

header .left_bx .content h1:nth-child(1) {
    font-family: Raleway;
    color: rgb(255, 255, 255);
    line-height: 44px;
    letter-spacing: 7.9667px;
    font-weight: 300;
    font-size: 36px;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Raleway', sans-serif;
}

header .left_bx .content h1:nth-child(2) {
    font-family: Raleway;
    color: rgb(255, 255, 255);
    letter-spacing: 7.9667px;
    font-weight: 800;
    font-size: 44px;
    margin-top: 15px;
}

header .left_bx .content p:nth-child(3) {
    font-family: "Noto Sans";
    text-align: left;
    line-height: 24px;
    letter-spacing: 6.3733px;
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    position: relative;
    color: #fff;
}

header .left_bx .content .line {
    position: relative;
    margin-top: 20px;
}

header .left_bx .content .line h6 {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 63%;
    left: 0;
    background: #fff;
    position: absolute;
}

header .left_bx .content .line h6:nth-child(2) {
    left: 100px;
}

header .left_bx .content .line h6:nth-child(2)::before {
    content: '';
    width: 70px;
    height: 5px;
    border-radius: 3px;
    position: absolute;
    background: #fff;
    left: -83px;
}

header .left_bx .content .pra {
    color: #fff;
    margin-top: 60px;
    width: 500px;
    font-size: 13px;
}

header .left_bx .content button {
    background: linear-gradient(0deg, #8c9f95 0%, #f0f2f1 100%) #f0f2f1;
    font-family: Roboto;
    color: #000;
    line-height: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: #8c9f95 0px 5px 20px 0px;
    padding-left: 32px;
    padding-right: 32px;
    filter: brightness(120%);
    border: none;
    cursor :Pointer;
    margin-top: 30px;
    transition: .3s linear ;
}

header .left_bx .content button:hover {
    background: #f0f2f1;
}

header .left_bx .content button a {
    color: #000;
    text-decoration: none;
}

header .right_bx img {
    width: 90%;
    margin-top: 10%;
    animation: cir 15s linear infinite;
}

@keyframes cir {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


header .right_bx .uni {
    position: absolute;
    right: 0;
}

header .right_bx .uni h2 {
    width: 30px;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 4px 5px #8c9f95;
    text-align: center;
    transition: .3s linear;
}

header .right_bx .uni h2 {
    width: 30px;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 4px 5px #8c9f95;
    text-align: center;
    transition: .3s linear;
    font-size: 27px;
}

header .right_bx .uni h2 {
    width: 30px;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 4px 5px #8c9f95;
    text-align: center;
    transition: .3s linear;
    font-size: 27px;
}

header .right_bx .uni:hover h2 {
    color: #8c9f95;
}

.social_mail {
    position: absolute;
    bottom: 20px;
    left: 7.5%;
    color: #fff;
}

.social_mail .social {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.social_mail .social a {
    text-decoration: none;
    margin-right: 10px;
    font-size: 11px;
    color: #000;
    background: #ffff;
    padding: 2px 3px 0px 3px;
    border-radius: 5px;
    transition: .3s linear;
}

.social_mail .social a:hover {
    background: #000;
    color: #fff;
}

.social_mail a {
    text-decoration: none;
    color: #fff;
}

.social_mail h6 {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 1.3px;
}

.know_about {
    background: #061528;
    width: 100%;
    height: auto;
}

.know_about .know_about_2 {
    width: 85%;
    margin: auto;
    display: flex;
    /* border: 1px solid #fff; */
    padding-top: 40px;
    padding-bottom: 100px;
}

.know_about .know_about_2 .left_know_bx,
.right_know_bx {
    width: 85%;
    margin: auto;
    display: flex;
    /* border: 1px solid #fff; */
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.know_about .know_about_2 
.right_know_bx h6 {
    font-size:13px;
}

.know_about .know_about_2 .left_know_bx .img_bx_know {
    position: relative;
    width: 85%;
    /* border: 1px solid #fff; */
}

.know_about .know_about_2 .left_know_bx .img_bx_know img {
    width: 100%;
}

.know_about .know_about_2 .right_know_bx {
    align-items: unset;
    justify-content: unset;
    display: unset;
}

.know_about .know_about_2 .right_know_bx h1 {
    font-size: 35px;
    font-weight: 500;
    margin: 0;
    color: var(--al-title-color);
    position: relative;
    padding: 0 0 15px;
    font-family: 'Philosopher', sans-serif;
    position: relative;
}

.know_about .know_about_2 .right_know_bx h1::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1 100%);
    top: 50px;
}

.know_about .know_about_2 .right_know_bx h6 {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 30px;
    font-weight: 500;
}

.know_about .know_about_2 .right_know_bx h6:nth-child(2) {
    color: #fff;
    margin-top: 30px;
}

.know_about .know_about_2 .right_know_bx h6:nth-child(3) {
    color: #fff;
    margin-top: 10px;
}


.know_about .know_about_2 .right_know_bx .al-btn {
    padding: 13px 20px;
    background: linear-gradient(0deg, #8c9f95 0%, #f0f2f1 100%);
    color: #000 ;
    font-weight: 600;
    font-size: var(--al-font-size);
    min-width: 170px;
    text-align: center;
    border-radius: var(--al-radius0) !important;
    transition: .3s linear;
    letter-spacing: 1px;
    border-radius: var(--al-btn-radius) !important;
    position: relative;
    top: 50px;
    text-decoration: none;
}

.know_about .know_about_2 .right_know_bx .al-btn:hover {
    background: #f0f2f1 ;
    color: #8c9f95;
}


.zodiac_sign {
    width: 100%;
    height: auto;
    background: url('../img/New-Project-4.jpg')no-repeat center center/cover;
    padding: 80px 0;
}

.zodiac_sign h1:nth-child(1) {
    text-align: center;
    color: #fff;
    position: relative;
    font-family: 'Philosopher', sans-serif;
    width: fit-content;
    margin: 0 auto;
}

.zodiac_sign h1:nth-child(1):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1 100%);
    border-radius: 10px;
    top: 120%;
    left: unset !important;
     right: unset;
    margin: 0 auto !important;
}

.zodiac_sign p:nth-child(2) {
    text-align: center;
    width: 75%;
    margin: auto;
    color: #fff;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
}

.zodiac_sign .cards {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: 50px;
    margin: auto;
    scroll-behavior: smooth;
}

.zodiac_sign .cards .card {
    width: 170px;
    height: 150px;
    border: 1px solid rgb(255 255 255 / 10%);
    margin: 10px;
    border-radius: 10px;
    background: rgb(9, 36, 59);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    position: relative;
}

.zodiac_sign .cards .card h1 {
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 10px 0;
}

.zodiac_sign .cards .card p {
    width: 0;
    height: 0;
    position: absolute;
    color: #fff;
    font-size: 11px;
    word-break: break-all;
    padding: 10px;
    background: #09243b;
    overflow: auto;
    margin: 5px;
    z-index: -9999;
    opacity: 0;
    bottom: 95%;
    right: 0;
    transition: .3s linear;
}

.zodiac_sign .cards .card p::-webkit-scrollbar {
    display: none;
}

.zodiac_sign .cards .card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 14px;
    color: #fff;
}

.zodiac_sign .cards .card img {
    background: rgb(6, 21, 40);
    border-radius: 50%;
    padding: 10px;
    transition: .3s linear;
}

/* .zodiac_sign .cards .card:hover img {
    background: #787878;
    transform: rotate(360deg);
} */


.zodiac_sign .cards .card:hover p {
    width: 300px;
    padding: 10px;
    height: auto;
    bottom: 110%;
    right: -50%;
    z-index: 99999;
    opacity: 1;
    box-shadow: 0 0 20px rgb(255,255,255,.2);
    border-radius: 10px;
}

.zodiac_sign .cards .card:hover p {
    z-index: 99999;
    opacity: 1;
}
.zodiac_sign .cards .card svg {
    background: rgb(6, 21, 40);
    border-radius: 50%;
    padding: 10px;
    width: 55px;
    height: 55px;
    transition: .3s linear;
}

/* .zodiac_sign .cards .card:hover svg {
    background: #8c9f95;
}

.zodiac_sign .cards .card:hover {
    background: linear-gradient(to bottom, #8c9f95 2%, #f0f2f1  100%);
    border-color: rgb(255 255 255 / 8%);
} */

.zodiac_sign2 {
    background: rgb(6, 21, 40);
    transition: .3s linear;
}

.zodiac_sign2 .cards  {
    transition: .3s linear;
}
.zodiac_sign2 .cards .card2 {
    width: 300px;
    flex-direction: unset;
    transition: .3s linear;
}

.zodiac_sign2 .cards .card2 h1 {
    text-align: left;
    margin-left: 40px;
    position: relative;
}

.zodiac_sign2 h1::before {
    left: 40.5%;
}

.zodiac_sign2 .cards .card2 h1::before {
    left: 0;
    top: 30px;
    width: 70px;
    margin: 0;
}

.zodiac_sign2 .cards .card2 h3 {
    margin-left: 40px;
    margin-top: 20px;
    width: 82%;
    height: 4.5em;
    overflow: hidden;
    transition: .3s linear;
}

.zodiac_sign2 .cards .card2:hover h3 {
    overflow: unset;
    height: fit-content;
}

.zodiac_sign2 .cards .card2 {
    padding: 15px 20px;
    border: none;
    height: 150px;
    min-height: 150px;
    border-radius: none;
}

.zodiac_sign2 .cards .card2:hover  {
    height: auto;
    min-height: auto;
}

.zodiac_sign2 .cards .card2 img {
    position: relative;
}

.zodiac_sign2 .cards .card2 .img_z {
    width: 40px;
    height: 40px;
    position: relative;
}

.zodiac_sign2 .cards .card2 .img_z::before {
    content: '';
    position: absolute;
    width: 170%;
    height: 170%;
    border-radius: 50%;
    border: 1px dashed rgb(6, 21, 40);
    left: -8px;
    top: -8px;
}

.zodiac_sign2 .cards .card2:hover .img_z::before {
    border: 2px dashed #8c9f95;
    animation: ro 5s linear infinite;
}

@keyframes ro {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}

.zodiac_sign2 .cards .card2:hover {
    background: #031d2e;
}

.zodiac_sign2 .cards .card2 img {
    width: 55px;
    height: 55px;
}

.zodiac_sign2 .cards .card2:hover img {
    transform: rotate(0deg);
    background: #8c9f95;
}

.zodiac_sign2 .cards .card2 {
    width: 350px;
    transition: .3s linear;
}

.zodiac_sign2 .cards {
    justify-content: center;
}

.zodiac_sign3 .cards {
    flex-wrap: nowrap;
    overflow-x: auto;
}

.zodiac_sign3 .cards .card_cu {
    min-width: 365px;
    height: auto;
    padding: 40px;
    background: rgb(6, 21, 40);
    margin-left: 20px;
}

.zodiac_sign3 .cards::-webkit-scrollbar {
    display: none;
}

.zodiac_sign3 .cards .card_cu:nth-child(1) {
    margin-left: 0px;
}

.zodiac_sign3 .cards .card_cu .img_line {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.zodiac_sign3 .cards .card_cu .img_line {
    position: relative;
    width: 100%;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.zodiac_sign3 .cards .card_cu .img_line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgb(255 255 255 / 30%);
    z-index: -1;
}

.zodiac_sign3 .cards .card_cu h5 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.zodiac_sign3 .cards .card_cu .img_line img {
    width: 60px;
    border-radius: 50%;
}

.zodiac_sign3 .cards .card_cu .img_line img:nth-child(2) {
    width: 20px;
    border-radius: 50%;
    background: #8c9f95;
    padding: 5px 4px;
    position: absolute;
    right: -5px;
    top: 35px;
}

.zodiac_sign3 .cards .card_cu .cont h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Philosopher', sans-serif;
    line-height: 1.2;
    margin-top: 5px;
}


.zodiac_sign3 h1:nth-child(1):before {
    margin-left: 110px;
}

.zodiac_sign3 .pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.zodiac_sign3 .pagination button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 10px;
    border: 1px solid #fff;
    background: none;
}

.zodiac_sign3 .pagination button:nth-child(1) {
    background: #fff;
}


footer {
    background: rgb(9, 36, 59);
    padding: 50px 5%;
}

footer .footer {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

footer .footer .card h5 {
    width: 300px;
    color: #fff;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.8;
}
footer .footer .card  .social  {
    margin-top: 45px;
}
footer .footer .card  .social a {
    position: relative;
    margin-right: 10px;
    padding: 6px 10px;
    background: rgb(184, 184, 184, .2);
    color: #fff;
    border-radius: 50%;
    transition: .3s linear;
}
footer .footer .card  .social a i{
    position: relative;
}
footer .footer .card  .social a:hover i {
    transform: rotate(360deg);
}
footer .footer .card  .social a:hover{
    color: #8c9f95;
}
footer .footer .card  h1 {
    font-size: 16px;
    color: #fff;
    position: relative;
    margin: 0;
    padding: 0;
}

footer .footer .card  h1::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1  100%);
    border-radius: 10px;
    top: 40px;
}

footer .footer .card ul {
    margin-top: 30px;
    list-style: none;
}
footer .footer .card ul li {
    padding: 5px 2px;
}
footer .footer .card ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: .3s linear;
}
footer .footer .card ul li a:hover {
    color: rgb(255 255 255 / 50%);
}

footer .footer .card .news {
    width: 330px;
    background: #031d2e;
    padding: 30px;
}
footer .footer .card .news h1::before{
    display: none;
}
footer .footer .card .news p{
   margin-top: 10px;
   color: #fff;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.8;
}
footer .footer .card .news .search_footer{
   display: flex;
   align-items: center;
   margin-top: 10px;
   border: 1px solid rgb(255 255 255 / 45%);
   padding-left:10px ;
   padding: 5px  0 5px 10px;
}
footer .footer .card .news .search_footer input{
   background: none;
   border: none;
   width: 85%;
}
footer .footer .card .news .search_footer i{
    background: linear-gradient(0deg, #8c9f95 0%, #f0f2f1 100%) #f0f2f1;
  color: #fff;
  padding: 3px 8px;
  cursor: pointer;
}
footer .footer .card .news .contact {
   text-decoration: none;
   color: #fff;
   font-weight: 600;
   font-size: 13px;
   position: relative;
   top: 10px;
   transition: .3s linear;
}
footer .footer .card .news .contact i{
    margin-right: 5px;
}
footer .footer .card .news .contact:hover{
    color: #8c9f95;
}

/* login  */
.container {
    width: 80%;
    height: auto;
    display: flex;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
}

.footer .card:nth-child(1) {
    display: flex;
    background: #031d2e;
    align-items: center;
    justify-content: space-between;
    height: auto;
    width: fit-content;
    padding: 5px;
}

.form-image {
    width: 50%;
    background-color: #fff;
    padding: 2rem;
}

.form-image h1{
    font-family: 'Philosopher', sans-serif;
    /* position: relative; */
    margin-bottom: 35px;
    font-size: 1.5em;
    color: #951e09;
}

.form-image h1::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, #951e09 0%, #ffffff 100%);
    /* background: linear-gradient(90deg, #8c9f95 0%, #f0f2f1 100%); */
    top: 35px;
}

.form-image h6{
    font-size: 14px;
    font-weight: 600;
}

.form-image img {
    /* width: 23rem; */
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 1px 1px 6px #0000001c;
}
.course_module_div{
    margin-top: 20px;
    color: rgba(0,0,0,0.9);
}

.course_module{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 10px;
}

.course_module div{
    width: 50%;
    padding: 0px 10px;
}
.course_module div:nth-child(2){
    padding-left: 20px;
}
.course_module div ol li{
    padding-bottom: 5px;
    font-size: 14px;
}

.course_fee{
    list-style: none;
    padding-left: 5px;
}

/* .course_fee_div{
    display: flex;
} */

.contact_details_sign{
    color: #000;
    text-decoration: none;
    padding-left: 5px;
}

.contact_details_sign:hover{
    text-decoration: underline;
}

.t_c_sign{
    width: 70%;
}

.form {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* background-color: #fff; */
    padding: 0 1rem;
}

.course_fee_div{
    margin-top: 30px;
}
.course_fee li{
    padding-bottom: 5px;
}

.contact_details div:nth-child(2){
    padding: 5px 0;
}

.form_shadow{
    box-shadow: 6px 11px 24px 0 rgba(23,31,37,0.12);
    padding: 20px;
    background-color: #fff;
}

.tel_field{
    position:relative;
    width: 100%;
    background-color: red;
}

.iti-mobile .iti--container {
    top: 30px;
    bottom: 30px;
    left: 300px;
    right: 30px !important;
    position: fixed;
    width: auto !important;
}

.form-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}

.login-button {
    display: flex;
    align-items: center;
}

.login-button  a {
    border: none;
    background-color: #6c63ff;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.login-button button:hover {
    background-color: #6b63fff1;
}

.login-button button a {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
}

.form-header h1::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background-color: #6c63ff;
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
    width:48%;
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #0000001c;
    font-size: 0.8rem;
}

.input-box input:hover {
    background-color: #eeeeee75;
}

.input-box input:focus-visible {
    outline: 1px solid #6c63ff;
}

.input-box textarea {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #0000001c;
    font-size: 0.8rem;
}

.input-box textarea:hover {
    background-color: #eeeeee75;
}

.input-box textarea:focus-visible {
    outline: 1px solid #6c63ff;
}

.input-box label,
.gender-title h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000c0;
}

.input-box input::placeholder {
    color: #000000be;
}

.gender-group {
    display: flex;
    align-items: center;
    margin-top: 0.62rem;
    padding: 0 .5rem;
}

.gender-input {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.gender-input input {
    margin-right: 0.35rem;
}

.gender-input label {
    font-size: 0.81rem;
    font-weight: 600;
    color: #000000c0;
}

/* .continue-button button {
    width: 100%;
    margin-top: 2.5rem;
    border: none;
    background-color: #6c63ff;
    padding: 0.62rem;
    border-radius: 5px;
    cursor: pointer;
} */

.continue-button button {
    width: 100%;
    border: none;
    background-color: #6c63ff;
    padding: 0.62rem;
    cursor: pointer;
}

.continue-button button:hover {
    background-color: #6b63fff1;
}

.continue-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: #fff;
}
footer img {
    width: 160px !important;
    border-radius: 10px;
    background: #031d2e;
    padding: 20px;
}
/* @media screen and (max-width: 1330px) {
    .form-image {
        display: none;
    }
    .container {
        width: 90%;
    }
    .form {
        width: 100%;
    }
} */
/* 
@media screen and (max-width: 1064px) {
    .container {
        width: 90%;
        height: auto;
    }
    .input-group {
        flex-direction: column;
        z-index: 5;
        padding-right: 5rem;
        max-height: 10rem;
        overflow-y: scroll;
        flex-wrap: nowrap;
    }
    .gender-inputs {
        margin-top: 2rem;
    }
    .gender-group {
        flex-direction: column;
    }
    .gender-title h6 {
        margin: 0;
    }
    .gender-input {
        margin-top: 0.5rem;
    }
}

.input-box2 .select_bx {
    position: relative;
    margin-top: 12px;
}
.input-box2 .select_bx h5 {
    background: #fff;
    box-shadow: 0 0 20px rgb(0,0,0,.2);
    padding: 9px 10px;
    border-radius: 10px;
    cursor:pointer;
}
.input-box2 .select_bx .show_lag{
        position: absolute;
    top: 45px;
    background: #fff;
    box-shadow: 0px 0px 20px rgb(0,0,0,.2);
    padding: 10px 20px;
    border-radius: 10px;
    opacity:0;
}
.input-box2 .select_bx .show_lag_active{
    opacity:1;
}
.input-box2 .select_bx .show_lag h6{
     cursor:pointer;
     padding:3px 2px;
}
*/
.whatsapp_desktop {
    position: fixed;
    bottom: 5%;
    right:2%;
    background: #fff;
    width: 60px;
    height:60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0px 0px 20px rgb(0,0,0,.2);
}
.whatsapp_desktop i {
    color:green;
    font-size: 35px;
}

.whatsapp_mobile{
    display: none;
}

.mobile_view{
    display:none;
} 

.footer_copy{
    background-color: #031d2e;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.margin_bottom_label{
    margin-bottom: 0.6rem !important;
}

.select_bx{
    background: #fff;
    box-shadow: 1px 1px 6px #0000001c;
    padding: 9px 10px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    border: none;
    font-weight:800;
    width: 100%;
}

.form_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    background-color: #f1f1f1;
    /* padding: 1rem 0; */
}

.form_footer div:nth-child(1){
    width: 60%;
    display: flex;
    align-items: center;
}

.form_footer div:nth-child(2){
    width: 38%;
}

.form_footer div img{
    width: 60%;
    padding-left: 10px;
}

.form_footer div button{
    color: #fff;
}

.error_msg_mobile, .error_msg_f_name, .error_msg_l_name{
    color: red;
    font-size: 10px;
    margin-top: 5px;
    margin-bottom: 0;
}

.logo_new{
    display: flex;
    align-items: center;
}

.guruji{
    max-width: 70px;
    height: auto;
    margin-top: 5px;
    /* margin-right: 20px; */
    padding-right: 20px;
    border-right: 1px solid #fff;
}

.logo_new a{
    width: 50px;
}

.box-profile{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.profile_content{
    padding-left: 20px;
    padding-top: 20px;
}

.discount{
    color:red;
    font-size:12px;
    font-weight:500;
}

.message_error{
    color:red;
    font-size:12px;
    font-weight:500;
    background-color: rgba(0,0,0,0.05);
    padding: 10px 10px;
}

.error_msg{
    background-color: rgba(0,0,0,0.05);
    padding: 10px;
    color: red;
    font-size: 12px;
    display: block;
}

.about_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.paragraph{
    margin-bottom: 20px;
    font-size: 14px;
}

.img_shadow{
    box-shadow: 6px 11px 24px 0 rgba(23,31,37,0.12);
    padding: 20px;
    background-color: #fff;
    margin-top: 50px;
}




.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
  }

  .stat-card {
    width: 31%;
    background: #09243b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
  }

 .visible {
    transform: translateY(0);
    opacity: 1 !important;
  }

  .stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
  }

  .stat-label {
    font-size: 1rem;
    color: #fff;
    margin-top: 5px;
  }

  @media (max-width: 600px) {
    .stat-card {
      padding: 15px;
    }
  }

  .benefits {
    margin-top: 15px;
  }

  .benefits h1 {
    font-family: 'Philosopher', sans-serif;
    /* position: relative; */
    margin-bottom: 35px;
    font-size: 1.5em;
    color: #951e09;
  }

  .benefits h4 {
    margin-top: 10px;
  }
  
  .benefits p {
    margin-top: 5px;
  }