:root {
    --text-color: #000000;
    --text1-color: #333;
    --text2-color: #0a0a0a;
    --textRed-color: #f04343;
    --bg-color: #ffffff;
    --bg1-color: #f7f7f7;
}



body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-btn {
    background-color: #1151bf;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before {
    left: 0;
}


.signup-login {
    display: flex;
    gap: 1rem;
}

.heading,
.thanks {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin: 0 !important;
    color: var(--text1-color);
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px var(--text1-color);
}

.thanks {
    margin-top: 0 !important;
}

.bodypart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.loginpages,
.Signup {
    display: flex;
    width: 80%;
    height: auto;
    margin: 0 auto;
    border: 2px solid black;
    border-radius: 12px;
}

.side1 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 35%;
    padding-top: 35px;
    background: aliceblue;
    border-radius: 12px;
    justify-content: center;
}

.side1>h1 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #000 !important;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 20px;
    margin-top: 12px;
    margin-bottom: 20px;
}

form input {
    color: #000;
    border-radius: 12px;
    margin: 7px 0;
    background: #ffffff87;
    padding: 12px;
    border: 2px solid #ccc;
}
form input::placeholder {
    text-shadow: none;
    color: #6c757d;
    text-transform: capitalize;
}

form p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #000 !important;
}

form a {
    color: red;
}

.errorloggin {
    position: absolute;
    left: 30px;
    padding-top: 24px
}
.submit-link{
    background-color: #1151bf;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.submit-link:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.5);
}



.feedback-link{
     position: absolute;
    top: 90px;
    right: 20px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.feedback-link:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.5);
}



.successful {
    background-color: #f0f0f0;
}

.side2 {
    display: flex;
    width: 70%;
}

.side2>img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#profile {
    align-content: center;
}

.profile-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    border: 2px solid dimgray;
    max-width: 300px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s, transform 0.3s;
    transform: scale(0.9);
    right: -10px;
    top: 57px;
    color: #f1f1f1;
    background-color: #27282c;
    border-radius: 27px;
}

.profileuppercontainer {
    display: flex;
    padding: 24px 12px;
    gap: 1rem;
    align-items: center;
}

.profileuppercontainer h2 {
    font-size: 20px !important;
    font-weight: 600;
    color: #f1f1f1;
    line-height: 1.1;
}

.Profilemenu {
    margin-top: 12px;
}

.Profilemenu a {
    display: flex;
    gap: 4px;
    align-items: baseline;
    color: #f1f1f1;
    text-decoration: none;
    padding: 12px 6px;
    font-size: 16px !important;
    font-weight: 500;
    text-shadow: 1px 1px 2px #333;
}

.Profilemenu .D-nav {
    font-size: 20px;
    padding-bottom: 5px;
    width: 40px;
}

.profile-info.active {
    opacity: 1;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto;
}


/* --------------------------------Dashboard Queries-------------------------------- */

.dashboard {
    display: flex;
    width: 100%;
    height: 100vh;
}

.dashboardMenu {
    width: 243px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboardMenu p {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.dashboardprofile {
    position: fixed;
    width: 243px;

}

.dashboardprofile section {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    min-height: 97vh;
    background-color: #f1f1f1;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dashboardprofile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px;
}

.dashboardprofile img {
    width: 57px;
    height: 57px;
    border-radius: 50%;
}

.dashboardprofile h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 5px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.dashboardprofile h6 {
    margin: 0;
}


.dashboardprofile .Profilenav {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.dashboardprofile .Profilenav a {
    text-decoration: none;
    color: #333;
    font-size: 21px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.D-nav i {
    color: #f04343;
    margin-right: 16px;
}

.dashboardprofile .Profilenav a:hover {
    background-color: #e0e0e0;
}

.dashboardprofile .Profilenav a.active {
    background-color: #d0d0d0;
}

.dashboardprofile .Profilenav a:focus {
    outline: none;
    box-shadow: 0 0 0 2px #333;
}

.logout-button {
    background-color: #f04343;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Dashboard Body Styles */
.dashboardBody {
    background: #f7f9fa;
    padding: 40px 30px 30px 30px;
    flex: 1;
    width: 100%;
    min-height: 97vh;
    margin: auto;
    border-radius: 12px;
    border: 2px solid black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#exiticon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dashboard-main {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 28px 28px 20px 28px;
    margin-bottom: 28px;
}

.dashboard-main h1 {
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;

}

.subscriptionBox {
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    background-color: #1976d2;
    font-family: 'Segoe UI', sans-serif;
}

.subscriptionBox-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.subscriptionBox-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.subscriptionBox-btn {
    width: 100%;
    background-color: #fff;
    color: #1976d2;
    padding: 9px;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid #d0d0d0;
}

.subscriptionBox-btn:hover {
    background-color: #e3f2fd;
    color: #1976d2;
    border-color: #1976d2;
}


.text-sm {
    font-size: 0.95em;

}

.dashboard-actions {
    margin: 30px 0 20px 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.action-btn {
    background: #1976d2;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: #125ea2;
}

.dashboard-tips {
    background: #e3f2fd;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 18px;
    color: #1976d2;
    font-size: 1.08em;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.07);
}

.dashboard-tips h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.15em;
    font-weight: 600;
}

.pricing {
    margin: 90px 20px;
}

.pricing-title {

    text-align: center;
    margin-bottom: 40px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.plan {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 1);
    padding: 32px 24px;
    flex: 1 1 280px;
    max-width: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
}

.plan h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.plan .tagline {
    /* color: #666; */
    font-size: 0.95em;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    margin: 10px 0;
}

.price span {
    font-size: 0.5em;
}

.features {
    margin: 20px 0;
}

.features li {
    list-style: none;
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 1em;
}

.features li i {
    margin-right: 12px;
    color: #10b981;
}

.plan button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
}

/* Specific Plan Styles */
.basic button {
    background-color: #0b0b33;
    color: white;
}

.pro {
    border: 2px solid #2563eb;
}

.pro .badge {
    background: #2563eb;
    color: white;
    font-weight: bold;
    font-size: 0.8em;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.pro button {
    background-color: #2563eb;
    color: white;
}

.elite {
    background-color: #8b5cf6;
    color: white !important;
}

.elite .features li,
.elite .features li i {
    color: white;
}

.elite button {
    background-color: white;
    color: #8b5cf6;
}

.elite .badge {
    background: #facc15;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 0.8em;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width:900px) {

    .side1 {

        width: 100%;
    }

    .side2 {
        display: none;
    }

}

/* Responsive Styles */
@media (max-width: 768px) {

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

    .signup-login {
        flex-direction: column;
        align-items: center;
    }

    .loginpages,
    .Signup {
        width: 90%;
        margin: 20px auto;
    }

    .side2 {
        display: none;
    }

    .dashboard {
        flex-direction: column;
    }

    .dashboardMenu {
        width: 100%;
        height: auto;
    }

    .dashboardprofile section {
        flex-direction: column;
        min-height: auto;
    }

    .dashboardBody {
        padding: 20px;
    }

    .heading {
        font-size: 24px;
        font-weight: bold;
    }

    .heading span {
        display: block;
        font-size: 27px;
    }

    .thanks {
        font-size: 28px;
    }

    .errorloggin {
        position: absolute;
        left: 30px;
        top: 203px;
        padding-top: 0;
    }
}