/*=============== index page css ============*/

body {
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

nav {
    z-index: 9999 !important;
}

.navbar {
    padding-top: 12px !important;
}

/* Menu center */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.menu-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
    margin-right: 8px;
    display: inline;
    align-items: center;
    justify-content: center;
}

/* Reduce menu spacing */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 300;
    padding: 8px 14px !important;
}

/* Right button styling */
.auth-buttons a {
    font-size: 15px;
}

.auth-buttons .btn {
    padding: 8px 22px !important;
}

/* Mobile responsive navbar */
@media (max-width: 991px) {
    .nav-center {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .auth-buttons {
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .auth-buttons .btn {
        margin-top: 10px;
    }
}
/* Desktop - normal logo */
.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* Mobile / Responsive */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 50%; /* Mobile par 50% width */
        height: auto; /* Aspect ratio maintain */
    }
}

.heading-bold {
    font-weight: 600; 
    font-size: 35px;  /* bold */
}

.heading-light {
    font-weight: 200;   /* normal */
}

/* Top Gradient Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #0473C4, #E2F3FF);
    color: white;
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

.btn-main {
    background: white;
    color: #0d6efd;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 40px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 40px;
}

/* Mobile responsive hero section */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 15px 180px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 13px !important;
    }
    
    .btn-main, .btn-outline {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 10px auto !important;
    }
}

/* CENTER BOX */
.image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    margin-top: -40px;
    padding: 0;
}

.image-wrapper img {
    margin: 0;
    padding: 0;
    display: block;
}

/* LEFT + RIGHT IMAGES */
.side-img {
    width: 420px;
    height: auto;
    transform: scale(1);
}

/* CENTER IMAGE  */
.center-img {
    width: 600px;
    height: auto;
    position: relative;
    z-index: 3;
    transform: translateY(-15px) scale(1.1);
    box-shadow: 0px 15px 40px rgba(74, 146, 240, 0.25);
}

.hero-section .hero-title,
.hero-section p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    
}
.hero-section p {
    font-size: 13px !important;
}
/* Mobile responsive image wrapper */
@media (max-width: 1200px) {
    .side-img {
        width: 280px;
    }
    
    .center-img {
        width: 450px;
    }
}

@media (max-width: 992px) {
    .side-img {
        width: 200px;
    }
    
    .center-img {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .image-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: -40px;
    }
    
    .side-img {
        display: none;
    }
    
    .center-img {
        width: 90%;
        max-width: 400px;
        transform: none;
        margin-bottom: 20px;
    }
}

.overlap-section {
    position: relative;
    width: 100%;
    height: 200px;         
    background: white;
    margin-top: -60px;      
    z-index: 3;              
    
   clip-path: polygon(
        0% 0%,       
        50% 15%,     
        100% 0%,     
        100% 100%,   
        0% 100%      
    );
}

/* Mobile responsive overlap section */
@media (max-width: 768px) {
    .overlap-section {
        height: 100px;
        margin-top: -30px;
        clip-path: polygon(
            0% 0%,       
            50% 10%,     
            100% 0%,     
            100% 100%,   
            0% 100%      
        );
    }
}

.feature-container {
    max-width: 1000px;  
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0674C5;
}

.feature-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 90px; 
}

/* Mobile responsive feature container */
@media (max-width: 768px) {
    .feature-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

.feature-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.active-text {
    color: #0473C4;
}

.disabled-text {
    color: #0473C4;  
    opacity: 0.4;    
}

/* Progress Bars */
.feature-bar {
    height: 6px;
    border-radius: 6px;
    background-color: #dee2e6;
    display: inline-block;
    width: 180px; 
    min-width: 80px; 
}

.feature-bar .progress-bar {
    height: 8px;
    border-radius: 6px;
    width: 100%;
}

.active-bar {
    background-color: #0473C4;
}

.disabled-bar {
    background-color: #82b3fd; 
    opacity: 0.4;
}

/* Mobile responsive feature bars */
@media (max-width: 768px) {
    .feature-row .col-md-3 {
        margin-bottom: 25px;
    }
    
    .feature-bar {
        width: 150px;
    }
}

.overlap-section-new {
    position: relative;
    width: 100%;
    height: 80px;         
    background: #F2F9FF;      
    z-index: 3;              
    
   clip-path: polygon(
        0% 0%,     
        50% 80%,     
        100% 0%,     
        100% 100%,   
        0% 100%      
    );
}

/* Mobile responsive overlap section new */
@media (max-width: 768px) {
    .overlap-section-new {
        height: 50px;
        clip-path: polygon(
            0% 0%,     
            50% 40%,     
            100% 0%,     
            100% 100%,   
            0% 100%      
        );
    }
}

.recording-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-img {
    width: 100%;
    height: auto;
}

.card-img-two {
    width: 100%;
    height: auto;
    border-top: 25px solid #0A77C6;
    border-left: 25px solid #0A77C6;
    border-right: 25px solid #0A77C6;
    border-radius: 10px;
}

/* Mobile responsive card images */
@media (max-width: 768px) {
    .card-img-two {
        border-top: 15px solid #0A77C6;
        border-left: 15px solid #0A77C6;
        border-right: 15px solid #0A77C6;
    }
}

.card-title {
    font-size: 20px;
    margin-top: 12px;
}

.card-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.overlap-section-two {
    position: relative;
    width: 100%;
    height: 100px;      
    background: #F2F9FF;
    z-index: 3;

    
    clip-path: polygon(
        0% 0%,      
        100% 0%,     
        100% 30%,     
        50% 100%,     
        0% 30%        
    );
}

/* Mobile responsive overlap section two */
@media (max-width: 768px) {
    .overlap-section-two {
        height: 70px;
        clip-path: polygon(
            0% 0%,      
            100% 0%,     
            100% 40%,     
            50% 100%,     
            0% 40%        
        );
    }
}
.pricing-card-one {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #0473C4;
}

.pricing-card {
    background: #C6E7FF;
    border-radius: 20px;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #0473C4;
    
}

.plan-title {
    font-size: 16px;
    font-weight: 700;
    color: #0473C4;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #0473C4;
}

.plan-price small {
    font-size: 13px;
    color: #6c757d;
}

.plan-description {
    font-size: 12px;
    color: #0574C4;
    font-weight: 600;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
}

.plan-features li {
    font-size: 12px;
    color: #0574C4;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.plan-features li i {
    font-size: 12px;
}

.pricing-btn .btn,
.pricing-btn-one .btn {
    min-width: 100px;
    background: #ffffff;
    color: #0473C4;
    font-size: 12px;
    border: 1px solid #0473C4;
}

.pricing-btn .btn-primary,
.pricing-btn-one .btn-primary {
    background: #ffffff;
    color: #0473C4;
    border: 1px solid #0473C4;
}



.btn-outline-primary {
    border: 1px solid #0473C4;
    color: #0473C4;
}

.btn-outline-primary:hover {
    background: #0473C4;
    color: #ffffff;
}

.btn-secondary {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: #ffffff;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* Center the container with gaps */
.container-pricing {
    max-width: 1050px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pricing-card-one, 
    .pricing-card {
        margin-bottom: 15px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .plan-title {
        font-size: 15px;
    }
    
    .plan-price {
        font-size: 18px;
    }
    
    .pricing-btn .btn,
    .pricing-btn-one .btn {
        min-width: 80px;
        font-size: 11px;
    }
}




.testimonial-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}
@media (max-width: 768px) {
    .testimonials-wrapper .p-5 {
        padding: 1rem; /* reduce padding on mobile */
    }

    .testi-img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper .p-5 {
        padding: 0.5rem;
    }

    .testi-img {
        max-width: 100%;
    }
}


.accordion-button {
    text-align: center;       
    font-weight: 600;
    color: #0473C4 !important; 
    border-radius: 12px;
    padding: 1rem 1.5rem;
    position: relative;
}

.accordion-button:focus {
    box-shadow: none;
}
/* Bootstrap default arrow hide */
.custom-acc-btn::after {
    display: none;
}

/* Add custom plus sign */
.custom-acc-btn {
    position: relative;
}

.custom-acc-btn::before {
    content: "+";
    font-size: 20px;
    font-weight: bold;
    color: #0473C4;
    position: absolute;
    right: 15px;   /* adjust spacing */
}

/* When opened (minus sign) */
.custom-acc-btn:not(.collapsed)::before {
    content: "-";
}

.accordion-button .accordion-icon {
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);  
}

.accordion-item {
    border-width: 2px !important;
    border-radius: 30px;
}
.custom-accordion {
    border-radius: 5px;
    overflow: hidden;   /* IMPORTANT – cuts inner edges cleanly */
}
.custom-accordion .accordion-item {
    border: none;
}
.custom-accordion .accordion-button {
    border-radius: 0 !important;
}

.accordion-body {
    font-size: 14px;
    color: #0473C4;   
}

.footer-section {
   background: linear-gradient(to bottom, #0A77C6 0%, #51a0d8 85%, #b7dcf5 100%);

    color: white;
    font-size: 14px;
    position: relative;
}

.footer-overlap {
    position: absolute;
    top: -60px;  
    left: 0;
    width: 100%;
    height: 60px; 
    background:  #0A77C6;
    clip-path: polygon(
    0% 0%,      
    50% 80%,   /* deeper notch */
    100% 0%,    
    100% 100%,  
    0% 100%
);

    z-index: 1;
}

/* Mobile responsive footer overlap */
@media (max-width: 768px) {
    .footer-overlap {
        top: -40px;
        height: 40px;
        clip-path: polygon(
            0% 0%,     
            50% 40%,     
            100% 0%,     
            100% 100%,   
            0% 100%      
        );
    }
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section hr {
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
    position: relative;
}

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

.footer-section ul li {
    margin-bottom: 20px; 
}

.footer-contact p {
    opacity: 0.85;
    line-height: 2.2;
    margin: 0;
    font-size: 13px;
}

.footer-contact a.footer-link {
    display: inline-block;
    margin-bottom: 5px;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-section .row > div {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-section .d-flex {
        flex-direction: column;
        gap: 15px;
    }
}

/* General mobile improvements */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn {
        white-space: nowrap;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
}


.testimonials-wrapper {
    padding: 0px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -8px;
    flex-wrap: wrap;
    position: relative;
    background:#F2F9FF;
}
.testimonials-wrapper img{
    width:1180px;
}
/* CARD BASE */
.t-card {
    width: 350px;
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
    position: relative;
}



/* HEADER */
.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.t-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.t-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.t-header p {
    margin: 0;
    opacity: 0.7;
}

/* TEXT */
.t-text {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 14px;
}

/* ROTATIONS  */
.rotate-1 { transform: rotate(-10deg); top: 40px; left: -40px; }
.rotate-2 { transform: rotate(8deg); top: -20px; }
.rotate-3 { transform: rotate(-6deg); top: 30px; }
.rotate-4 { transform: rotate(7deg); top: -10px; }
.rotate-5 { transform: rotate(-8deg); top: 20px; }
.rotate-6 { transform: rotate(5deg); top: -20px; }

/* ============================================
   FULL MOBILE-APP RESPONSIVE OPTIMIZATION
   ============================================ */
@media (max-width: 576px) {

    /* GLOBAL FIXES */
    body {
        overflow-x: hidden !important;
    }

    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* NAVBAR */
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        font-size: 16px !important;
    }

    .auth-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* HERO SECTION APP STYLE */
    .hero-section {
        padding: 100px 10px 150px !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 36px;
    }

    .hero-desc {
        font-size: 16px !important;
    }

    .btn-main, 
    .btn-outline {
        width: 90% !important;
        padding: 12px !important;
        margin: 8px auto !important;
        display: block !important;
        border-radius: 50px;
    }

    /* HERO IMAGES */
    .image-wrapper {
        flex-direction: column !important;
        margin-top: -20px !important;
    }

    .side-img {
        display: none !important;
    }

    .center-img {
        width: 92% !important;
        max-width: 360px;
        transform: none !important;
    }

    /* OVERLAP SECTIONS */
    .overlap-section,
    .overlap-section-new,
    .overlap-section-two {
        height: 60px !important;
    }

    /* FEATURES SECTION */
    .feature-container {
        padding: 0 15px !important;
        text-align: center;
    }

    .section-title {
        font-size: 22px !important;
    }

    .feature-bar {
        width: 120px !important;
    }

    /* CARDS RESPONSIVE */
    .recording-card {
        margin-bottom: 25px;
    }

    /* PRICING SECTION */
    .pricing-card,
    .pricing-card-one {
        width: 100% !important;
        margin-bottom: 25px !important;
        padding-bottom: 30px;
    }

    .plan-title {
        font-size: 18px !important;
    }

    .plan-price {
        font-size: 28px !important;
    }

    .pricing-btn .btn,
    .pricing-btn-one .btn {
        margin-top: 40px !important;
    }

   

    /* FOOTER FIX */
    .footer-section {
        text-align: center !important;
    }

    .footer-section ul li {
        margin-bottom: 10px !important;
    }

    .footer-overlap {
        height: 35px !important;
    }
}

/* ======================next page css ==========================*/


/* -------------------- MAIN SPLIT -------------------- */
.split-wrapper {
    display: flex;
    height: 800px;
    position: relative;
}

.side {
    flex: 1; /* make both sides equal width */
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Left & Right Backgrounds */
/* Background images are now set inline in Blade templates using asset() helper */
/* .left {
    background-image: url("../images/next1.png");
}

.right {
    background-image: url("../images/next2.png");
} */

/* Overlay to darken bottom */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45));
}

/* Divider Line in center */
.divider-center {
    width: 2px;
    background: rgba(255,255,255,0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* -------------------- TOP BAR -------------------- */
.top-bar {
    width: 100%;
    height: 40px;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bottom-tab {
    position: relative;
    width: 100%;
    background: #ffffff; /* bottom tab background */
    text-align: center;
    padding: 20px 0 20px; /* space top & bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-tab .center-image {
    width: 300px; /* image size */
    max-width: 80%;
    margin-top: -65px; /* responsive */

}

.bottom-tab .back-link {
    
    text-decoration: none;
    color: #1F86CE; /* link color */
    font-size: 14px;
    margin-top: -55px;
}

.bottom-tab .back-arrow img {
    width: 60px; /* arrow size */
    height: auto;
}
/* -------------------- CONTENT -------------------- */
.content {
    position: absolute;
    bottom: 70px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.content h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.content h5 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
}

/* Buttons */
.btn-blue,
.btn-white {
    width: 200px;
    padding: 10px 70px 10px 70px;
    border-radius: 30px;
    margin: 7px auto;
    font-size: 15px;
    border: none;
    display: block;
}

.btn-blue {
    background: linear-gradient(to right, #55ABE3, #0272C3);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #0473C4;
    font-weight: 600;
    
}

.desc {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.9;
}



.back-link {
    text-decoration: none;
    color: #0473C4;
    font-size: 16px;
    font-weight: 500;
}

.underline {
    width: 70px;
    height: 3px;
    background: #0073d8;
    margin: 8px auto 0;
    border-radius: 10px;
}


@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        width: 100%;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 20px !important;
    }

    .top-bar .logo {
        margin-top: 0;
        padding: 10px 40px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 25%,
            90% 100%,
            10% 100%,
            0 25%
        );
    }

  @media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        width: 100%;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 20px !important;
    }

    .top-bar .logo {
        margin-top: 0;
        padding: 10px 40px;
        /* clip-path removed for mobile */
    }

    /* Split wrapper column for mobile */
    .split-wrapper {
        flex-direction: column;
        min-height: auto; /* let content determine height */
    }

    .side {
        height: 300px; /* adjust per your content */
    }

    /* Divider hide in mobile */
    .divider, .divider-center {
        display: none;
    }

    /* Overlay stays same */
    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45));
    }

    /* Content center adjust */
    .content {
        bottom: 40px;
        padding: 0 20px;
    }

    .content h4 {
        font-size: 22px;
    }

    .content h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
.bottom-tab .center-image {
    width: 300px;
    max-width: 80%;
    margin-top: -40px;
}
    /* Buttons full width */
    .btn-blue,
    .btn-white {
        width: 90%;
        max-width: 320px;
        padding: 10px 20px;
        font-size: 15px;
        margin: 10px auto;
    }

    .desc {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 12px;
    }

    /* Bottom tab full width mobile with rounded corners */
    .bottom-tab {
        width: 100%;
        height: 15px;
        margin-top: 0;
        border-radius: 20px 20px 0 0; /* rounded top corners */
        padding-top: 12px;
        /* clip-path removed for mobile */
    }

    .back-link {
        font-size: 15px;
    }

    .underline {
        width: 60px;
        height: 3px;
    }
}
}


@media (max-width: 768px) {
    header {
        height: 60px !important; /* mobile header height */
    }

    header img {
        width: 120px ; /* mobile logo width */
        height: auto; /* maintain aspect ratio */
    }
}

/* ===================signin signup login css =========================*/

/* ===== Scroll Control ===== */
.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden !important; /* Desktop scroll prevent */
}

@media (max-width: 900px) {
    .no-scroll {
        overflow: auto !important; /* Mobile scroll allow */
        height: auto;
    }
}

/* ===== Container ===== */
.new-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

/* ===== Left Side ===== */
.left-side {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

.left-side .logo img {
    width: 190px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.left-side h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0473C4;
    text-align: center;
}

/* ===== Form ===== */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

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

.form-group input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #3a7bd5;
    border-radius: 25px;
    font-size: 16px;
    background: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0473C4;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0473C4;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    background: #fff;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #3a7bd5;
}

/* Error messages */
.form-group .error-message {
    display: block !important;
    color: #dc3545 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-top: 8px !important;
    padding-left: 15px !important;
    text-align: left !important;
    line-height: 1.4 !important;
}

.form-group input.is-invalid {
    border-color: #dc3545 !important;
}

.form-group input.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15) !important;
}

.form-group input.is-invalid + label {
    color: #dc3545 !important;
}

/* Remember me checkbox */
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #0473C4;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0473C4;
}

.remember-me label {
    position: static;
    transform: none;
    cursor: pointer;
}

form button {
    padding: 12px 24px;
    background: #0473C4;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    width: 100%;
}

form button:hover {
    background: #0365a5;
}

form button:disabled {
    background: #6ba3d4;
    cursor: not-allowed;
}

/* Button Spinner Loader */
.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
    box-sizing: border-box;
}

button.loading .btn-spinner,
.btn-loading .btn-spinner {
    display: inline-block !important;
}

button.loading .btn-text,
.btn-loading .btn-text {
    opacity: 0 !important;
}

button .btn-text {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

button.loading,
.btn-loading {
    pointer-events: none;
    cursor: wait;
    opacity: 0.9;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-text,
.signin-link {
    font-size: 12px;
    color: #0473C4;
    text-align: center;
    margin-top: 2%;
}

.signin-link a {
    color: #0473C4;
    text-decoration: none;
    font-weight: 600;
}

.signin-link a:hover {
    text-decoration: underline;
}

/* ===== Right Side ===== */
.right-side {
    flex: 1;
    background: #0473C4;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    overflow: hidden;
}

.right-side h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 28px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.5;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .new-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .left-side,
    .right-side {
        width: 100%;
        flex: none;
        padding: 30px 20px;
        overflow: visible;
    }

    .left-side {
        order: 2;
        justify-content: flex-start;
    }

    .right-side {
        order: 1;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .left-side h1 {
        font-size: 28px;
    }

    .right-side h2 {
        font-size: 24px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 10px;
    }
}

.add-beneficiary-btn {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid 0473C4; /* blue border */
    color: #0473C4;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* icon right */
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.add-beneficiary-btn:hover {
    background: #f0f6ff;
}

.plus-icon {
    font-size: 18px;
}

.beneficiary-dropdown {
    margin-top: 10px;
    border-left: 3px solid #3a7bd5;
    padding-left: 10px;
    width: 100% !important;
    max-width: 100% !important;
}

.beneficiary-dropdown .form-group input {
    margin-bottom: 15px;
}

.beneficiary-dropdown .row {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 10px;
}

.forgot-password a {
    color: #0473C4;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
.otp-wrapper {
    text-align: center; 
    margin-bottom: 20px;
}

.otp-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.otp-boxes {
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-bottom: 12px;
}

.otp-input {
    width: 45px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid #0473C4;
    outline: none;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
}

.otp-input:focus {
    border-color: #103364;
}

.resend-box {
    font-size: 13px;
    margin-top: 5px;
    color: #555;
}

.resend {
    color: #0473C4;
    text-decoration: none;
    font-weight: 600;
}
.resend:hover {
    text-decoration: underline;
}

.dashboard-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem; /* mt-5 equivalent */
}

.dashboard-img {
    width: 800px;       /* default desktop size */
    max-width: 100%;    /* ensures it never exceeds container */
    height: auto;       /* maintain aspect ratio */
    display: block;
    margin: 0 auto;
    border: 1px solid #0574C4;
    border-radius: 20px;
}

/* Tablet / Medium Screens */
@media (max-width: 992px) {
    .dashboard-img {
        width: 600px;   /* reduce width */
    }
}

/* Small Screens / Mobile */
@media (max-width: 768px) {
    .dashboard-img {
        width: 90%;     /* responsive width */
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .dashboard-img {
        width: 100%;    /* full width */
        border-radius: 15px; /* optional smaller radius */
    }
}



/* ======================Dashbord css =================== */

/* Top bar */
/* TOP BAR */
.w2u-topbar {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Buttons */
.w2u-btn {
    border: none;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 16px;
    color: #0473C4;
    font-size: 0.9rem;
}

.w2u-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px; /* button roundness */
    background: #0473C4; /* red logout button */
    color: #fff;
    border: none;
    cursor: pointer;
}

.logout-icon-wrapper {
    width: 30px;
    height: 30px;
    background: #fff;       /* background behind icon */
    border-radius: 50%;     /* circular */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}


/* Welcome */
.w2u-welcome {
    margin: 20px 0;
}
.w2u-welcome small { color: #777; }
.w2u-welcome h2 { font-weight: 700; color: #000000; }



/* Stats Boxes */
.stats-box {
    flex: 1 1 22%;
    background: #fff;
    border-radius: 55px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.stats-text h6{
    color: #0574C4;
    font-size: 13px;
    opacity: 0.8;
    
}
.stats-icon {
    background: #DCF1FF;
    color: #0776C5;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid #0776C5;
    
}
@media (max-width: 600px) {
  .stats-row {
    max-width: 100% !important;
  }
}

.action-text h5{
   color: #0574C4;
   font-weight: 600;
   font-size: 18px;
   
}
.action-text p{
 color: #3790D0;
 font-size: 14px;
 opacity: 0.8;
 font-weight: 100;
}
/* Quick Actions */
.action-card {
    flex: 1 1 48%;
    background: #fff;
    border-radius: 55px;
    padding: 12px 16px 12px 8px;
/*   top  right  bottom left  */

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.action-left { display: flex; align-items: center; gap: 15px; }
.action-icon {
   width: 65px;
    height: 65px;
    background: #DCF1FF;
    color: #0776C5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0776C5;
    font-size: 1.5rem;
}
.action-btn button {
    border: none;
    background: #0776C5;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 12px;
}

/* Search Area */
.w2u-search-area {
    display: flex;
    gap: 10px;
}
.w2u-search-input {
    width: 260px;
    padding: 10px 16px;
    border-radius: 40px;
    border: 1px solid #0776C5;
    background: transparent;
    outline: none;
    color: #0776C5;
}
.w2u-search-btn {
    background:  #0776C5;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
}

/* Message Cards */
.w2u-msg-card {
    display: flex;
    justify-content: space-between;
    padding: 2px 8px;
    background: #fff;
    border-radius: 55px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.w2u-msg-card h6{
   color: #0574C4;
   font-weight: 600;
   font-size: 20px;
}
.w2u-actions {
    display: flex !important;
    align-items: center !important;
     
}

.w2u-actions img .btn{
    margin: 0 !important;
    padding: 4px 8px !important; /* Adjust button padding if needed */
    min-height: 36px !important;
}
.custom-play-btn {
    margin: 20px 0;      /* add your margin */
    padding: 10px 26px !important; 
    background-color: #0473C4;
    font-size: 13px;  /* custom padding */
}


.big-count {
    font-size: 28px;       /* big size */
    font-weight: 700;      /* bold */
}

.big-count::after {
    content: " / ";        /* slash between spans */
    font-size: 20px;
    font-weight: 400;
}

.small-count {
    font-size: 16px;       /* smaller */
    font-weight: 500;
    opacity: 0.8;
}


/* Default (desktop) ka layout aapka jo bhi hai rehne do */

/* Mobile Responsive */
@media (max-width: 600px) {

  .action-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  .action-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 10px;
    text-align: left !important;
  }

  .action-text h5,
  .action-text p {
    text-align: left !important;
  }

  .action-btn {
    width: 100%;
  }

  .action-btn button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
  }
}


@media (max-width: 768px) {

    body {
        padding: 0 12px;
    }

    .w2u-topbar {
        padding: 10px 16px;
    }

    /* Stats — full width */
    .stats-box {
        flex: 1 1 100%;
        border-radius: 18px;
    }

    /* Quick Actions — full width */
    .action-card {
        flex: 1 1 100%;
        border-radius: 18px;
        padding: 18px;
    }

    /* Search area — stack vertically like app */
    .w2u-search-area {
        flex-direction: column;
        width: 100%;
    }
    .w2u-search-input {
        width: 100%;
    }
    .w2u-search-btn {
        width: 100%;
        padding: 12px;
    }

    /* Message list — full width clean app style */
    .w2u-msg-card {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 18px;
    }

    .w2u-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .w2u-play {
        flex: 1;
        text-align: center;
    }

    .w2u-icon {
        font-size: 1.4rem;
    }
}


/*================== mothly-plan page css ===================*/
        .plan-box {
            display: flex;
            justify-content: space-between;
            width: 100%;
            background: #fff;
            padding: 25px 30px 20px 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            gap: 30px;
        }

        .plan-left {
            flex: 1;
        }

        .small-heading {
            font-size: 13px;
            opacity: 0.7;
            margin-bottom: 4px;
        }

        .plan-title {
            font-size: 20px;
            color: #0473C4;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .active {
            font-size: 11px;
            color: #0272C3;
            border: 1px solid #0272C3;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

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

        .features li {
            display: inline-block;
            margin-right: 10px;
            font-size: 13px;
            color: #000;
        }

        .tick {
            color: #0abf4f;
            font-weight: bold;
        }

        .plan-right {
            flex: 1;
            text-align: right;
        }

        .billing-title {
            font-size: 13px;
            opacity: 0.7;
        }

        .billing-date {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        .btn-small-primary {
             width: 120px;
            border-radius: 20px;
            font-size: 13px;
            padding: 8px 0px;
            font-weight: 600;
            cursor: pointer;
            margin: 4px;
            margin-top: 7px;
        }
        .btn-outline-small {
            width: 120px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 4px;
            padding: 8px 0;
        }

        .btn-small-primary {
            background: #0473C4;
            color: #fff;
            border: none;
        }

        .btn-outline-small {
            border: 2px solid #0473C4;
            background: #fff;
            color: #0473C4;
        }

        .plan-btn-row {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        @media (max-width: 768px) {
            .plan-box {
                flex-direction: column;
                text-align: left;
            }

            .plan-right {
                text-align: left;
            }

            .plan-btn-row {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary-small,
            .btn-outline-small {
                width: 100%;
            }
        }

        .billing-table {
            width: 100%;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #C6E7FF;
        }

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

        .billing-table th {
            font-size: 13px;
            padding-bottom: 10px;
            background-color:  #C6E7FF;
            padding-top: 10px;
            padding-left: 50px;
            color: #0574C4;
            
        }

        .billing-table td {
            padding: 10px 0px 10px 50px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        .status-paid {
            color: #0abf4f;
            font-weight: 600;
        }

        .invoice-link {
            color: #0473C4;
            text-decoration: none;
        }
@media (max-width: 600px) {
    .billing-table table,
    .billing-table thead,
    .billing-table tbody,
    .billing-table th,
    .billing-table td,
    .billing-table tr {
        display: block;
        width: 100%;
        text-align: left !important; 
    }

    .billing-table thead {
        display: none;
    }

    .billing-table tr {
        margin-bottom: 15px;
        background: #fff;
        padding: 12px 15px;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0,0,0,0.08);
    }

    .billing-table td {
        display: flex;
        flex-direction: column; /* Label uper, value neeche */
        padding: 8px 0;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left !important; /* Left align */
    }

    .billing-table td:last-child {
        border-bottom: none;
    }

    .billing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        margin-bottom: 3px;
        text-align: left !important; /* Label bhi left */
    }
}
/* Border radius left-right */
.billing-table thead th:first-child {
    border-top-left-radius: 12px;
}

.billing-table thead th:last-child {
    border-top-right-radius: 12px;
}

        .divider {
           width: 100%;
            height: 1px;
            background: #000;
            opacity: .15;
            margin: 15px 0;
        }
  .storage-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px 20px;
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 420px;
  }

  .storage-info h5 {
    margin: 0;
    font-size: 14px;
    color: #0574C4;
    opacity: 0.6;
  }

  .storage-info p {
    margin: 5px 0 0;
    font-size: 18px;
    color: #0574C4;
    font-weight: 600;
  }

  .circle-progress {
    position: relative;
    width: 80px;
    height: 80px;
  }

  .circle-progress svg {
    transform: rotate(-90deg);
  }

  .circle-progress circle {
    fill: none;
    stroke-width: 8;
    r: 36;
    cx: 40;
    cy: 40;
  }

  .circle-bg {
    stroke: #eee;
  }

  .circle-bar {
    stroke: #0473C4;
    stroke-linecap: round;
    stroke-dasharray: 226; 
    stroke-dashoffset: 113; 
    transition: stroke-dashoffset 1s ease;
  }

  .circle-progress span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 16px;
    color: #2a638b;
  }

.settings-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.settings-section .section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0574C4;
    padding: 14px 0px 0px 16px;
}

.settings-section .form-floating {
    width: 100%;
    margin-bottom: 15px;
}

.settings-section .form-control {
    height: 50px;
    font-size: 12px;
}

.settings-section .form-floating label {
    font-size: 12px;
}
.form-floating input{
    border-radius: 50px;
    border: 1px solid #0574C4;
}

.btn-save {
    background: #0574C4;
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 25px;
    border: none;
    font-size: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
}

.btn-save:hover {
    background: #0574C4;
}

.btn-save .btn-spinner {
    display: none;
}

.btn-save:disabled {
    opacity: 0.8;
    cursor: wait;
}

/* TWO INPUTS SIDE BY SIDE */
.settings-section .row {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0px 14px 0px 14px;
}


.settings-section .row > .col-6,
.settings-section .row > .col-md-6 {
    padding-left: 8px;
    padding-right: 8px;
    width: 50%;
}

.settings-section form {
    width: 100% !important;
    max-width: 100% !important;
}

.settings-section .profile-form {
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .settings-section .row > .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.delete-account-section {
    background: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   
}

.delete-account-section h5 {
    margin-bottom: 10px;
    color: #0574C4;
}

.delete-account-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color:#0574C4 ;
}

.delete-account-section .btn-danger {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
}

/* Pagination Styles */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination li {
    margin: 0;
}

/* Remove all transitions and transform */
.pagination .page-link {
    display: block;
    padding: 10px 18px;
    color: #0A66C2;
    text-decoration: none;
    background: linear-gradient(145deg, #ffffff, #f2f4f8);
    border-radius: 12px;
    font-weight: 600;
    min-width: 44px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    border: none !important;   /* Fix border conflict */
    transition: none !important;
}

.pagination .page-link:hover {
    background: #0A66C2;
    color: #fff;
    box-shadow: 0 6px 12px rgba(10, 102, 194, 0.15);
}

/* ACTIVE STATE — with no border, no movement */
.pagination .page-item.active .page-link {
    background: #0A66C2;
    color: #fff;
    box-shadow: 0 4px 8px rgba(10, 102, 194, 0.25);
    border: none !important;
    transition: none !important;
}

.pagination .page-item.active .page-link:hover {
    background: #0A66C2;
    color: #fff;
    box-shadow: 0 4px 8px rgba(10, 102, 194, 0.25);
    border: none !important;
}
.page-item.active{
 border: 1px solid transparent;
} 
/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #9aa0a6;
    pointer-events: none;
    background-color: #ffffff;
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    border: none !important;
}

.pagination .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border-width: 0;
}


/* Modal Background */
.modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.55);
}

/* Modal Content */
#playMediaModal .modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Header */
#playMediaModal .modal-header {
    padding: 15px 20px;
    background: #F5F9FF;
    border-bottom: 1px solid #e7eaf0;
}

#playMediaModal .modal-title {
    font-weight: 600;
    color: 0574C4
}

/* Close Button */
#playMediaModal .btn-close {
    background-size: 50%;
    opacity: 0.6;
}
#playMediaModal .btn-close:hover {
    opacity: 1;
}

/* Modal Body */
#playMediaModal .modal-body {
    padding: 20px 20px 0px 20px;
    background: #ffffff;
}

/* Video & Audio Player */
#videoPlayer,
#audioPlayer {
    border-radius: 12px;
    background: #000;
    outline: none;
}

/* Make controls nicer */
#videoPlayer::-webkit-media-controls-panel,
#audioPlayer::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    #playMediaModal .modal-dialog {
        margin: 10px;
    }
    #videoPlayer {
        max-height: 300px;
    }
}
/* Modal Background Blur */
/* Backdrop Blur */
#recordModal + .modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.55);
}

/* Modal Dialog */
#recordModal .modal-dialog {
    max-width: 500px; 
    margin: 30px auto;
    height: 400px; 
}

/* Modal Content */
#recordModal .modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Modal Header */
#recordModal .modal-header {
    padding: 12px 16px;
    background: #F5F9FF;
    border-bottom: 1px solid #e7eaf0;
}
#recordModal .modal-title {
    font-weight: 600;
    color: #0574C4;
    font-size: 16px;
}
#recordModal .btn-close {
    background-size: 50%;
    opacity: 0.6;
}
#recordModal .btn-close:hover {
    opacity: 1;
}

/* Modal Body */
#recordModal .modal-body {
    padding: 16px 18px 0px 16px;
    background: #ffffff;
    
}

/* Form Labels */
#recordModal label.form-label {
    font-weight: 600;
    color: #0574C4;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* Inputs & Textarea */
#recordModal .form-control,
#recordModal textarea {
    border-radius: 8px;
    border: 1px solid #d7dce3;
    padding: 6px 10px;
    font-size: 13px;
    height: 32px;
}
#recordModal textarea {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
}
#recordModal .form-control:focus,
#recordModal textarea:focus {
    border-color: #0473C4;
    box-shadow: 0 0 0 0.15rem rgba(4,115,196,0.25);
}


#recordModal small.form-text {
    font-size: 12px;
    line-height: 1.2;
}

/* Divider */
#recordModal .divider {
    height: 1px;
    background: #e7eaf0;
    margin: 12px 0;
}

/* Recording Section */
#recordModal #recordingControls button {
    padding: 6px 16px;
    border-radius: 28px;
    font-size: 14px;
}
#recordModal #recordingControls .btn-primary {
    background: #0473C4;
    border: none;
}
#recordModal #recordingControls .btn-danger {
    background: #EB5757;
    border: none;
}

/* Timer */
#recordModal #recordingTimer .badge {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
}

/* Video Preview */
#recordModal #previewVideo {
    border-radius: 10px;
    background: #000;
    max-height: 250px;
}

/* Audio Preview Card */
#recordModal #audioPreview {
    border-radius: 10px;
    padding: 8px;
}

/* Recorded File Display */
#recordModal #recordedFileDisplay .alert {
    border-radius: 8px;
    background: #eaf5ff;
    border: 1px solid #cfe8ff;
    padding: 6px 10px;
    font-size: 13px;
}
#recordModal #recordedFileDisplay .btn-outline-danger {
    border-radius: 50%;
    padding: 4px 6px;
    width: 28px;
    height: 28px;
}

/* Discard Button */
#discardRecordBtn {
    background-color: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}
#discardRecordBtn:hover {
    background-color: #dc3545;
    color: #fff;
}

/* Footer */
#recordModal .modal-footer {
    padding: 12px 16px;
    border-top: 1px solid #e7eaf0;
    background: #f9fbff;
}
#recordModal #saveRecordBtn {
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 576px) {
    #recordModal .modal-dialog {
        margin: 10px;
        
    }
    #recordModal #previewVideo {
        max-height: 180px;
    }
    #recordModal #recordingControls button {
        width: 100%;
        margin-bottom: 8px;
    }
    #recordModal .modal-body {
        padding: 12px;
    }
}

.btn-view-new {
    background-color: #0dcaf0;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 18px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-view-new:hover {
    background-color: #31d2f2;
}

.btn-status-pill {
   background-color: #ffc107;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 25px 18px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    height: 0px !important; 
    min-height: 45px !important; 
    width: auto !important; 
    margin-top: -2px !important;
}
.btn-clear-custom {
    background-color: #f8f9fa; /* light gray bg */
    color: #e20808; /* text color */
    border: 1px solid #e20808; /* subtle border */
    border-radius: 50px; /* pill shape */
    padding: 6px 16px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 14px 0px 2px 0px !important;
}
.btn-cancel-pill {
    background-color: #f8f9fa; /* light gray bg */
    color: #f30808; /* dark text */
    border: 1px solid #e20808;
    border-radius: 50px; /* pill shape */
    padding: 10px 16px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 40px;
}

.btn-cancel-pill:hover {
    background-color: #e20808; /* slightly darker bg */
    border-color:#e20808;    /* red border */
    color: #ffffff;            /* red text */
}
.btn-clear-custom:hover {
    background-color: #e2e6ea; /* slightly darker on hover */
    color: #495057; /* darker text */
    border-color: #adb5bd; /* slightly darker border */
}
form .btn-delete-new {
    padding: 10px 18px !important;
    background-color: #dc3545 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px !important;
    width: auto !important;
    margin: 0 !important;
    cursor: pointer;
}


.btn-delete-new i {
    font-size: 12px !important; /* icon smaller */
}

.btn-delete-new:hover {
    background-color: #c82333 !important;
}


/* ================================
   PREMIUM PACKAGE CARD DESIGN
================================ */
.premium-card {
    border: none !important;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 8px 22px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
}



/* Header */
.premium-card-header {
    background: linear-gradient(135deg, #4a6cf7, #6a8bff);
    color: #fff !important;
    padding: 15px 20px;
}

/* Body */
.premium-card-body {
    padding: 20px;
}

/* Footer */
.premium-card-footer {
    background: #f8f9ff;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e5e7ff;
}

/* Edit Button */
.premium-btn-edit {
    background: #4a6cf7 !important;
    border: none !important;
    padding: 6px 14px;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 500;
    transition: 0.3s;
}

.premium-btn-edit:hover {
    background: #3b56d8 !important;
}

/* Inactive state border */
.border-warning {
    border: 2px solid #ffca2c !important;
}


.btn-custom {
    background-color: #0A77C6;
    color: #fff;
    border: none;
    border-radius: 50rem;  /* pill shape */
    padding: 0.5rem 2.5rem; /* optional, adjust button size */
    font-weight: 500;       /* optional, better look */
}


/* Button with icon clean style */
.btn-icon-btn {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Remove focus/active border/shadow on click */
.btn-icon-btn:focus,
.btn-icon-btn:active,
.btn-icon-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; /* spacing between all items */
    font-size: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
}
.delete-para{
    color:#0071C2;
    opacity: 0.6;
    font-size: 13px;
}

/* Upload Progress Indicator (Google Drive style) */
.upload-progress-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.upload-progress-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    animation: slideInRight 0.3s ease;
}

.upload-progress-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-progress-icon {
    font-size: 24px;
    color: #0473C4;
    flex-shrink: 0;
}

.upload-progress-icon i {
    display: block;
}

.upload-progress-info {
    flex: 1;
    min-width: 0;
}

.upload-progress-filename {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.upload-progress-status {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.upload-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0473C4, #0a9eff);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.upload-progress-actions {
    flex-shrink: 0;
}

.upload-progress-retry {
    background: none;
    border: none;
    color: #0473C4;
    cursor: pointer;
    padding: 4px 8px;
    margin-right: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.upload-progress-retry:hover {
    background-color: #E8F4FD;
    color: #035A9E;
}

.upload-progress-retry i {
    font-size: 16px;
}

.upload-progress-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.upload-progress-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Animation for new upload items */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .upload-progress-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Toast Notifications */
.toast-container {
    z-index: 9999;
}

.toast {
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.toast-body {
    font-size: 14px;
    padding: 12px 16px;
}

.toast-body strong {
    margin-right: 8px;
}

.toast-body i {
    margin-right: 8px;
    font-size: 18px;
}

/* Mobile responsive for toasts */
@media (max-width: 576px) {
    .toast-container {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        padding: 0 !important;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }
}

label{
    margin-left: 5px;  
    padding-top: 5px; 
    font-weight: 800;   
}



.big-card {
    min-height: 420px;
    margin-top: 180px; /* adjust slightly if needed */
}
@media (min-width: 992px) {
    .seventh-card {
        padding: 1.5rem !important; /* Increased padding for 7th card */
    }
    
    .seventh-card .seventh-card-title {
        font-size: 26px !important; /* Increased from 16px */
        margin-bottom: 12px !important;
    }
    
    .seventh-card .seventh-card-price {
        font-size: 26px !important; /* Increased from 20px */
        margin-bottom: 12px !important;
    }
    
    .seventh-card .seventh-card-price small.seventh-card-small {
        font-size: 15px !important; /* Increased from 13px */
    }
    
    .seventh-card .seventh-card-description {
        font-size: 20px !important; /* Increased from 12px */
        line-height: 2em !important;
        -webkit-line-clamp: 3 !important; /* Show more lines */
        max-height: 4.5em !important;
    }
    
    .seventh-card .seventh-card-features li {
        font-size: 16px !important; /* Increased from 12px */
        margin-bottom: 16px !important;
    }
    
    .seventh-card .seventh-card-features li i {
        font-size: 15px !important;
    }
    
    .seventh-card .seventh-card-btn {
        font-size: 14px !important; /* Increased from 12px */
        padding: 6px 12px !important;
        min-width: 120px !important;
    }
}

/* Keep mobile styles consistent */
@media (max-width: 991px) {
    .seventh-card .seventh-card-title {
        font-size: 16px;
    }
    
    .seventh-card .seventh-card-price {
        font-size: 20px;
    }
    
    .seventh-card .seventh-card-description {
        font-size: 12px;
    }
    
    .seventh-card .seventh-card-features li {
        font-size: 12px;
    }
    
    .seventh-card .seventh-card-btn {
        font-size: 12px;
    }
}