@import url("https://fonts.googleapis.com/css2?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://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');

:root {
    --light: #faebce;
    --dark: #bf161c;
    --middark: #505050;
    --medium: #e0e0e0;
    --exlight: #e2e2e2;
    --hl: #161349;
    --lborder: #c1c1c1;
    --radius: 20px;
    --gradient: linear-gradient(90deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);

    --titlefont: "Montserrat", sans-serif;
    --textfont: "Montserrat", sans-serif;
}

/* Main Card Styles */
.course-card {
    padding: 25px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card.selected {
    border-left: 4px solid #2a52be;
}

/* No Selection Prompt Styles */
.no-selection-prompt {
    text-align: center;
    padding: 20px;
    color: #555;
}

.prompt-icon {
    font-size: 3rem;
    color: #2a52be;
    margin-bottom: 15px;
    opacity: 0.7;
}

.no-selection-prompt h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.instruction-text {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}

.benefits-list {
    text-align: left;
    margin-top: 20px;
}

.benefits-list h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.benefits-list li i {
    color: #2a52be;
    margin-right: 10px;
}

/* Selected Course Styles */
.course-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-header {
    margin-bottom: 15px;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.course-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.course-pricing {
    margin: 0px 0;
    position: relative;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a52be;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 0px;
}

.course-badge {
    display: inline-block;
    background: #e00010;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    position: relative;
    top: -5px;
}

.course-features {
    margin-top: auto;
}

.course-features h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.course-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li i {
    color: #2a52be;
    margin-right: 10px;
}

.btn-pay-now {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(224, 0, 16, 0.9);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-pay-now.loading .btn-content,
.btn-pay-now.loading .btn-icon {
    opacity: 0;
}

.btn-pay-now.loading .btn-loader {
    opacity: 1;
}

.terms-checkbox,
.signup-checkbox {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.terms-checkbox input,
.signup-checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.terms-checkbox label,
.signup-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.terms-checkbox a {
    color: #e00010;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.is-invalid {
    border-color: #e00010 !important;
}

.invalid-feedback {
    color: #e00010;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}



.text-danger {
    color: #e00010 !important;
}


.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.radio-option:hover .radio-checkmark {
    border-color: #e00010;
}

.radio-option input:checked~.radio-checkmark {
    background-color: #fff;
    border-color: #e00010;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-option input:checked~.radio-checkmark:after {
    display: block;
}

.radio-option .radio-checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);
}

/* Header Section */
.page-header-testimonial {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding: 40px 0;
}

.page-header-testimonial h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    font-weight: 700;
}

.page-header-testimonial p {
    color: var(--gray);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.testimonial-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(224, 0, 16, 0.05);
    z-index: -1;
}

.testimonial-decoration-1 {
    top: -50px;
    left: 10%;
}

.testimonial-decoration-2 {
    bottom: -30px;
    right: 15%;
    background: rgba(1, 36, 84, 0.05);
}

/* Section Titles */
.testimonial-section-title {
    font-size: 2.5rem;
    margin: 10px 0 50px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.testimonial-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 3px;
}

.testimonial-section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: -30px auto 50px;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 60px 0;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 33.33%;
    padding: 0 15px;
    transition: var(--transition);
    box-sizing: border-box;
}

.testimonial-inner {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding-bottom: 20px;
}

.testimonial-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonial-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 3px;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(224, 0, 16, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-info {
    flex: 1;
}

.client-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary);
}

.client-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-content {
    padding: 0 25px;
    color: var(--dark);
    font-size: 1rem;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 15px;
    font-size: 5rem;
    color: rgba(1, 36, 84, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 25px;
    color: rgba(224, 0, 16, 0.1);
    font-size: 3rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(1, 36, 84, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition);
    border: none;
    outline: none;
}

.slider-nav:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.prev {
    left: 8px;
}

.next {
    right: 8px;
}

/* Videos Section */
.videos-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.videos-container {
    position: relative;
    padding: 0 50px;
}

.videos-slider {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(224, 0, 16, 0.3);
}

.play-button i {
    color: var(--white);
    font-size: 1.8rem;
    margin-left: 5px;
}

.video-inner:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

.video-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(224, 0, 16, 0.2);
}

.watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 0, 16, 0.3);
}

.watch-btn i {
    margin-left: 8px;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 80px 0;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(1, 36, 84, 0.03) 0%, rgba(224, 0, 16, 0.03) 100%);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {

    .testimonial-card,
    .video-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 992px) {
    .page-header-testimonial h1 {
        font-size: 2.5rem;
    }

    .testimonial-section-title {
        font-size: 2rem;
    }

    .stat-item {
        min-width: 150px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header-testimonial h1 {
        font-size: 2rem;
    }

    .page-header-testimonial p {
        font-size: 1.1rem;
    }

    .testimonial-section-title {
        font-size: 1.8rem;
    }

    .testimonial-card,
    .video-card {
        flex: 0 0 100%;
    }

    .testimonials-container,
    .videos-container {
        padding: 0 30px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }

    .stats-section {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .page-header-testimonial h1 {
        font-size: 1.8rem;
    }

    .testimonials-container,
    .videos-container {
        padding: 0 15px;
    }

    .client-image {
        width: 50px;
        height: 50px;
    }

    .testimonial-header {
        padding: 20px 15px 10px;
    }

    .testimonial-content {
        padding: 0 15px;
    }

    .video-info {
        padding: 20px;
    }
}

/* Updated CSS for video section */
.video-card {
    flex: 0 0 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
}

.video-inner {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 117.78%;
    /* 9:16 aspect ratio (16/9 = 1.7778) */
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-inner:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-info-container {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.video-title {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(224, 0, 16, 0.2);
    white-space: nowrap;
}

.watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 0, 16, 0.3);
}

.watch-btn i {
    margin-left: 8px;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 100%;
    }

    .video-info-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-title {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .watch-btn {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .video-title {
        font-size: 1rem;
    }

    .watch-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.banner-slider {
    margin-top: -10px!important;
    margin-bottom: -10px!important;
}



*:focus,
a:focus,
a:active {
    outline: none;
    color: inherit;
    text-decoration: inherit;
}

html {
    height: 100%;
    padding-bottom: 2px;
}

.overflow {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--titlefont);
    font-weight: 600;
    margin: 0px;
    padding: 0px;
}

a,
a span {
    text-decoration: none;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

a:hover,
a:hover span {
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

body {
    background-color: #fff;
    color: #595959;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: var(--textfont);
}

/* -------------- Top -------------- */

.mob-login {
    padding: 3px;
    margin-top: 12px;
    margin-bottom: 3px;
}

.mob-login a {
    color: var(--dark);
    padding: 5px 16px;
    border-radius: 18px;
    display: inline-block;
    background-color: var(--dark);
    color: #fff;
    font-size: 16px;
}

.mob-login a i {
    font-size: 15px;
}

.top-wrapper {
    position: relative;
    z-index: 13;
    padding: 5px 0;
    background-color: #fff;
}

.top-wrapper .logo {
    margin: 3px 0;
    display: block;
}

.top-wrapper .logo img {
    max-width: 90%;
}

.top-con {
    margin: 5px 0 0 0;
    padding: 9px 2px 9px 60px;
    font-size: 15px;
    color: var(--middark);
    line-height: 20px;
    font-weight: 500;
    float: right;
}

.top-con span a {
    display: block;
    color: var(--hl);
    font-weight: 600;
    font-size: 20px;
}

.call {
    background: url(../img/call.png) no-repeat left center;
}

.top-log {
    margin: 8px 0 0 10px;
    padding: 6px 2px 6px 10px;
    font-size: 15px;
    color: var(--middark);
    line-height: 20px;
    font-weight: 500;
    float: right;
    border-left: 5px solid var(--dark);
}

.top-log a {
    color: var(--hl);
}

.top-log a:hover,
.top-log span a:hover {
    color: var(--dark);
}

.top-log span a {
    display: block;
    color: var(--hl);
    font-weight: 600;
    font-size: 20px;
}

.top-log a i {
    font-size: 14px;
}

.top-log span a i {
    font-size: 16px;
}


/* -------------- Menu -------------- */
.menu-wrapper {
    background: var(--gradient);
}

.top-menu {
    padding: 2px 0;
    z-index: 10;
    float: left;
    display: inline-block;
}

.top-menu ul {
    margin: 0px 0 0px 0;
    padding: 0;
    list-style: none;
    display: inline;
}

.top-menu ul li {
    display: inline-block;
    margin: 0px;
    position: relative;
    color: #4e2624;
    float: left;
}

.top-menu ul li a {
    font-size: 16px;
    color: #f7f7f7;
    font-weight: 500;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.top-menu ul li a:hover {
    text-decoration: none;
    color: #ffce39 !important;
}

.top-menu ul li:last-child a {
    border-right: 0px;
}

.top-menu .active {
    color: #ffce39;
}

.top-menu ul li ul {
    display: none;
    position: absolute;
    z-index: 25;
    background-color: var(--hl);
}

.top-menu ul li:hover ul {
    display: block;
}

.top-menu ul li ul li {
    width: 250px;
    display: block;
    background: none;
    text-align: left !important;
    padding: 6px 5px;
    text-align: left !important;
}

.top-menu ul li ul li a {
    font-size: 15px;
    padding: 5px 6px;
}

.top-menu ul li ul li:first-child a {
    padding: 5px 6px !important;
}

.top-menu ul li ul li ul,
.top-menu ul li:hover ul li ul {
    display: none;
    left: 251px;
    top: 0px;
}

.top-menu ul li:hover ul li:hover ul {
    display: block;
}

.call-mobile {
    color: #fff;
    padding: 12px 0;
    display: block;
    position: relative;
    font-weight: 600;
}

.call-mobile span {
    font-size: 13px;
    color: #f1f2c3;
    font-weight: 600;
}

.call-mobile i {
    position: absolute;
    font-size: 33px;
}

.get-report {
    font-size: 23px;
    padding: 12px 0;
    background: var(--hl);
    color: #fff;
    text-align: center;
}

.get-report a {
    font-size: 28px;
    display: inline-block;
    padding: 6px 19px;
    border-radius: 20px;
    background-color: var(--dark);
    color: #fff;
    font-weight: 600;
    margin: 0 8px;
}

.get-report span {
    text-decoration: line-through;
    color: #f4e006;
}

/* -------------- Common theme -------------- */

.breadcrumb{ background-color: transparent !important; padding: 0 !important; margin:0px !important ; }
.breadcrumb ul{ list-style: none; float: left; margin:0 ; padding: 0; }
.breadcrumb ul li{font-size: 13px; font-weight: 500; display:inline-block; padding:2px 2px 2px 0; color: var(--dark); }
.breadcrumb ul li a{font-size: 13px; font-weight: 500; display:block; padding:2px 2px; color:var(--hl); };


.socialmedia-menu {}

.socialmedia-menu ul {
    float: left;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0 !important;
    list-style: inline-block;
}

.socialmedia-menu ul li {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.socialmedia-menu ul li a {
    color: var(--hl) !important;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    padding-top: 3px !important;
    width: 32px;
    height: 32px;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    border-bottom: 0;
}

.socialmedia-menu ul li a:hover {
    color: #fff !important;
    background-color: var(--dark);
}

.page-title {}

.page-title h1 {
    font-family: var(--titlefont);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px 15px 14px 1px;
    display: inline-block;
}

.page-wrapper {
    margin: 50px 0;
}

.page-title2 h1 {
    font-family: var(--titlefont);
    font-weight: 900;
    color: #7a3c30;
}

.sub-title {
    font-family: var(--titlefont);
    font-size: 1.4em;
    font-weight: 400;
    color: #000;
}

.page-content {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-content p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-content h1 {
    display: inline-block;
    width: 100%;
    color: var(--hl);
    font-size: 24px;
    margin: 4px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.page-content h2 {
    display: inline-block;
    width: 100%;
    color: var(--dark);
    font-size: 23px;
    margin: 4px 0;
    padding-bottom: 5px;
}

.page-content h3 {
    display: inline-block;
    width: 100%;
    color: var(--hl);
    font-size: 22px;
    margin: 4px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.page-content h4 {
    display: inline-block;
    width: 100%;
    color: var(--dark);
    font-size: 20px;
    margin: 4px 0;
    padding-bottom: 5px;
}

.page-content h5 {
    display: inline-block;
    width: 100%;
    color: var(--hl);
    font-size: 18px;
    margin: 4px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.page-content h5 {
    display: inline-block;
    width: 100%;
    color: var(--dark);
    font-size: 18px;
    margin: 4px 0;
    padding-bottom: 5px;
}

.page-content h6 {
    display: inline-block;
    width: 100%;
    color: var(--hl);
    font-size: 16px;
    margin: 4px 0;
    padding-bottom: 5px;
}

.responsive {
    max-width: 100%;
    height: auto;
}

.flash {
    animation: move 3s infinite;
}

@keyframes move {
    0% {
        background-color: var(--dark);
        color: #fff;
        transform: scale(1.0);
    }

    50% {
        background-color: #fcce18;
        color: #000;
        transform: scale(1.1);
    }

    100% {
        background-color: var(--dark);
        color: #fff;
        transform: scale(1.0);
    }
}

.smooth {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.ani {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.ani:hover {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

/* -------------- Home Page -------------- */

.home-about-wrapper {
    padding: 50px 0;
}

.about-content {
    display: table-cell;
    vertical-align: center;
}

.socialmedia-menu2 {
    width: 100%;
}

.socialmedia-menu2 ul {
    float: left;
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    list-style: inline-block;
}

.socialmedia-menu2 ul li {
    display: inline-block;
    margin-left: 5px
}

.socialmedia-menu2 ul li a {
    color: var(--hl);
    text-decoration: none;
    font-size: 16px;
    color: #fff !important;
    padding: 12px 18px;
    display: block;
    background: var(--gradient);
    border-radius: 50px;
    border-bottom: 0;
}

.socialmedia-menu2 ul li a:hover {
    color: #fff;
    background: linear-gradient(180deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);
}


.home-service-wrapper {
    padding: 50px 0;
    background: url(../img/ser-bg.jpg) no-repeat right bottom;
    background-color: var(--medium);
}

.service-wrapper {
    background-color: #e0e0e0;
    position: relative;
    margin: 15px 0;
    padding: 30px 22px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--dark);
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-title h2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-data {
    position: relative;
    z-index: 12;
    line-height: 30px;
}

.service-data ul {
    margin: 8px 0 0 0;
}

.service-data ul li {
    color: var(--dark);
}

.service-data ul li span {
    color: #595959;
}

.service-number {
    position: absolute;
    font-size: 170px;
    color: #ccc;
    bottom: -40px;
    right: 10px;
    z-index: 10;
}

.home-booking-wrapper {
    padding: 40px 0;
    background-color: var(--dark);
}

.session-wrapper {
    min-height: 220px;
    margin: 15px 0;
    padding: 22px 22px 35px 22px;
    border-radius: 20px;
    border: 2px solid #fff;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    background-color: rgba(191, 22, 28, 0.4);
}

.session-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.session-data {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.session-booking {
    background-color: #fff;
    padding: 8px 18px;
    border-radius: 15px;
    color: var(--hl);
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    bottom: -20px;
    left: 36%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.session-booking:hover {
    background: var(--hl);
    color: #fff;
}

.home-why-wrapper {
    padding: 60px 0;
    font-weight: 500;
}

.home-why-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px 0px 2px 1px;
    display: inline-block;
}

.home-why-wrapper p {
    font-size: 13px;
    line-height: 20px;
}

.why-image {
    width: 95%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.numorology-wrapper { background: url(../img/num-bg.jpg) no-repeat center center;
    padding: 60px 0;
    background-attachment: fixed;
}

.numorology-wrapper h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 26px;
}

.numorology-wrapper p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 26px;
}

.numorology-wrapper h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 26px;
}

.book-button {
    background-color: var(--dark);
    padding: 10px 28px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    border-radius: 30px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.book-button:hover {
    background-color: var(--hl);
    color: #fff;
}

.course-cover {
    display: block;
    color: #fff;
    font-weight: 600;
}

.course-cover img {
    width: 55%;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}



.testimonials-wrapper{ padding:50px 0; }
.testimonial-wrapper{ margin:35px 20px 40px 20px; background-color:var(--exlight); padding:20px; position:relative; border-radius:30px; text-align:left; }
.test-quote{ background:url(../img/test.png)no-repeat center center; width: 80px; height:70px; display:block; position:absolute;
top:5px; left:105px; }
.test-image{ margin-top:-50px; position:relative; margin-bottom:15px;  }
.test-image img{ border-radius: 50%; height:120px; width:120px;  }
.test-data{ font-weight:500; font-style:italic; margin-bottom:6px; line-height: 28px; }
.test-author{ font-weight:500; font-size: 30px; color:var(--dark); font-family: "Hurricane", cursive;  }

.dtestimonial-wrapper{ margin:36px 0 20px 0; background-color:var(--exlight); padding:20px; position:relative; border-radius:30px; text-align:left; }
.dtest-image{ margin-top:-50px; position:relative; margin-bottom:5px; width: 190px; float: left;}
.dtest-image img{ border-radius: 50%; height:120px; width:120px;  }


/* -------------- Contact us Page -------------- */
.map{border: 2px solid #e4e4e4; background-color: #f7f7f7;
    border-radius: 20px; overflow: hidden;
    line-height: 0; margin-bottom: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.contact-details{
    border: 2px solid #e4e4e4; background-color: #f7f7f7;
    border-radius: 20px; overflow: hidden;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

}
.contact_us_form fieldset {
  padding: 25px;
  border: 1px solid #107483;
  position: relative;
  width: 100%;
  float: left;
  margin: 15px 1%;
  color: #191919;
  border-radius: 10px; }

.contact_us_form legend {
  margin-left: 0px;
  width: auto;
  color: #107483;
  padding: 0px 10px 0 10px;
  font-weight: 300;
  font-size: 25px;
  border: 0px; }

/* -------------- Footer -------------- */
.footer-wrapper {
    padding: 40px 0;
    background-color: var(--hl);
    font-size: 15px;
    font-weight: 500;
}

.footer-inner-wrapper {}

.footer-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
    padding-bottom: 6px
}

.footer-data {
    margin: 20px 0;
    color: #fff;
}

.footer-data a {
    color: var(--exlight);
}

.footer-data a:hover {
    color: #fff;
}

.footer-data ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.footer-data ul li {
    margin: 0px;
    border-bottom: 1px solid #454545;
}

.footer-data ul li:last-child {
    border-bottom: 0px solid #454545;
}

.footer-data ul li a {
    display: block;
    padding: 7px 5px;
    color: #ccc;
    text-decoration: none;
}

.footer-data ul li a:hover {
    color: #fff;
    text-decoration: none;
}


/* -------------- Footer2 -------------- */
.footer2 {
    padding-bottom: 15px;
    background-color: #fff;
    padding: 18px 0;
}

.footer2 .copy-text {
    font-size: 15px;
    color: #303030;
}

.footer2 .wc-text a {
    font-size: 15px;
    color: #303030;
}


/* -------------- Contact us page -------------- */

.contact-from label {
    width: 100% !important
}

.contact-from input {
    border: 1px solid #ccc;
    height: 45px;
    width: 100%;
}

.contact-from textarea {
    border: 1px solid #ccc;
    height: 65px;
    width: 100%;
}

.contact-from .wpcf7-submit {
    background: #fbd91f;
    color: #000;
    border: none !important;
    height: 45px;
    cursor: pointer !important;
    width: 100%;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.contact-from .wpcf7-submit:hover {
    background: #73a519;
    color: #fff;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.form {
    padding: 16px;
    background-color: #f4f6f9;
    border: 1px solid #b1c3dd;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.form-text {
    margin-bottom: 12px;
    border: 1px solid #b1c3dd;
    background-color: transparent;
    width: 100%;
    height: 40px;
    border-radius: 12px;
}

.form h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.note {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 10px
}

.button {
    margin: 5px 8px;
    background-color: var(--dark) !important;
    color: #fff;
    border: 0px !important;
    font-weight: 600;
    border-radius: 20px;
    height: 50px;
    width: 200px !important;
    display: inline-block;
    text-align: center;
}

.button:hover {
    background-color: var(--hl) !important;
    color: #fff;
}

.form label {
    margin-top: 10px;
}

.singup-note input {
    height: 20px;
    width: 20px;
}

.singup-note {
    margin-bottom: 10px;
    vertical-align: middle;
}

.inline {
    width: unset;
    margin: 0 0.5em 0 0;
    vertical-align: middle;
}

.button-light {
    margin: 5px 8px;
    background-color: #ccc !important;
    color: #454545;
    border: 0px !important;
    font-weight: 600;
    border-radius: 20px;
    height: 50px;
    width: 200px !important;
    display: inline-block;
    text-align: center;
}

.button-light:hover {
    background-color: var(--hl) !important;
    color: #fff;
}

.btn-primary {
    margin: 5px 0px;
    background-color: var(--dark) !important;
    color: #fff !important;
    border: 0px !important;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 0;
    width: 100% !important;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--hl) !important;
}

.btn-success {
    margin: 5px 0px;
    background-color: var(--dark) !important;
    color: #fff !important;
    border: 0px !important;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 0;
    width: 100% !important;
    display: inline-block;
    text-align: center;
}

.btn-success:hover {
    background-color: var(--hl) !important;
}

.btn-light {
    border-radius: 10px;
}

.ma-link {
    padding: 8px 0;
    color: #454545;
}

/* -------------- Category Page -------------- */


/* -------------- Product Page -------------- */

/* -------------- Product Details Page -------------- */

/* -------------- Sign in / Sing up Page -------------- */
.process-page {
    padding: 50px 0;
    background-color: #f4f6f9;
}

.process-page input,
.process-page textarea {
    border-radius: 0px !important;
}

.process-page .card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* -------------- Cart Page -------------- */

/* -------------- Checkout Page -------------- */


/* -------------- My Account Page -------------- */


/* My Account Page Styles */
.myaccount-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--lborder);
    overflow: hidden;
    margin-bottom: 30px;
}

.myaccount-card-body {
    padding: 0;
}

.myaccount-tab-container {
    display: flex;
    position: relative;
    min-height: 650px;
}

.myaccount-tab-nav {
    flex: 0 0 200px;
    background: #f8f9fa;
    border-right: 1px solid var(--lborder);
}

.myaccount-tab-content {
    flex: 1;
    padding: 25px;
    position: absolute;
    left: 200px;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}

.ma-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--middark);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.ma-link:hover {
    color: var(--dark);
    background: rgba(224, 0, 16, 0.05);
}

.ma-link.active {
    color: var(--dark);
    background: rgba(224, 0, 16, 0.1);
    border-left: 3px solid var(--dark);
}

.myaccount-content-title {
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.myaccount-content-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.myaccount-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.stats-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stats-info h4 {
    margin: 0;
    font-size: 20px;
    color: var(--hl);
}

.stats-info p {
    margin: 0;
    color: var(--middark);
    font-size: 14px;
}

.myaccount-message {
    padding: 15px 0;
    border-bottom: 1px solid var(--lborder);
}

.myaccount-message:last-child {
    border-bottom: none;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.message-header h5 {
    margin: 0;
    color: var(--hl);
    font-size: 16px;
}

.message-date {
    color: var(--middark);
    font-size: 13px;
}

.myaccount-save-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.myaccount-save-btn:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .myaccount-tab-nav {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: 1px solid var(--lborder);
    }

    .myaccount-tab-content {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        flex: 0 0 100%;
    }

    .myaccount-stats {
        flex-direction: column;
    }
}
/* My Account Orders Table */
.myaccount-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.myaccount-orders-table thead th {
    background: #f8f9fa;
    padding: 12px 15px;
    font-weight: 600;
    color: #161349;
    border: none;
}

.myaccount-orders-table tbody tr {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.myaccount-orders-table tbody tr:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.myaccount-orders-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-top: none;
    border-bottom: none;
}

.myaccount-orders-table tbody td:first-child {
    border-radius: 8px 0 0 8px;
}

.myaccount-orders-table tbody td:last-child {
    border-radius: 0 8px 8px 0;
}

/* Order Type Badges */
.order-type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.order-type-badge.common_prediction {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.order-type-badge.individual {
    background: linear-gradient(90deg, #48dbfb, #0abde3);
}

.order-type-badge.training {
    background: linear-gradient(90deg, #1dd1a1, #10ac84);
}

.order-type-badge.course {
    background: linear-gradient(90deg, #f368e0, #e056fd);
}

/* Order Status Badges */
.order-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.order-status-badge.completed {
    background: linear-gradient(90deg, #20bf6b, #26de81);
}

.order-status-badge.pending {
    background: linear-gradient(90deg, #f39c12, #f1c40f);
}

.order-status-badge.failed {
    background: linear-gradient(90deg, #eb3b5a, #fc5c65);
}

.order-status-badge.refunded {
    background: linear-gradient(90deg, #778ca3, #a5b1c2);
}

/* View Order Button */
.btn-view-order {
    background: linear-gradient(90deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);
    color: white !important;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-view-order:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 0, 16, 0.2);
}

/* Order Details Modal */
.order-details-container {
    padding: 10px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-id {
    font-weight: 600;
    color: #161349;
    font-size: 18px;
}

.order-date {
    color: #666;
    font-size: 14px;
}

.order-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ddd;
}

.summary-item.total {
    font-weight: 600;
    color: #161349;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.order-specific-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.order-specific-details h6 {
    margin-bottom: 15px;
    color: #161349;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-item span:first-child {
    font-weight: 500;
    color: #555;
}

/* Pagination */
.myaccount-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

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

.myaccount-pagination .page-item .page-link {
    color: #161349;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 4px !important;
}

.myaccount-pagination .page-item.active .page-link {
    background: linear-gradient(90deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);
    border-color: transparent;
    color: white;
}

.myaccount-pagination .page-item:hover .page-link {
    background: rgba(22, 19, 73, 0.1);
}

/* Empty Orders */
.empty-orders {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-orders h5 {
    color: #161349;
    margin-bottom: 10px;
}

.empty-orders p {
    color: #666;
    margin-bottom: 20px;
}

.btn-shop-now {
    background: linear-gradient(90deg, rgba(224, 0, 16, 1) 0%, rgba(1, 36, 84, 1) 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

/* Base Styles */
.booking-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: url(../img/booking-bg.jpg) no-repeat left bottom;
    background-color: #f1ebea;
    padding: 50px 0 150px 0px;
}

.container-fluid {
    max-width: 1400px;
}

/* Breadcrumb */


.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-list li a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #e00010;
}

.breadcrumb-list li i {
    font-size: 10px;
    margin: 0 10px;
    color: #adb5bd;
}

/* Main Booking Card */
.booking-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.booking-content-wrapper {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form-wrapper {
    flex: 0 0 45%;
    padding: 40px;
    background: #fff;
    border-left: 1px solid #eee;
}

/* Booking Content Styles */
.booking-highlight {
    margin-bottom: 30px;
}

.booking-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #012454;
    margin-bottom: 15px;
    line-height: 1.3;
}

.booking-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Price Badge */
.price-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.discounted-price {
    font-size: 24px;
    font-weight: 700;
    color: #e00010;
    margin-right: 10px;
}

.original-price {
    font-size: 16px;
    color: #adb5bd;
    text-decoration: line-through;
    margin-right: 15px;
}

.discount-percent {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #012454;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Features List */
.featured-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-item i {
    color: #28a745;
    font-size: 18px;
    margin-right: 12px;
}

.benefit-item span {
    font-size: 16px;
    color: #495057;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card.selected {
    border: 2px solid #e00010;
    background-color: #fff9f9;
    box-shadow: 0 8px 25px rgba(224, 0, 16, 0.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107, #ffab00);
    color: #212529;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-header {
    margin-bottom: 20px;
    padding-right: 40px;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #012454;
    margin-bottom: 8px;
    line-height: 1.3;
}

.course-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.meta-item i {
    margin-right: 8px;
    color: #e00010;
    font-size: 15px;
}

.course-pricing {
    margin-bottom: 25px;
}

.current-price {
    font-size: 28px;
    font-weight: 800;
    color: #e00010;
    margin-right: 10px;
}

.original-price {
    font-size: 18px;
    color: #adb5bd;
    text-decoration: line-through;
    position: relative;
    top: -2px;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.feature-item i {
    color: #28a745;
    margin-right: 8px;
    font-size: 14px;
}

/* Hover Effects */
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(224, 0, 16, 0.3);
}

.course-card.selected:hover {
    border-color: #e00010;
    transform: translateY(-3px);
}

/* Consultation Features */
.consultation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-box i {
    font-size: 30px;
    color: #e00010;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #012454;
}

.feature-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Training Timeline */
.training-timeline {
    position: relative;
    margin-top: 30px;
    padding-left: 30px;
}

.training-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e00010;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e00010;
}

.timeline-content {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #012454;
}

.timeline-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Form Header */
.form-header-section {
    margin-bottom: 30px;
    text-align: center;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #012454;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.progress-step.active {
    background: #e00010;
    color: #fff;
}

.progress-bar {
    width: 60px;
    height: 2px;
    background: #e9ecef;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e00010;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #012454;
    margin: 0;
}

/* Form Groups */
.form-row {
    display: flex;
    margin: 0 -10px;
}

.form-row .form-group {
    padding: 0 10px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-label {
    position: relative;
}

.floating-label label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #6c757d;
    font-size: 15px;
    transition: all 0.3s;
    pointer-events: none;
    background: #fff;
    padding: 0 5px;
}

.floating-label select,
.floating-label input {
    height: 50px;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    width: 100%;
    font-size: 15px;
    transition: all 0.3s;
}

.floating-label select:focus,
.floating-label input:focus,
.floating-label select:not(:placeholder-shown),
.floating-label input:not(:placeholder-shown) {
    border-color: rgb(0, 0, 0);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.floating-label select:focus+label,
.floating-label input:focus+label,
.floating-label select:not(:placeholder-shown)+label,
.floating-label input:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: #fff;
}

.floating-label i {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #6c757d;
    font-size: 14px;
}

/* Custom Checkbox */
.account-option {
    margin: 25px 0;
}

.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: #e00010;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #e00010;
    border-color: #e00010;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.account-note {
    font-size: 13px;
    color: #6c757d;
    margin: 5px 0 0 30px;
}

.error-message {
    display: block;
    font-size: 13px;
    color: #dc3545;
    margin-top: 5px;
}

.error-message i {
    margin-right: 5px;
}

/* Price Summary */
.price-summary {
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    color: #6c757d;
}

.price-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #012454;
}

/* Pay Now Button */
.btn-pay-now {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(90deg, #e00010 0%, #012454 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.3s;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-amount {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 15px;
}

.btn-icon {
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #e00010 0%, #012454 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-pay-now:hover .btn-icon {
    transform: translateX(5px);
}

.btn-pay-now.loading .btn-content {
    opacity: 0;
}

.btn-pay-now.loading .btn-loader {
    opacity: 1;
}

/* Secure Payment Note */
.secure-payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: #6c757d;
    font-size: 14px;
}

.secure-payment-note i {
    margin-right: 8px;
    color: #28a745;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.is-invalid~.invalid-feedback {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .booking-card {
        flex-direction: column;
    }

    .booking-content-wrapper,
    .booking-form-wrapper {
        flex: 1;
    }

    .booking-form-wrapper {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 767px) {

    .booking-content-wrapper,
    .booking-form-wrapper {
        padding: 25px;
    }

    .booking-main-title {
        font-size: 28px;
    }

    .consultation-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        margin: 0;
    }

    .form-row .form-group {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .booking-main-title {
        font-size: 24px;
    }

    .price-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .discount-percent {
        margin-top: 5px;
        margin-left: 0;
    }

    .btn-pay-now {
        flex-direction: column;
        padding: 15px;
    }

    .btn-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-text {
        margin-bottom: 8px;
    }

    .btn-amount {
        margin-left: 0;
        margin-bottom: 8px;
    }

}
.swal2-popup {
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.swal2-icon {
    color: #fff !important;
}

.swal2-title {
    padding: 0 1.5em !important;
    font-size: 1.1em !important;
}

 .terms-checkbox,
 .signup-checkbox {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }

.terms-checkbox input,
.signup-checkbox input {
        margin-right: 10px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

 .terms-checkbox label,
 .signup-checkbox label {
        margin-bottom: 0;
        font-size: 14px;
        color: #555;
        cursor: pointer;
    }

 .terms-checkbox a {
        color: #e00010;
        text-decoration: none;
    }

.terms-checkbox a:hover {
        text-decoration: underline;
    }
    
     .g-recaptcha {
        margin: 20px 0;
        display: flex;
        justify-content: center;
    }
    
    /* Make CAPTCHA responsive */
    @media (max-width: 768px) {
        .g-recaptcha {
            transform: scale(0.85);
            transform-origin: 0 0;
        }
    }
    
    @media (max-width: 480px) {
        .g-recaptcha {
            transform: scale(0.75);
            transform-origin: 0 0;
        }
    }
    
    /* Highlight CAPTCHA error */
    .recaptcha-error {
        border: 2px solid #dc3545 !important;
        border-radius: 4px;
        padding: 5px;
    }
