/* planning page css  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    min-height: 100vh;
    background-image: url('/public/admin/uploads/site/def.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 3, 44, 0.8), rgba(17, 3, 44, 0.7));
}

.content {
    position: relative;
    z-index: 1;
    padding: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.8rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tabs {
    margin-top: 1.5rem;
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-button {
    padding: clamp(0.5rem, 2vw, 0.8rem) clamp(1rem, 3vw, 1.5rem);
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-button:hover,
.tab-button.active {
    background: rgba(147, 112, 219, 0.9);
    color: white;
    transform: translateY(-2px);
}

.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 clamp(2rem, 4vw, 3rem);
}

.cards-container {
    display: none;
    gap: clamp(0.05rem, 0vw, 1.5rem);
    position: relative;
    transition: transform 0.5s ease;
    justify-content: center;
    width: 100%;         
    padding: 0 1rem;  
}


.cards-container.active {
    display: flex;
}

.card {
     margin-right: 1.125rem;
    min-width: calc(25% - 1.125rem); /* Added min-width */
    flex: 0 0 calc(25% - 1.125rem);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card.selected {
    background: rgba(147, 112, 219, 0.9);
    color: white;
}

.card img {
    width: 100%;
    height: clamp(150px, 25vw, 180px);
    object-fit: cover;
}

.card-content {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.card h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.card p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.5;
    color: #666;
}

.card.selected h3,
.card.selected p {
    color: white;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    border: none;
    border-radius: 50%;
    background: rgba(147, 112, 219, 0.9);
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: rgba(147, 112, 219, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.choose-button {
    width: clamp(180px, 30vw, 200px);
    margin: 2rem auto 0;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: rgba(147, 112, 219, 0.9);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.choose-button:hover {
    background: rgba(147, 112, 219, 1);
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .card {
        min-width: calc(50% - 1.125rem);
          flex: 0 0 calc(100% - 1rem);
    }
    .content {
        padding: 10px;
    }
}

@media (max-width: 992px) {
    .cards-container {
 
    justify-content: flex-start;
  
}
 
    .card {
        min-width: calc(50% - 1.125rem);
         flex: 0 0 calc(100% - 1rem);
    }
    .slider-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .cards-container {
 
    justify-content: flex-start;
  
}
    .card {
        min-width: calc(50% - 1.125rem);
        flex: 0 0 calc(100% - 3rem);
    }
    .content {
        padding: 5px;
    }
    .tab-buttons {
        gap: 0.5rem;
    }
    .slider-container {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    .tab-button {
        width: 100%;
        max-width: 250px;
    }
    .slider-container {
        padding: 0 1.5rem;
    }
}

/* end  */


/* singup form */

/* Base Styles */
body.signup-page {
    background-image: url('/public/admin/uploads/site/def.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

/* Signup Wrapper */
.signup-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

/* Header and Progress Bar */
.signup-header {
    margin-bottom: 40px;
}

.progress-wrapper {
    max-width: 500px;
    margin: 20px auto;
}

.progress {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: rgba(147, 112, 219, 0.9);
    transition: width 0.5s ease-in-out;
}

.progress-text {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Content Layout */
.signup-content {
    display: flex;
    gap: 30px;
}

/* Navigation Panel */
.panel-navigation {
    width: 300px;
}

.nav-card {
    margin-bottom: 15px;
    cursor: pointer;
}

.nav-card .card {
    transition: transform 0.3s ease;
}

.nav-card .card:hover {
    transform: translateX(10px);
}

.nav-card.active .card {
    border-color: rgba(147, 112, 219, 0.9);
}

.forward-icon {
    float: right;
    font-size: 20px;
    color: rgba(147, 112, 219, 0.9);
}

/* Forms */
.form-container {
    flex: 1;
}

.signup-form {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.signup-form.active {
    display: block;
}

/* New Form Grid Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
}

/* Special handling for textarea */
.form-group.full-width {
    flex: 0 0 100%;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
}

.custom-file-upload {
    display: block;
    padding: 12px;
    background: #f5f5f5;
    border: 1px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.custom-file-upload input[type="file"] {
    display: none;
}

/* Buttons */
.btn-proceed,
.btn-submit {
    background-color: rgba(147, 112, 219, 0.9);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-proceed:hover,
.btn-submit:hover {
    background-color: rgba(147, 112, 219, 1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .signup-content {
        flex-direction: column;
    }
    
    .panel-navigation {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding-top: 20px;
    }
    
    .signup-wrapper {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .signup-wrapper {
        padding: 15px;
        margin: 10px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* end  */

/* login form start  */



.login-v2-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.login-v2-video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.login-v2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 3, 44, 0.8), rgba(17, 3, 44, 0.7));
    z-index: -1;
}

.login-v2-main-container {
    width: 100%;
    max-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: login-v2-fadeIn 1s ease-out;
    overflow-y: auto;
    margin: 2rem auto;
}

.login-v2-company-logo {
    width: 140px;
    margin-bottom: 2rem;
    border-radius: 8px;
    animation: login-v2-slideDown 1s ease-out;
}

.login-v2-welcome-heading {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    animation: login-v2-slideDown 1.2s ease-out;
}

.login-v2-content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
}

.login-v2-slider-section {
    flex: 1;
    padding: 1rem;
}

.login-v2-slider-container {
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.login-v2-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    padding: 0 1rem;
}

.login-v2-slide.login-v2-active {
    opacity: 1;
    transform: translateY(0);
}

.login-v2-slide-heading {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.login-v2-slide-subheading {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.login-v2-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.login-v2-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-v2-indicator.login-v2-active {
    width: 16px;
    border-radius: 4px;
    background: rgba(147, 112, 219, 1);
}

.login-v2-login-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    animation: login-v2-fadeIn 1.5s ease-out;
}

.login-v2-website-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border-radius: 4px;
}

.login-v2-form-group {
    margin-bottom: 1.5rem;
}

.login-v2-form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.login-v2-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.login-v2-form-group input:focus {
    outline: none;
    border-color: #5046e4;
}

.login-v2-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-v2-remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.login-v2-forgot-password {
    color: #5046e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-v2-forgot-password:hover {
    color: white;
}

.login-v2-login-button {
    width: 100%;
    padding: 0.75rem;
    background: #5046e4;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-v2-login-button:hover {
    background: #5046e4;
}

.login-v2-signup-text {
    text-align: center;
    color: white;
    margin-top: 1rem;
}

.login-v2-signup-text a {
    color: rgba(147, 112, 219, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-v2-signup-text a:hover {
    color: white;
}

.login-v2-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.login-v2-divider::before,
.login-v2-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-v2-divider span {
    padding: 0 10px;
}

.login-v2-social-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-v2-social-login:hover {
    background: rgba(255, 255, 255, 0.2);
}

.login-v2-social-login img {
    width: 24px;
    height: 24px;
}

@keyframes login-v2-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes login-v2-slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .login-v2-main-container {
        height: auto;
        min-height: 0;
    }
    
    .login-v2-content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .login-v2-slider-section {
        width: 50%;
    }

    .login-v2-login-section {
        width: 50%;
        max-width: 450px;
    }

    .login-v2-slide {
        text-align: left;
    }

    .login-v2-slider-indicators {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .login-v2-welcome-heading {
        font-size: 2rem;
    }

    .login-v2-main-container {
        padding: 1rem;
        margin: 1rem;
    }

    .login-v2-content-wrapper {
        gap: 1rem;
    }

    .login-v2-slider-container {
        height: 250px;
    }

    .login-v2-slide-heading {
        font-size: 1.5rem;
    }

    .login-v2-slide-subheading {
        font-size: 0.9rem;
    }
}

@media (max-height: 700px) {
    .login-v2-main-container {
        margin: 1rem auto;
    }
    
    .login-v2-welcome-heading {
        margin-bottom: 1.5rem;
    }
    
    .login-v2-company-logo {
        margin-bottom: 1rem;
    }
}


/* end login form  */