@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&display=swap');

/* Importing fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Calibri&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Futura&display=swap');
/* Note: Futura may not be available */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700&display=swap');
/* Bodoni alternative */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Garamond&display=swap');
/* Note: Garamond may not be available */
@import url('https://fonts.googleapis.com/css2?family=Helvetica&display=swap');
/* Note: Helvetica may not be available */
@import url('https://fonts.googleapis.com/css2?family=Ramaraja&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova&display=swap');
/* Note: Proxima Nova may not be available */
@import url('https://fonts.googleapis.com/css2?family=Frutiger&display=swap');
/* Note: Frutiger may not be available */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Verdana&display=swap');
/* Note: Verdana may not be available */
@import url('https://fonts.googleapis.com/css2?family=Century+Schoolbook&display=swap');
/* Note: Century Schoolbook may not be available */
@import url('https://fonts.googleapis.com/css2?family=Arial&display=swap');
/* Note: Arial may not be available */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cambria&display=swap');
/* Note: Cambria may not be available */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: inherit;
    /* font-family: "Reem Kufi Ink", sans-serif; */
    /* font-family: "Nunito Sans", sans-serif; */
    /* font-family: "Poppins", system-ui; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Playfair", serif; */
    /* font-family: "Inter", sans-serif; */
    /* font-family: 'Alegreya Sans', sans-serif; */
    /* font-family: 'Josefin Sans', sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
    font-family: inherit;
    font-size: inherit;
    word-break: break-word;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;

}

ul {
    list-style: none;
}

p {
    color: #333;
}



a {
    text-decoration: none;
}



:root {
    --primary: #ED6B37;
    --primary-hover: #EC180C;
    --secondary: #EC180C;
    --blue: #16182F;
    --text-color: #333;
    --border-color: #e0e0e08b;
    --shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.horizontal {
    display: flex;
}

.vertical {
    display: flex;
    flex-direction: column;
}



.full-width {
    width: 100%;
}

.max-width {
    max-width: 1250px;
    padding: 0 50px;
    margin: 0 auto;
}

.max-width2 {
    max-width: 1500px !important;
    padding: 0 50px;
    margin: 0 auto;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}


.btn-primary-primary {
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: 1px solid var(--primary);
    border-radius: 1px;
    color: white !important;
    font-size: 14px;
    cursor: pointer;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-primary:hover {
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    background: linear-gradient(to left, var(--primary), var(--secondary));

}



.btn-secondary-primary {
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary) !important;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center
}

.btn-secondary-primary:hover {
    background-color: var(--primary-hover);
    border: 1px solid var(--primary-hover);
    color: white !important;
}


.btn-primary-blue {
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 4px;
    border-radius: 5px;
    color: white !important;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-primary-blue:hover {
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--blue-hover);
}



.btn-secondary-blue {
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 4px;
    border-radius: 5px;
    color: var(--blue);
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-secondary-blue:hover {
    background-color: var(--blue-hover);
    color: white;
}


.custom-label {
    font-size: 15px;
    font-weight: 300;
    /* margin-left: 8px; */
    /* margin-bottom: -15px; */
    padding: 5px;
    color: var(--primary);
    z-index: 1;
    /* background-color: white; */
    display: inline !important;
}

.custom-input {
    width: 100%;
    height: 35px;
    font-size: 16px;
    padding: 4px 8px;
    font-weight: 400;
    color: var(--text-color);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    resize: vertical;
}

/* Target the file input's button using ::file-selector-button */
.custom-input[type="file"]::file-selector-button {
    background-color: var(--grey);
    /* Blue background */
    color: white;
    /* White text */
    border: none;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    /* margin-bottom: 20px; */
}


/* Change the button on hover */
.custom-input[type="file"]::file-selector-button:hover {
    background-color: var(--blue);
}

/* Style the input's outer area */
.custom-input[type="file"] {
    font-size: 16px;
    border: none;
    padding: 0px;
    border-radius: 5px;
    width: 100%;
}

/* Optional: Hide default input appearance */
.custom-input[type="file"] {
    color: black;
    /* Hide filename text */
}

.asterik {
    display: inline;
    color: red;
}












.custom-gpt-menu {
    max-width: 400px;
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
    color: #000 !important;
    border-bottom: 1px solid var(--red);
}

.custom-gpt-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    /* border: 1px solid #ccc; */
    /* margin: 5px 0; */
    border-radius: 5px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.custom-gpt-menu-item:hover {
    /* background-color: #f0f0f0; */
}

.custom-gpt-submenu {
    margin-left: 20px;
    display: none;
}

.custom-gpt-submenu-item {
    cursor: pointer;
    padding: 8px;
    /* margin: 5px 0; */
    border-radius: 5px;
    background-color: #f7f7f7;
    transition: background-color 0.3s;
}

.custom-gpt-submenu-item:hover {
    /* background-color: #e7e7e7; */
}

.custom-gpt-caret {
    color: var(--red);
    font-size: 16px;
    transition: transform 0.3s;
}

.custom-gpt-caret.custom-gpt-rotate {
    transform: rotate(180deg);
}

.question-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--red);
    padding: 20px;

}

.question-wrapper {
    border-bottom: 1px solid var(--red);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    color: #767676;
}

.question-text {
    color: var(--blue-hover);
    font-weight: 500;
}

.category-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}


.category-text {
    font-size: 10px;
    color: white;
    background-color: var(--red);
    padding: 5px 10px;
    border-radius: 2px;
}

.custom-scroll {
    padding-right: 10px;
}

.custom-scroll::-webkit-scrollbar {
    width: 5px;

}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: var(--red);
    border-radius: 10px;
}


.detail-custom-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-custom-container span {
    display: inline-block;
    max-width: 200px;
    line-height: 20px;
}

.detail-custom-container b {
    color: var(--red);
    display: inline-block;
    width: 70px;
}



.end {
    height: 200px;
    width: 100%;
}


.pagination button {
    background-color: var(--red);
    color: white;
    border-radius: 2px;
    border: 0px
}

.pagination button:hover {
    background-color: var(--red-light);
}

#quotes-per-page {
    border: 1px solid var(--red);
    border-radius: 2px;
}


.quote-body p {
    display: inline-block !important;
}


.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: attr(title);
    /* Use the title attribute value */
    position: absolute;
    bottom: 100%;
    /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--red);
    /* Blue background for tooltip */
    color: white;
    /* White text */
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: 120%;
    /* Hidden by default */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}



.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: var(--red-hover);
    background: linear-gradient(var(--red) 0%, var(--red-hover) 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid var(--red-hover);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--red-hover);
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--red-hover);
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--red-hover);
}





.slam-img {
    height: 120px;
}

.page-title-login {
    font-size: 30px;
    margin: 20px auto;
}

.login-form-label {
    font-size: 20px;
}

.login-form-input {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid var(--red);
    border-radius: 10px;
}

.custom-padding {
    padding: 0 50px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table .table-head {
    background-color: var(--red) !important;
}

.table-head th {
    padding: 10px;
    text-align: left;
}

.table-head th:first-child {
    border-radius: 10px 0 0 0;
}

.table-head th:last-child {
    border-radius: 0 10px 0 0;
}

.custom-table td {
    padding: 10px;
}

.custom-table tr:nth-child(odd) {
    background-color: #f2f2f2;
}


.courses-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}

.course-card {
    /* background-color: var(--red); */
    height: 400px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.course-play-btn {
    font-size: 90px;
    color: lightskyblue;
    position: absolute;
    bottom: 120px;
    z-index: 1;
    /* left: 150%; */
    left: calc(100% - 50px);
    transform: translate(-50%, 50%);
    transition: .5s;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px;
    width: 80px;

}


.course-card img {
    height: calc(100% - 100px);
    width: 100%;
    transition: .5s;
}

.course-card .card-info {
    position: absolute;
    bottom: 0;
    height: 100px;
    background-color: #ffffff;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 15px;
    width: 100%;
}

.course-card:hover .card-info {
    height: 100%;
    padding-top: 50px;
}

.course-card:hover img {
    height: 100%;
}

.course-card:hover .course-play-btn {
    left: 50%;
    bottom: 50%;
}

.extra-pad {
    padding: 50px;
}

.courese-detail-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--red);
}

.section-sub-heading {
    font-size: 20px;
    color: var(--red);
}


.lecture-heading {
    width: 100%;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--red);
}

.lecture-content {
    /* padding: 15px; */
    height: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.price-container {
    min-height: 250px;
    border-radius: 10px;
    border: 1px solid var(--red);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price {
    font-size: 30px;
    color: var(--red-hover);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 80vh;
    max-height: 900px;
    object-fit: cover;


}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #282a2e30 !important;
}

.hero-text-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* text-align: center; */
    font-size: 50px;
    /* color: var(--red); */
    color: white;
    /* text-shadow: 1px 1px black; */
    font-weight: 700;
    z-index: 20;
    font-family: "Playfair", serif !important;
}


.spacer {
    height: 100px;
    width: 100%;
    /* background-color: red; */
}



.swiper-slide img {
    object-fit: cover;
}







.navbar-font ul li a {
    font-family: var(--section-font) !important;
    font-weight: 600;
}

.same-font-heeding {
    font-family: var(--section-font) !important;
    font-weight: 600;
    letter-spacing: normal;
}



.articles-2-line {

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}


.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}



.search-bar-container {
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--red);
    width: 100%;

}

.search-bar-container input {
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    width: calc(100% - 100px);
    max-width: 400px;
}

.search-btn {
    background-color: var(--red);
    color: white;
    padding: 10px;
    border: 1px solid var(--red);
    border-radius: 0 5px 5px 0;
    width: 100px;
    cursor: pointer;
    font-size: 12px;
}

.search-btn:hover {
    border: 1px solid var(--red-hover);
    background-color: var(--red-hover);
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper th {
    padding: 10px;
    text-align: left;
    background-color: var(--grey);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.table-wrapper th:first-child {
    border-radius: 10px 0 0 0;
}

.table-wrapper th:last-child {
    border-radius: 0 10px 0 0;
}

.sup-heading {
    font-family: 'Josefin Sans', sans-serif !important;
    color: var(--secondary);
}
.margin-center{
    margin: 0 auto;
}

.section-heading {
    font-family: 'Josefin Sans', sans-serif !important;

    font-size: 40px;
    max-width: 50vw;
    font-weight: 600;
    /* color: var(--red); */
    margin-bottom: 20px;
}

.product-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    margin: 20px auto;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    width: 100%;
    max-width: 300px;
    height: 340px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    background-color: white;
}

.product-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    transition: .5s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    /* limit to only 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 60px;
    line-height: 20px;
    /* max-height: 60px; */

}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    transition: .5s;
}


.backbtn {
    /* background-color: var(--primary); */
    padding: 10px;
    /* border: 1px solid var(--primary); */
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    width: 100px;
}

.backbtn:hover {
    color: var(--primary);
}

.section-margin {
    height: 100px;
    width: 100%;
    background-color: transparent;
}

.section-margin-half {
    height: 50px;
    width: 100%;
    background-color: transparent;
}

.home-about-us-image {
    border: 1px solid var(--primary);
    padding: 10px;
    display: block;
}

.text-center {
    text-align: center;

}

.link-btn{
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    line-height: 20px;
}

.link-btn:hover{
    color: var(--primary-hover);
    text-decoration: underline;

}

.subscription-form-input-style{
    width: 100%;
    border-radius: 2px;
    height: 35px;
    border: none;
    color: black;
    padding: 5px 10px;
}