/* ----------------------------Common CSS-------------------------------- */

body {
    font-family: "Poppins", sans-serif;
    font-family: "Poppins", sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.index-page {
    background-color: #d7d9ee;
}

/* ----------------------------Navbar CSS-------------------------------- */

.navbar {
    background-color: transparent;
    position: fixed; /* Stick to the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 15px 0; /* Increased height */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(32, 61, 189);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(32, 61, 189);
}

.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.8rem;
    color: #333;
    outline: none;
    transition: color 0.3s ease;
}

.navbar-toggler:hover {
    color: rgb(32, 61, 189);
}

.btn-sign {
    font-weight: 600;
    padding: 7px 22px;
}

.btn-sign-in {
    color: rgb(32, 61, 189);
    background: transparent;
    border: 2px solid rgb(32, 61, 189);
    transition: all 0.3s ease;
}

.btn-sign-in:hover {
    background-color: rgb(32, 61, 189);
    color: #fff;
}

.btn-sign-up {
    background-color: rgb(32, 61, 189);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-sign-up:hover {
    background-color: rgb(20, 45, 150);
    color: white;
}

.more-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Position below the More button */
    left: 0;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    min-width: 180px;
    z-index: 1000;
    white-space: nowrap;
}

.nav-item {
    position: relative;
}

.more-dropdown.show {
    display: block;
}

@media (max-width: 991px) {
    .more-dropdown {
        position: fixed !important;
        top: 15%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 1050;
    }

    .more-dropdown.show {
        display: block !important;
    }

    .more-dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .more-dropdown ul li {
        padding: 12px;
    }

    .more-dropdown ul li a {
        text-decoration: none;
        color: #3e499e;
        font-size: 16px;
        font-weight: bold;
        display: block;
    }

    .more-dropdown ul li a:hover {
        background-color: #3e499e;
        color: white;
        border-radius: 5px;
    }
}

.more-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.more-dropdown ul li {
    padding: 10px 15px;
    text-align: center;
}

.more-dropdown ul li a {
    text-decoration: none;
    color: #3e499e;
    display: block;
    font-weight: bold;
}

.more-dropdown ul li a:hover {
    background-color: #3e499e;
    color: white;
    border-radius: 5px;
}

.nav-item:hover .more-dropdown {
    display: block;
}

/* @media (max-width: 768px) {
    .more-dropdown {
        position: fixed; 
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }
} */

/* ----------------------------Navbar CSS End-------------------------------- */

/* ----------------------------Footer CSS-------------------------------- */

.footer-section {
    background-color: #3f47a9;
    padding: 40px 0;
}

.footer-section h5 {
    margin-bottom: 15px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    padding: 0;
}

.icon {
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.text-center {
    padding-top: 15px;
}

/* ----------------------------Footer CSS End-------------------------------- */

/* ----------------------------Index CSS-------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    background-image: url("images/index-bg.png");

    background-size: contain;

    background-position: center;

    background-repeat: no-repeat;

    height: 100vh;

    display: flex;

    align-items: flex-end;

    background-color: #d7d9ee;
}
.hero-section h1 {
    font-size: 2.9rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-section .container {
    height: 100%;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
    margin-bottom: 1rem;
}

.icon-bg-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3f47a9;

    color: #fff;

    border-radius: 50%;

    width: 30px;

    height: 30px;

    margin-right: 8px;

    font-size: 1rem;
}

.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;

    padding: 0.6rem 1.2rem;

    color: #000000;
}

.btn-outline-secondary:hover {
    background-color: #3f47a9;

    color: #fff;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.stats-section {
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 40vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 4rem;

    font-weight: bold;

    display: inline-flex;

    align-items: baseline;
}

.stat-number span {
    font-size: 2.5rem;

    font-weight: bold;

    margin-left: 0.3rem;
}

.stats-section p {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.mentorship-section .bg-big,
.mentorship-section .bg-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.mentorship-section .bg-big {
    display: block;
}

.mentorship-section .bg-small {
    display: none;
}

.features-section {
    background-color: #fff;
}

.features-section h2 {
    font-size: 2rem;
    line-height: 1.5;
    color: #000;
}

.features-section h2 span {
    color: purple;
}

.feature-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #6c757d;
}

.row.g-4 > [class^="col"] {
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
}

.college-semesters {
    background-color: rgb(207, 209, 234);
    padding: 50px 15px;
}

.college-semesters h4 {
    font-size: 1.8rem;
    color: rgb(63, 71, 169);
    font-weight: bold;
}

.college-semesters p {
    font-size: 1.5rem;
    color: black;
}

.college-semesters span.bca {
    color: rgb(63, 71, 169);
    font-weight: bold;
}

.college-semesters span.bba {
    color: rgb(228, 128, 64);
    font-weight: bold;
}

.card {
    border-radius: 15px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    overflow: visible;

    position: relative;
}

.card-body {
    padding-bottom: 50px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card h5 {
    font-size: 1.25rem;
    font-weight: bold;
}

.card p {
    color: #6c757d;
    font-size: 0.9rem;
}

.btn-read-more {
    background-color: #3e499e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -15px;

    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-read-more:hover {
    background-color: #dde0f1;
    color: #3e499e;
}

.btn-all-batches {
    color: #3e499e;
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.btn-all-batches:hover {
    background-color: rgb(63, 71, 169);
    color: white;
}

.btn-all-courses {
    color: #ffffff;
    background-color: rgb(63, 71, 169);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.btn-all-courses:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(63, 71, 169);
}

.badge.bg-blue {
    background-color: rgb(185, 203, 242);
    color: rgb(63, 71, 169);
}

.container-swiper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px;
}

.card-list1 .card-item1 {
    height: auto;
    color: #fff;
    user-select: none;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list1 .card-item1 .user-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid #fff;
    padding: 4px;
}

.card-list1 .card-item1 .user-profession {
    font-size: 1.15rem;
    color: #e3e3e3;
    font-weight: 500;
    margin: 14px 0 40px;
}

.card-list1 .card-item1 .message-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #030728;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.card-list1 .card-item1 .message-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #fff;
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.slider-wrapper .swiper-pagination-bullet {
    background: #fff;
    height: 13px;
    width: 13px;
    opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.slider-wrapper .swiper-slide-button {
    color: #fff;
    margin-top: -55px;
    transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
    color: #4658ff;
}

@media (max-width: 768px) {
    .swiper-wrapper {
        width: 100%;
    }
    .slider-wrapper {
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slide-button {
        display: none;
    }
}

/* .card-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}


  

.carousel-inner {
    padding: 50px;
}
 */
.skill-card {
    width: 18rem;
    height: 24rem;

    border-radius: 15px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.125);
    display: flex;
    flex-direction: column;
}

.card-body {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    flex-grow: 1;

    overflow: hidden;
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    display: block;
    margin-bottom: 15px;
}

.card-img-top {
    width: 100%;
    height: 10rem;

    object-fit: cover;
}

.card-imgtop {
    border-radius: 20px;
    width: 100%;
    height: 10rem;
    padding: 5px;
    object-fit: cover;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #007bff;
}

.tag-container {
    display: flex;
    justify-content: flex-start;
}

.card-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.card-footer .card-rating i,
.card-footer .card-students i,
.card-footer .card-level span {
    margin-right: 5px;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: none;
}

.carousel-control-prev-icon {
    background-image: url("images/left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 50px;
    height: 50px;
}

.carousel-control-next-icon {
    background-image: url("images/right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 50px;
    height: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: black;
    opacity: 0.8;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    filter: brightness(0.8);
}

.skills {
    background-color: rgb(63, 71, 169);
}

.skills-view-more-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(59, 69, 156);
    border: 1px solid rgb(59, 69, 156);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 150px;
}

.skills-view-more-btn:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(59, 69, 156);
}

.college-admission {
    background-color: #ffffff;
}

.college-admission h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
}

.college-admission h2 .text-primary2 {
    color: #6c63ff;
}

.college-admission p.fs-4 {
    font-size: 1.25rem;
    font-weight: normal;
    color: black;
}

.college-admission p.fs-4 span {
    color: #6c63ff;
    font-weight: bold;
}

.college-admission p.fs-5 {
    color: #6c757d;
}

.card2 {
    border: none;
    border-radius: 10px;
    overflow: visible;

    background-color: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;

    text-align: center;
}

.card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card2 img.card-img-top {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.card-body2 {
    padding: 20px;
    text-align: center;
}

.card-title2 {
    font-size: 1.1rem !important;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    text-align: center;
}
.card-text2 {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-hover {
    background-color: #6c63ff;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
    position: absolute;

    bottom: -20px;

    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-hover:hover {
    background-color: #4f46c3;
    transform: translateX(-50%) scale(1.05);
}

.review-section {
    background-color: #ffffff;
    padding: 40px 20px;
}

.section-title {
    font-size: 2rem;
    color: #000;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.review-box-wrapper {
    position: relative;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    overflow: hidden;
}

.orange-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 0;
}

.left-circle {
    bottom: 120px;
    left: 5px;
}

.right-circle {
    top: 10px;
    right: 5px;
}

.review-box {
    position: relative;
    background: none;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.9;
    border-radius: inherit;
    object-fit: cover;
}

.review-text {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    text-align: justify;
}

.review-text p {
    margin: 0;
    word-wrap: break-word;
}

.reviewer-dp {
    position: relative;
    text-align: center;
    margin-top: -25px;
    z-index: 2;
}

.reviewer-dp img {
    width: 70px;
    height: 70px;
    border-radius: 20%;
    border: 3px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.reviewer-name,
.reviewer-location {
    margin: 5px 0;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 40px;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 1.8rem;
    }
    .review-text {
        font-size: 0.95rem;
        max-height: 180px;
    }
    .orange-circle {
        width: 40px;
        height: 40px;
    }
    .reviewer-dp img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .review-box {
        padding: 20px;
    }

    .review-text {
        max-height: 120px;
        font-size: 0.85rem;
        text-align: center;
    }
    .reviewer-name,
    .reviewer-location {
        font-size: 0.8rem;
    }
    .left-circle {
        bottom: 110px;
        left: 5px;
    }
    .right-circle {
        top: 40px;
        right: 5px;
    }
}

.mentorship-section {
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    padding: 60px 20px;

    height: auto;
}

.mentorship-content {
    color: #fff;

    padding: 20px;

    border-radius: 8px;

    margin-top: 150px;
}

.mentorship-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mentorship-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.mentorship-list {
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
}

.mentorship-list li {
    display: flex;

    align-items: center;
    text-align: left;
    justify-content: space-between;

    background: #fff;

    color: #333;
    height: 70px;
    padding: 10px 15px;
    margin-bottom: 10px;

    border-radius: 10px;

    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.mentorship-list li:hover {
    background: #f0f0f0;

    transform: translateY(-5px);

    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);

    color: #203dbd;
}

.mentorship-list li span.number {
    flex-shrink: 0;

    text-align: left;

    width: 50px;

    font-weight: bold;

    color: #000000;
    font-size: 2.25rem;
}

.mentorship-list li span.text {
    flex-grow: 1;

    text-align: left;

    color: #000000;
    font-size: 1.375rem;
    padding-left: 50px;
}

/* ----------------------------Index CSS End-------------------------------- */

/* ----------------------------About CSS-------------------------------- */

.about-hero {
    background-image: url("images/about\ background\ 1.png");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    height: auto;
    width: 100%;
    margin-top: 80px;
    background-color: #f6f6f6;
}

.about-hero .container {
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #898f9b;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
    margin-top: 20px;
}

.about-hero .lead {
    font-size: 2rem;
    font-weight: 300;
    color: #898f9b;
    margin-bottom: 30px;
}

.about-hero .btn-primary {
    background-color: #3e499e;
    border-color: #3e499e;
    color: white;
    padding: 12px 30px;
    font-size: 1.125rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-hero .btn-primary:hover {
    background-color: #dde0f1;
    border-color: #dde0f1;
    color: #3e499e;
}

.about-section {
    position: relative;
    min-height: 100vh;

    width: 100%;

    display: flex;

    justify-content: center;
    overflow: hidden;
}

.about-section .bg-main,
.about-section .bg-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-section .bg-main {
    display: block;
}

.about-section .bg-alt {
    display: none;
}

.about-section h2 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.about-section p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.metrics-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    cursor: pointer;
}

.metrics-section h2 {
    font-size: 2rem;
    font-weight: bold;
}

.metrics-section p {
    color: #6c757d;
}

/* .metric-card {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;

    padding: 20px;
    margin: auto;
    min-height: 150px; 
    border-radius: 10px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 */

.metric-card img.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.metric-card .metric-details {
    text-align: center;
}

.metric-card .metric-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.metric-card .metric-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    padding: 20px;
    margin: auto;
    min-height: 150px;
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.row.g-4 > div {
    display: flex;
    justify-content: center;
}

.certifications-section {
    background-color: rgb(211, 213, 234);
    padding: 60px 20px;
}

.certifications-section h2 {
    font-size: 2rem;
    font-weight: bold;
}

.certifications-section p {
    color: #6c757d;
}

.cert-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cert-icon {
    background-color: none;

    border-radius: 0%;

    padding: 0;
    margin-bottom: 20px;
}

.cert-icon img {
    width: 120px;

    height: 120px;
}

.cert-content p {
    font-size: 1rem;
    color: #333333;
    margin: 0;
}

.why-choose-us h2 {
    font-size: 2rem;
    font-weight: bold;
}

.why-choose-us p {
    color: #6c757d;
    font-size: 1.1rem;
}

.choose-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-align: center;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    background-color: none;

    border-radius: 0%;

    padding: 0;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100px;

    height: auto;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

.card-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonials h2 {
    font-size: 2rem;
    color: #2d62d9;
}

.carousel video {
    border-radius: 8px;
}

.about-section .row {
    align-items: center;
}

.about-section .fw-bold {
    font-size: 1.75rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
}

.metrics-section {
    background-color: #f9f9f9;
}

.metrics-section .icon {
    width: 60px;
    height: 60px;
}

.certifications-section img {
    max-width: 100%;
    height: auto;
}

.why-choose-us .highlight {
    color: #2d62d9;
}

.why-choose-us .icon {
    width: 80px;
    height: 80px;
}

.testimonials {
    background-color: #e9ecef;
}

.testimonials video {
    border-radius: 10px;
}

section > .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-bottom: 20px;
}

.testimonials-section {
    background: url("images/rectangle-short.png") no-repeat center center/cover;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 80%;
    gap: 20px;
}

.video-card {
    min-width: calc(50% - 10px);
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    height: auto;
    display: block;
}

.prev {
    position: absolute;
    left: 10px;
}

.next {
    position: absolute;
    right: 10px;
}

/* ----------------------------About CSS End-------------------------------- */

/* ----------------------------Testimonial CSS-------------------------------- */

section.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.center-img {
    max-width: 100%;
    max-height: 100%;
}

.image-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.image-card {
    flex: 1 0 33.33%;
    box-sizing: border-box;
    padding: 10px;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.testimonial-section {
    background-color: white;
}

.video-wrapper {
    text-align: center;
}

.video-vertical {
    width: 100%;

    height: auto;
    aspect-ratio: 9 / 16;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .position-relative {
        min-height: 400px;
        margin-top: 2rem;
    }

    .grey-circle {
        width: 90%;
        right: -5%;
    }

    .man-img {
        width: 85%;
        right: 5%;
    }
}

@media (max-width: 576px) {
    .position-relative {
        min-height: 30px;
    }

    .grey-circle {
        width: 100%;
        right: -10%;
    }

    .man-img {
        width: 90%;
        right: 0;
    }
}

/* ----------------------------Testimonial CSS End-------------------------------- */

/* ----------------------------Contact CSS-------------------------------- */
.header {
    margin-top: 80px;
}
.header h1 {
    position: relative;
    font-size: 2.5rem;
    z-index: 1;
}

.text-section {
    color: white;
    padding: 50px 20px;
}

.text-section .bg-circle {
    width: 200px;

    height: 50px;

    background-color: rgb(59, 69, 156);

    border-radius: 10px;
    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

    text-align: center;
}

.text-section h2 {
    font-size: 1.2rem;
    color: white;

    margin-top: 15px;
}

.text-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
}

.text-section .text-purple {
    color: rgb(59, 69, 156);
}

.text-section .text-black {
    color: black;
}

.text-section p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

.main-content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(5px);
}

.contact-info {
    flex: 0 0 40%;

    max-width: 40%;
    padding: 20px;
    background-image: url("path-to-your-contact-info-bg.jpg");

    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.contact-info {
    min-height: 400px;

    color: #fff;
    border-radius: 8px 0 0 8px;
}

.contact-header1 h2 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.8rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-info .icon {
    background-color: #fff;

    border-radius: 50%;

    padding: 15px;

    font-size: 1.5rem;

    margin-right: 10px;

    color: #000000;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info .icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.contact-form {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 20px;
    background-image: url("../assets/images/crop.png");
    background-size: cover;
    background-position: center;
    border-radius: 0 8px 8px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form label {
    color: black;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    margin-bottom: 15px;
    padding: 8px 5px;
    outline: none;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #2e4af5;
}

.btn-primary {
    background-color: rgb(59, 69, 156);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: rgb(211, 213, 234);
    color: rgb(59, 69, 156);
}

.social-icons a {
    font-size: 2rem;
    margin: 0 15px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ea7c38 !important;
}

/* ----------------------------Contact CSS End-------------------------------- */

/* ----------------------------Contact After CSS-------------------------------- */

.btn-custom {
    background-color: #3e499e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.btn-custom:hover {
    background-color: #dde0f1;
    color: #3e499e;
    transform: scale(1.05);
}

.btn-custom:focus {
    outline: none;
}

.btn-custom:active {
    transform: scale(1);
}

/* ----------------------------Contact After CSS End-------------------------------- */

/* ----------------------------Course Individual CSS-------------------------------- */

.header-sectioncourse {
    background-color: rgb(51, 63, 165);
    color: white;
    padding: 20px 0;
    margin-top: 80px;
}

.header-sectioncourse h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.header-sectioncourse p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.header-sectioncourse .fa-arrows-rotate,
.header-sectioncourse .fa-globe {
    font-size: 1rem;
    color: yellow;
    vertical-align: middle;
}

.header-sectioncourse span {
    font-size: 1rem;
}

.header-sectioncourse .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.card-custom {
    background: white;
    border-radius: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: -100px;
}

.card-custom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 5px;
}

.card-custom .card-body {
    padding: 20px;
}

.price-details {
    font-size: 20px;
    text-align: left;
}

.price-details .original-price {
    text-align: left;
    text-decoration: line-through;
    color: grey;
    margin-right: 10px;
}

.price-details .discount {
    text-align: left;
    color: green;
    font-weight: bold;
}

.card-title {
    text-align: left;
    font-size: 2.9rem;
}

.text-muted {
    text-align: left;
}

.course-includes {
    margin-top: 15px;
}

.course-includes li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.styled-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.styled-list i {
    color: rgb(51, 63, 165);
    margin-right: 10px;
    font-size: 1.2rem;
}

.what-you-learn {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.what-you-learn h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.what-you-learn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-you-learn ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.what-you-learn li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.what-you-learn ul li::before {
    content: "\2713";
    color: rgb(0, 0, 0);
    margin-right: 10px;
}

.what-you-learn .show-more {
    margin-top: 20px;
    text-decoration: underline;
    color: #3e499e;
    cursor: pointer;
    font-weight: bold;
}

.course-includes-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.course-includes-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;

    font-weight: bold;
}

.course-includes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-includes-section li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.course-includes-section i {
    color: #ff4757;
    font-size: 1.2rem;
    margin-right: 10px;
}

.accordion-button.custom-accordion-button {
    background-color: #e5f1fd;
    color: #000;
    border: none;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
}

.accordion-button.custom-accordion-button.collapsed {
    background-color: #e5f1fd;
    color: #000;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    font-size: 0.9rem;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    margin-bottom: 5px;
}

.accordion-button img {
    width: 24px;
    height: 24px;
}

.chapter-title {
    font-size: 1rem;
    font-weight: 500;
}

.chapter-duration {
    font-size: 0.9rem;
    margin-top: 5px;
}

.dropdown-icon {
    font-size: 1.2rem;
    color: #000;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed) .dropdown-icon {
    transform: rotate(180deg);
}

.box-container {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
}

.learner-logo-wrapper {
    width: 100%;
    max-width: 299px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    margin: 0 auto;
}

.learner-logo-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.learner-logo {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.card.border-0 {
    border-radius: 10px;
    background-color: #fff;
}

.card img {
    border: 2px solid #eee;
    object-fit: cover;
}

.card p {
    color: #555;
    font-size: 0.95rem;
}

.card h6 {
    color: #333;
}

.card small {
    color: #777;
}

.card .text-warning {
    font-size: 1rem;
}

.btn-outline-primary {
    border: 2px solid #000000;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 5px;
    transition:
        background-color 0.3s,
        color 0.3s;
}

button.btn-outline-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

.faq-item {
    background-color: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ea7c38;
    transition: transform 0.2s ease;
}

.faq-answer {
    border-left: 3px solid #ea7c38;
    transition: all 0.3s ease-in-out;
}

.container-fluidcer {
    background-color: #6f42c1;
    padding: 5rem 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.d-flex {
    display: flex;
    align-items: center;
}

h3 {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
}

img[alt="Medal"] {
    width: 40px;
    height: 40px;
}

.container p {
    font-size: 1rem;
    line-height: 1.6;
}

button.btn-warning {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: inline-flex;
    align-items: center;
    background-color: rgb(228, 128, 64);
}

button.btn-warning:hover {
    background-color: #ea7c38;
    color: black;
}

img[alt="Certificate"] {
    max-width: 80%;
    height: auto;
    border: 2px solid white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.review-button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.review-btn {
    background: none;
    color: #000;

    border: none;

    font-size: 1rem;

    padding-bottom: 10px;

    cursor: pointer;

    text-decoration: underline;

    font-weight: bold;

    transition: none;
}

.review-btn:hover {
    text-decoration: underline;
}

/* ----------------------------Course Individual CSS End-------------------------------- */

/* ----------------------------Course CSS-------------------------------- */

.hero-sectioncourse {
    background-image: url("../assets/images/course slide 1 1-Photoroom.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    margin-top: 50px;
}

.badge {
    border-radius: 20px;
}

.tag-container1 {
    display: flex;
    justify-content: flex-start;
}

.bengali-heading {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    color: white;
}

.bengali-heading .strike-text {
    position: relative;
    color: red;
    display: inline-block;
}

.bengali-heading .strike-text::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: red;
    transform: rotate(-15deg);
    transform-origin: left;
}

.sub-heading {
    font-size: 18px;
    margin-top: 10px;
    color: #e5e5e5;
}

.sub-heading .live-text {
    color: #ff0000;
    font-weight: bold;
}

.categories-section {
    background-color: #f8f9fa;
    padding: 50px 20px;
}

.search {
    display: inline-block;
    position: relative;
}

.search input[type="text"] {
    width: 800px;

    padding: 12px;

    border: none;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.search button[type="submit"] {
    background-color: #3e499e;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 12px 25px;

    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;

    right: 1px;

    transform: translateY(-50%);
    transition: 0.3s ease;
}

.search button[type="submit"]:hover {
    color: #fff;
    background-color: #ea7c38;
}

.course-category-section {
    padding: 40px 0;
}

.course-card {
    background: #f9f9f9;
    border: 1px solid #203dbd;
    border-radius: 8px;
    text-align: center;
    padding: 20px 10px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #3e499e;
    color: white;
}

.course-icon {
    max-width: 60px;
    margin: 0 auto 15px;
    height: 60px;
}

.course-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 auto;
    text-align: center;
}

.course-card:hover .course-text {
    color: white;
}

.web-development-section {
    padding: 40px 0;
}

.section-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.sort-by .form-select {
    width: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.course-card2 {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card2:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-img2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 10px;
    border-radius: 8px;
}

.card-content2 {
    padding: 15px;
}

.card-title2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 10px 0;
    text-align: left;
}

.card-details2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
    margin: 10px 0;
}

.card-details2 span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-details2 i {
    color: #fbb034;
}

.parent-container {
    display: flex;
    justify-content: flex-end;

    width: 100%;
}

.view-more2-btn {
    background: rgb(63, 71, 169);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
    width: auto;
}

.view-more2-btn:hover {
    background: rgb(207, 209, 234);
    color: rgb(63, 71, 169);
}

/* ----------------------------Course CSS End-------------------------------- */

/* ----------------------------SignUp OTP CSS-------------------------------- */

.otp {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.otp-container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.otp-container h1 {
    font-size: 2.4rem;
    color: #3f47a9;
    margin-bottom: 20px;
}

.otp-container p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.otp-inputs input {
    flex: 1;
    max-width: 80px;
    height: 80px;
    text-align: center;
    font-size: 2rem;
    border: 2px solid #ced4da;
    border-radius: 10px;
    outline: none;
    transition:
        border-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.otp-inputs input:focus {
    border-color: #3f47a9;
    box-shadow: 0 0 10px rgba(59, 59, 206, 0.5);
}

.resend-link {
    font-size: 1rem;
    color: #3f47a9;
    text-decoration: none;
}

.resend-link:hover {
    text-decoration: underline;
}

.btn-continue {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 100%;
    cursor: pointer;
}

.btn-continue:hover {
    background-color: #333;
}

@media (max-width: 450px) {
    .otp-container {
        padding: 15px;
    }

    .otp-container h1 {
        font-size: 1.4rem;
    }

    .otp-container p {
        font-size: 0.9rem;
    }

    .otp-inputs {
        gap: 5px;
    }

    .otp-inputs input {
        max-width: 30px;

        height: 35px;

        font-size: 1.1rem;
    }

    .btn-continue {
        padding: 8px 12px;

        font-size: 0.9rem;
    }

    .resend-link {
        font-size: 0.8rem;
    }
}

/* ----------------------------SignUp OTP CSS-------------------------------- */

/* ----------------------------Profile CSS-------------------------------- */

.profile-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.profile-container h1 {
    font-size: 2rem;
    color: #3f47a9;
}

.profile-container p {
    font-size: 1.2rem;
    color: #6c757d;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.static-img {
    width: 150px;

    height: 150px;

    object-fit: cover;
    border-radius: 8px;
}

.btn-primarysign {
    background-color: #3f47a9;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    color: white;
}

.btn-primarysign:hover {
    background-color: #2c3875;
    color: white;
}

/* ----------------------------Profile CSS End-------------------------------- */
