/* Import utilities */
@import url('utils/utilities.css');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Global Styles */
:root {
    --primary-color: #564FFD;
    --secondary-color: #7978E9;
    --text-dark: #333333;
    --text-light: #666666;
    --success-color: #00C853;
    --white: #FFFFFF;
}


html, body{
    width: 100% !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow: hidden;
    overflow-y: scroll;
}

@media (max-width: 576px) {
    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }
}

.swal2-question, .swal2-icon {
    display: none !important;
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.95) 50%, rgba(240, 244, 255, 0.85) 100%);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .hero-wrapper {
        min-height: unset;
    }
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Header Styles */
.main-header {
    position: relative;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
}

.navbar {
    padding: 0.5rem 0;
}

@media only screen and (min-width:991px) {
    #navbarMain {
        display: flex;
        justify-content: space-between;
    }
}
@media screen and (max-width:400px) {
   .logo{
    width: 180px;
   }
}

.navbar-nav {
    margin-left: 6rem;
}

/* .navbar-brand img.logo {
    height: 50px;
} */

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-buttons .btn {
    width: 150px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title .title-line-1 {
    font-size: clamp(2rem, 6vw, 4rem);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
    align-items: baseline;
}

.hero-title .title-line-1 span.individuals {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
    margin-left: 0.5rem;
    margin-top: 1rem;
}

.hero-title .title-line-2 {
    font-size: clamp(2rem, 6vw, 4rem);
    flex-wrap: wrap;
}

.hero-title span {
    background: linear-gradient(90deg, #051391 0%, #5868FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
    font-size: clamp(2.5rem, 7vw, 5rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

/* Search Box Styles */
.search-box {
    display: block;
    margin-bottom: 2rem;
    max-width: 600px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
    font-size: 18px;
}

.search-box .form-control {
    padding: 22px 60px;
    border-radius: 12px;
    border: none;
    background: #FFFFFF5E;
    font-size: clamp(14px, 2vw, 16px);
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: auto;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    /* Your styles for screens smaller than desktop */
    .search-box .form-control {
        width: 100%;
    }
    .search-input-wrapper .fa-search {
        right: 27px !important;
    }
}

  .stat-content{
    flex: 1;
  }

.search-box .form-control::placeholder {
    color: #666;
    font-size: clamp(14px, 2vw, 16px);
}

.search-box .register-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 28px;
    border-radius: 17px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    z-index: 2;
    min-width: 30%;
    margin: 0;
    transition: transform 0.2s ease;
    height: 100%;
    background: linear-gradient(90deg, #051391 0%, #5868FF 100%);
}

@media (max-width: 576px) {
    .search-box .form-control {
        font-size: 14px;
    }

    /* .search-input-wrapper::before {
    } */

    .search-box .register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Stats Section */
.stats-section {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-bottom: 0px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.1);
}

.stat-icon i {
    font-size: 24px;
}



.stat-content h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    margin: 0;
    color: #333;
}

.stat-content p {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    margin: 0;
    margin-top: 4px;
}

/* Customize icon backgrounds */
.stat-item:nth-child(1) .stat-icon {
    background: rgba(255, 107, 107, 0.1);
}

.stat-item:nth-child(2) .stat-icon {
    background: rgba(108, 92, 231, 0.1);
}

.stat-item:nth-child(3) .stat-icon {
    background: rgba(255, 107, 107, 0.1);
}

.stat-item:nth-child(4) .stat-icon {
    background: rgba(76, 209, 55, 0.1);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1B1B3F;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.partner-logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-section .img-fluid {
    background-color: #E9F0F2;
    border-radius: 12px;
}

/* Features Carousel Styles - SWIPER VERSION */
.features-carousel {
    position: relative;
    width: 100%;
}

.features-carousel.swiper {
    width: 100%;
    height: auto;
}

.features-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-carousel .swiper-slide img {
    background-color: #E9F0F2;
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Swiper Navigation Styles - DISABLED */
.features-carousel .swiper-button-next,
.features-carousel .swiper-button-prev {
    display: none !important;
}

/* Swiper Pagination Styles */
.features-carousel .swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.features-carousel .swiper-pagination .swiper-pagination-bullet {
    background: #ddd;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
}

.features-carousel .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .features-section .img-fluid {
        margin-top: 2rem;
    }
    
    .features-carousel {
        margin-top: 2rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .features-carousel .swiper-button-next,
    .features-carousel .swiper-button-prev {
        display: none;
    }
    
    .features-carousel .swiper-pagination {
        margin-top: 15px;
    }
    
    .features-carousel .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

.features-section h2 {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.features-description {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-item .feature-icon {
    width: 78px;
    height: 42px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.feature-item p {
    color: var(--text-light);
    margin-left: calc(78px + 1.5rem);
    /* Arrow width + gap */
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
}

/* Subjects Section */
.subjects-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.subject-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.subject-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(75, 73, 172, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    color: var(--primary-color);
}

.subject-card h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.subject-card p {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.subjects-section .btn-primary {
    padding: 17px 54px;
    font-size: 19px;
}

@media (max-width: 767.98px) {
    .subject-card {
        padding: 25px 15px;
    }

    .subject-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 28px;
    }

    .subject-card h3 {
        font-size: 18px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    padding: 30px 40px 80px 8rem;
    max-width: 100%;
}

/* Mobile styles for CTA section */
@media (max-width: 991.98px) {
    .cta-content {
        padding: 30px 20px 60px 4rem;
    }
    
    .cta-section .col-lg-7 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-features {
    margin-top: 2rem;
}

.cta-features .row-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-features .row-icon {
    flex-shrink: 0;
    width: 67px;
    height: 37px;
    margin-top: 1rem;
}

.cta-features .row {
    flex: 1;
}

.cta-features .feature {
    height: 100%;
    transition: all 0.3s ease;
}

.cta-features .feature-content {
    flex: 1;
}

.cta-features .feature h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.cta-features .feature p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-image-wrapper {
    height: 100%;
    position: relative;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Teacher Section */
.teacher-section {
    padding: 80px 0;
    padding-top: 0px;
}
@media (max-width: 767.98px) {
.teacher-section .content-wrapper {
    display: flex;
    flex-direction: column;
}}

.teacher-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.teacher-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.teacher-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 1000;
    margin-bottom: 1.5rem;
    color: #39473B;
    line-height: 1.3;
}

.teacher-section p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.teacher-section .btn-primary {
    padding: 1em 2em;
    font-size: 1.1rem;
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    padding: 80px 0 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

/* Updated Social Links Styles */
.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 35px;
    background-color: #363B4766;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.social-icon-link:hover {
    background-color: #4C6FFF;
    color: white;
}

.social-icon-link.linkedin {
    background-color: #564FFD;
    box-shadow: 0px 6px 10px 0px #CC522B80;
}

.social-icon-link i {
    font-size: 16px;
    line-height: 16px;
}

/* Footer Content Styles */
.main-footer h4 {
    color: var(--white);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    width: max-content;
}

.main-footer ul li {
    margin-bottom: 1rem;
}

.main-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    display: inline-block;
    font-weight: 400;
}

.main-footer ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.main-footer ul li a.become-instructor {
    color: var(--white);
    position: relative;
    padding-bottom: 2px;
}

.main-footer ul li a.become-instructor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #FF6B6B;
}

.app-buttons img {
    max-width: 140px;
    transition: opacity 0.3s ease;
}

.app-buttons a:hover img {
    opacity: 0.9;
}

/* Language Selector Styles */
.language-selector .form-select {
    padding: 8px 32px 8px 16px;
    font-size: clamp(12px, 2vw, 14px);
    background-color: #1E1F23;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    min-width: 120px;
    border: 1px solid #363B47 !important;
}

.language-selector .form-select:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.language-selector .form-select option {
    background-color: #1E1F23;
    color: #fff;
    padding: 8px;
}

/* Update footer bottom styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-wrapper::before {
        width: 100%;
        opacity: 0.1;
    }

    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        font-size: 3rem;
    }

    .hero-title span {
        font-size: 3.75rem;
    }

    .hero-title .title-line-1 span.individuals {
        font-size: 2rem;
    }

    .search-box {
        flex-direction: column;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .cta-content {
        padding: 60px 20px 60px 4rem;
    }

    .cta-section h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .cta-features .row-wrapper {
        gap: 1.5rem;
    }

    .cta-features .row-icon svg {
        width: 37px;
        height: 37px;
    }

    .cta-features .feature h4 {
        font-size: 1.25rem;
    }

    .cta-image-wrapper {
        min-height: 400px;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .partner-logo img {
        max-width: 150px;
    }

    .teacher-section {
        padding: 60px 0;
    }

    .teacher-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-top: 2rem;
    }

    .main-footer {
        padding: 60px 0 30px;
    }

    .main-footer h4 {
        margin-bottom: 1.25rem;
    }

    .main-footer ul li {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 767.98px) {

    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .hero-title span {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero-title .title-line-1 span.individuals {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .stat-item {
        padding: 1rem;
        justify-content: center;
    }

    .cta-content {
        padding: 40px 15px;
    }

    .cta-features .row {
        gap: 0.5rem;
    }

    .cta-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .cta-features .row-wrapper {
        gap: 1rem;
        margin-bottom: 0;
    }

    .cta-features .row-icon svg {
        width: 37px;
        height: 37px;
    }

    .cta-features .feature h4 {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .cta-image-wrapper {
        min-height: 300px;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .partner-logo img {
        max-width: 130px;
    }

    .partners-section {
        padding: 40px 0;
    }

    .teacher-section {
        padding: 60px 0;
    }

    .teacher-section p{
        margin-bottom: 1rem;
    }

    .teacher-section .btn-primary {
        padding: 0.8em 1em;
        font-size: 0.8rem;
        margin: 0 auto;
    
    }

    .teacher-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .social-links {
        margin-bottom: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: #F8F9FF;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.review-card {
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    border: 0.83px solid #E9EAF0
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.review-time {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-light);
}

.review-rating {
    color: #FFB800;
}

.review-rating i {
    margin-left: 2px;
}

.review-content {
    color: var(--text-light);
    line-height: 1.7;
}

.review-content p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviewer-image {
        width: 40px;
        height: 40px;
    }

    .reviewer-name {
        font-size: 1rem;
    }
}

/* Dropdown Menu Styles */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    .footer-bottom {
        width: 78vw;
    }
}

.navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    margin-top: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .dropdown-item {
    color: var(--text-dark);
    font-size: clamp(13px, 2vw, 15px);
    padding: 8px 24px;
    transition: all 0.2s ease;
    opacity: 1;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    color: var(--primary-color);
    background-color: rgba(75, 73, 172, 0.05);
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.2s ease;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(-180deg);
    }
}

/* Mobile Dropdown Specific Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-left: 0;
        padding: 1rem 0;
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
    }

    .navbar-nav .dropdown-toggle.show::after {
        transform: rotate(-180deg);
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* Email Verification Screen */
.email-verification-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: url('../images/learning-college.jpg') center/cover no-repeat fixed;
    opacity: 0;
    transition: all 0.3s ease;
}

/* For standalone verification page */
.email-verification-screen[style*="display: flex"] {
    opacity: 1;
}

.verification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.verification-card {
    position: relative;
    max-width: 680px;
    width: 90%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.verification-card:hover {
    transform: translateY(-5px);
}

.verification-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(86, 79, 253, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(86, 79, 253, 0.4);
}

.verification-icon::before,
.verification-icon::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.verification-icon::before {
    width: 140%;
    height: 140%;
    background: rgba(86, 79, 253, 0.1);
    z-index: -1;
}

.verification-icon::after {
    width: 170%;
    height: 170%;
    background: rgba(86, 79, 253, 0.05);
    z-index: -2;
}

.verification-icon:hover::before {
    transform: scale(1.1);
}

.verification-icon:hover::after {
    transform: scale(1.15);
}

.verification-icon i {
    font-size: 48px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.verification-icon:hover i {
    transform: scale(1.1);
}

.verification-card h2 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: #1B1B3F;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.verification-text {
    font-size: clamp(16px, 3vw, 18px);
    color: #666;
    margin-bottom: 12px;
}

.verified-email {
    font-size: clamp(18px, 3.5vw, 20px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding: 12px 32px;
    background: rgba(86, 79, 253, 0.1);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.verified-email:hover {
    background: rgba(86, 79, 253, 0.15);
    transform: translateY(-2px);
}

.verification-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #666;
    margin-bottom: 32px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.verification-btn {
    min-width: 200px;
    height: 56px;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 8px 15px rgba(86, 79, 253, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.verification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(86, 79, 253, 0.3);
    color: white;
}

.change-email-link {
    color: #666;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 16px);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
}

.change-email-link:hover {
    color: var(--primary-color);
    background: rgba(86, 79, 253, 0.05);
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .verification-card {
        padding: 32px 24px;
    }

    .verification-icon {
        width: 100px;
        height: 100px;
    }

    .verification-icon i {
        font-size: 40px;
    }

    .verification-card h2 {
        font-size: 28px;
    }

    .verification-text {
        font-size: 16px;
    }

    .verified-email {
        font-size: 18px;
        padding: 10px 24px;
    }

    .verification-subtext {
        font-size: 14px;
        max-width: 90%;
    }

    .verification-btn {
        min-width: 180px;
        height: 48px;
        font-size: 16px;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Footer Styles */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 40px 0 20px;
        text-align: center;
    }

    .main-footer .container > .row > div {
        margin-bottom: 2.5rem;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .main-footer h4 {
        width: 100%;
        margin: 0 auto 1.25rem;
    }

    .social-links {
        justify-content: center;
        margin: 1.5rem auto;
    }

    .main-footer ul {
        padding: 0;
    }

    .main-footer ul li {
        margin-bottom: 1rem;
    }

    .main-footer ul li a {
        transform: none;
        padding: 0.5rem 0;
    }

    .main-footer ul li a:hover {
        transform: none;
    }

    .app-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .app-buttons img {
        max-width: 160px;
    }

    .language-selector {
        display: flex;
        justify-content: center;
    }

    .language-selector .form-select {
        width: 100px;
        text-align: center;
        margin: 0 auto;
    }

    .footer-bottom {
        align-items: baseline;
        text-align: center;
        margin-top: 2rem;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
}

/* Additional Mobile Footer Refinements */
@media (max-width: 767.98px) {
    .main-footer {
        padding: 40px 20px;
    }

    .main-footer .container > .row > div {
        margin-bottom: 2rem;
    }

    .footer-logo {
        height: 35px;
    }

    .main-footer h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .main-footer ul li a {
        font-size: 0.9rem;
    }

    .app-buttons img {
        max-width: 140px;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon-link {
        width: 35px;
        height: 35px;
    }
}

/* Currency Styles */
.expertTutor_dashboard_currency,
.expertTutor_myRequests_currency,
.expertTutor_jobDetail_currency {
    font-weight: 500;
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 0.8rem);
    margin-right: 0.3rem;
}

@media (max-width: 767.98px) {
    .expertTutor_dashboard_currency,
    .expertTutor_myRequests_currency,
    .expertTutor_jobDetail_currency {
        font-size: 0.7rem;
    }
}
a{
    text-decoration: none;

}

.swal2-question, .swal2-icon {
    display: none !important;
}