

    .card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .card-body {
        padding: 2rem 2.5rem;
    }

    .card-title {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-weight: 500;
        font-size: 14px;
        color: #555;
    }

    .form-control {
        border-radius: 8px;
        padding: 10px 12px;
        border: 1px solid #ddd;
        box-shadow: none !important;
        transition: border-color .2s ease-in-out;
    }

    .form-control:focus {
        border-color: #007bff;
    }

    .btn-primary {
        background: #007bff;
        border: none;
        padding: 10px 18px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background: #0069d9;
    }

    .btn-outline-secondary {
        border-radius: 8px;
        font-weight: 500;
    }

    .alert {
        border-radius: 8px;
        padding: 10px 15px;
    }

    .togglebutton {
        top: 35px;
        right: 10px;
        border-radius: 6px;
        padding: 6px 10px;
    }

    .form-text {
        font-size: 0.85rem;
        color: #6c757d;
    }

    #previewImg {
        border-radius: 8px;
        margin-top: 5px;
        border: 1px solid #ddd;
        padding: 4px;
    }

    .page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .page-header h2 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2d3436;
    }

    .breadcrumb {
        font-size: 0.9rem;
        color: #6c757d;
    }

    hr {
        border-top: 1px solid #ddd;
        margin: 25px 0;
    }

    .text-danger {
        font-weight: 500;
    }

    .position-relative .btn.togglebutton {
        position: absolute;
        right: 8px;
        top: 34px;
        z-index: 2;
    }

    .plan-cards {
        gap: 50px;
    }

    .plan-card {
        /* flex: 1; */
        flex: 0 0 240px;
        background-color: #4a73c1;
        color: #fff;
        text-align: center;
        padding: 0px;
        height: auto !important;
        cursor: pointer;
        border-radius: 5px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .plan-card.selected {
        border: 2px solid #ffd700;
        box-shadow: 0 0 10px #ffd700;
    }

    .plan-card h5 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .plan-card p {
        /* margin: 16px 0; */
        font-size: 20px;
    }

    .plan_details{
        margin: 15px 0px 10px 0px
    }

    .plan-card img {
        display: block;
        max-width: 400px;
        max-height: 200px;
        width: 100%;
        /* height: auto; */
        margin: 0 auto 15px;
        border-radius: 0px;
        transition: transform 0.3s ease, filter 0.3s ease;
        background: white;
        height: 80px;
        object-fit: contain;
        object-position: center;
        /* margin-top: 10px; */
    }

    .plan-card .learn-more {
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
    }

    .discount-blink {
        animation: blinkText 1.2s ease-in-out infinite;
        font-weight: bold;
    }

    .text-discount{
        font-size: 13px;
        text-decoration: line-through;
    }

    @keyframes blinkText {
        0% { opacity: 1; }
        50% { opacity: 0.35; }
        100% { opacity: 1; }
    }

    .position-relative .btn.togglebutton {
        position: absolute;
        right: 15px;
        top: 28px;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .plan-card {
            flex: 0 0 30%;
            height: 270px;
        }

        .plan-card h5 {
            font-size: 1rem;
        }

        .plan-card p {
            font-size: 13px;
            margin: 3px 0;
        }
    }

    @media (max-width: 500px) {
        .plan-cards {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .plan-card {
            flex: 0 0 70%;
            /* max-width: 75%;
            padding: 0px 0px; */
            height: auto;
        }

        .plan-card p {
            font-size: 13px;
            /* margin: 4px 0; */
        }

        .plan-card img {
            max-width: 250px;
            max-height: 60px;
        }
    }

    .hero-section {
        /* background: url('assets/images/Forrest.jpg') center/cover no-repeat; */
        position: relative;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .watermark {
        position: absolute;
        bottom: 20px;
        right: 20px;
        padding: 5px 12px;
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.95);
        background: rgba(0,0,0,0.2);
        letter-spacing: 0.5px;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-title {
        position: relative;
        z-index: 2;
        background: #fff;
        color: #000;
        padding: 12px 30px;
        border-radius: 10px;
        font-size: 28px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .logoSection {
        position: absolute;
        top: 20px;      /* distance from top */
        left: 20px;     /* distance from left */
        z-index: 3;     /* above overlay */
    }

    .logoSection img {
        height: 50px;   /* adjust as needed */
        width: auto;
    }


    body {
        font-family: "Poppins", sans-serif !important;
        font-weight: 400 !important;
        background-color: #e5f3f9 !important;
        overflow-x: hidden !important;
        -webkit-font-smoothing: antialiased !important;
    }

    .feilds {
    position: relative;
    width: 100%;
}

.feilds input {
    width: 100%;
    padding-right: 40px; /* space for eye icon */
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.feilds .togglebutton {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
}

.feilds .togglebutton:hover {
    color: #000;
}

.perfeactSolutionForm .feilds button {
    width: 45% !important;
    float: right !important;
    padding: 12px 20px !important;
    margin-bottom: 15px;
}

.plan-scroll {
  display: flex;
  overflow: auto;
  width: 100%;
  gap: 40px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.plan-scroll::-webkit-scrollbar {
  height: 6px;
}

.plan-scroll::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.logout-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
}

.logout-btn {
    padding: 6px 14px;
    border: 2px solid #fff;
    color: #fff !important;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.logout-btn:hover {
    background: #fff;
    color: #000 !important;
}

.edit-background-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 10px;
}

.edit-background-btn:hover {
    background: #0056b3;
}

.details-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: 0.25s;
    border: 1px solid #ddd;
}

.details-btn:hover {
    background: #ddd;
    color: #000;
}

.switch {
    position: absolute;
    width: 55px;
    height: 5px;
    display: inline-block;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 3px; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 30px;
    height: 20px !important;
    width: 90% !important;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.toggle-text {
    font-family: Inter, sans-serif;
    font-size: 15px;
    margin-left: 55px;
    vertical-align: middle;
}

#auto_renew{
    margin-top: 5px;
    color: mediumblue;
}

.vip-badge {
    position: relative;
    top: 0px;
    right: 0px;
    background: #ffbf00;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px;
    z-index: 10;
}

.back-btn{
    position: absolute;
    left: 25px;
    top: 10px;
    padding: 12px 18px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg,#4e73df,#224abe);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover{
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

 .packs-section {
    text-align: center;
}

.title {
    margin-bottom: 40px;
    font-weight: 600;
}

.packs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pack-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    width: 320px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-6px);
}

.icon {
    width: 70px;
    height: 70px;
    background: #5ea6c7;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.pack-card ul {
    text-align: left;
    padding-left: 18px;
    height: 120px;
    margin-bottom: 25px;
}

.pack-card ul li {
    margin-bottom: 6px;
}

.select-btn {
    background: #2c86c9;
    border: none;
    padding: 10px 24px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

/* .select-btn:hover {
    background: #1f6ea8;
} */

.select-btn:disabled {
    background: grey;
}

.packs-wrapper {
    padding: 20px;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pack-card:hover {
    transform: translateY(-4px);
}

.pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    margin-bottom: 20px;
    height: 50px;
}

.pack-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    width: 200px;
}

.pack-header span {
    font-weight: 600;
    background: linear-gradient(90deg, #3da5e0, #2d6fd3);
    color: white;
    width: 100px;
}

.pack-features {
    padding-left: 18px;
    margin-bottom: 35px;
    color: #555;
}

.pack-features li {
    margin-bottom: 6px;
}

.price {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #2f9be6, #246ecf);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 12px;
}

/* .select-btn:hover {
    opacity: 0.9;
} */

.details-link {
    display: block;
    text-align: center;
    color: #2f7edb;
    font-weight: 500;
    text-decoration: none;
}

.details-link:hover {
    text-decoration: underline;
}

#myModal{
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
}

.verify-modal {
    border-radius: 14px;
    padding: 10px 20px 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.or-divider {
    font-weight: 600;
    color: #777;
}

.select-btn {
    background: linear-gradient(90deg, #3da5e0, #2d6fd3);
    border: none;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

/* .select-btn:hover {
    transform: translateY(-1px);
} */

.toggle-text-new{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ff3c00;
}



body {
    font-family: Arial, sans-serif;
    background: #c7dbf6;
}
.app-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    margin-bottom: 140px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    place-self: center;
}

.headertitle h2 {
    margin: 0;
    font-weight: 600;
}

.headertitle p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

/* Layout */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Image Card */
.image-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.image-card img {
    width: 100%;
    max-height: 500px;
}

.image-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 48px;
    font-weight: 300;
}

/* Plan Card */
.plan-card-new {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.plan-card-new h3 {
    margin-top: 0;
    font-size: 28px;
}

.pricenew {
    background: #e3edf7;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 28px;
    color: #1f7acb;
    margin: 15px 0;
}

.credits {
    color: #555;
    margin-bottom: 20px;
}

.purchase-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #2b7fc8, #1a5ea8);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.purchase-btn:hover {
    opacity: 0.9;
}


.header-form{
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    color: #333;
    display: inline-block;
    border-bottom: 2px solid #d2d2d2;
    padding-bottom: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.form-logo{
    width:40px;
    margin-right:12px;
}

.hero-section-new{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:40px 0;
}

.hero-section-new .left{
    width:420px;
    height:500px;
    background-image:url('../images/UI_1.png');
    background-size:cover;
    background-position:center;
}

.hero-section-new .left.start-animation{
    animation: changeImage 15s infinite;
}

@keyframes changeImage {

0%{
background-image:url('../images/UI_1.png');
}

20%{
background-image:url('../images/UI_2.png');
}

40%{
background-image:url('../images/UI_3.png');
}

60%{
background-image:url('../images/UI_4.png');
}

80%{
background-image:url('../images/UI_5.png');
}

100%{
background-image:url('../images/UI_1.png');
}

}

.hero-section-new .right{
    max-width:480px;
}

.hero-section-new.right h1{
    font-size:42px;
    margin-bottom:10px;
    color:#222;
}

.hero-section-new .line{
    width:80px;
    height:4px;
    background:#2b78c5;
    margin:15px 0 20px;
}

.hero-section-new .right p{
    font-size:18px;
    color:#666;
    line-height:1.6;
}

.hero-section-new .buttons{
    margin-top:30px;
    margin-bottom:30px;
}

.hero-section-new .btn_new{
    padding:16px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    margin-right:15px;
    display:inline-block;
}

.hero-section-new .blue{
    background:#2b78c5;
    color:#fff;
}

.hero-section-new .green{
    background:#2ecc71;
    color:#fff;
}

.hero-section-new .features{
    display:flex;
    gap:60px;
}

.hero-section-new .features ul{
    padding:0;
    margin:0;
}

.hero-section-new .features li{
    list-style:none;
    margin-bottom:12px;
    font-size:16px;
    color:#555;
}

.hero-section-new .features li::before{
    content:"●";
    color:#2b78c5;
    margin-right:10px;
}

.top-header{
    background:#3f6e9c;
    color:white;
    text-align:center;
    padding:25px 20px 30px;
    position:relative;
}

.top-header h1{
    margin:0;
    font-size:36px;
    font-weight:600;
}

.top-header-new{
    display:flex;
    align-items:center;
    background:#3f6e9c;
    color:white;
    gap:12px;
    padding:25px 20px 30px;
}

.top-header-new h3{
    margin:0;
    font-weight:600;
}

.top-header-new h4{
    margin-left: auto;
    background: #3232a8;
    padding: 5px 10px;
}

.nav-icons{
    position:absolute;
    width:100%;
    top:20px;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

.back-btn-new{
    width:40px;
    height:40px;
    background:white;
    color:#3f6e9c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
}


.equipment-section{
    text-align:center;
    padding:40px 0;
}

.marquee{
    overflow:hidden;
    width:100%;
    margin-top:30px;
}

.marquee-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation: scroll 25s linear infinite;
}

.equip{
    width:160px;
    text-align:center;
}

.equip img{
    width:120px;
    height:90px;
    object-fit:contain;
}

.equip p{
    font-size:16px;
    margin-top:10px;
    color:#333;
}

.equip span{
    color:#1e7bd7;
    font-weight:600;
}

@keyframes scroll{
0%{
    transform:translateX(0);
}

100%{
    transform:translateX(-50%);
}

}

@media (max-width:480px){

.app-container{
    padding:15px;
}

.plan-card-new{
    padding:20px;
}

.pricenew{
    font-size:22px;
}

.purchase-btn{
    font-size:16px;
    padding:12px;
}

.hero-section-new .right p{
    font-size:15px;
}

.hero-section-new .btn_new{
    padding:12px 20px;
    margin-bottom:10px;
}

.pack-header{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.pack-header span{
    width:auto;
}

}

@media (max-width:768px){

.back-btn{
    left:10px;
    top:10px;
    padding:10px 14px;
    font-size:12px;
}

.packs-grid{
    grid-template-columns:1fr;
}

.pack-card{
    width:100%;
}

.hero-section-new{
    padding:20px 0;
}

.hero-section-new .left{
    height:260px;
}

.hero-section-new .right h1{
    font-size:28px;
}

.hero-section-new .features{
    flex-direction:column;
    gap:20px;
}

.top-header h1{
    font-size:26px;
}

.equip{
    width:120px;
}

.equip img{
    width:90px;
    height:70px;
}

}

@media (max-width:1024px){

.content{
    grid-template-columns:1fr;
}

.hero-section-new{
    flex-direction:column;
    text-align:center;
}

.hero-section-new .left{
    width:100%;
    height:380px;
}

.hero-section-new .right{
    max-width:100%;
}

.packs-grid{
    grid-template-columns:repeat(2,1fr);
}

.pack-header h3{
    width:auto;
    font-size:18px;
}

.image-text{
    font-size:36px;
}

}


.feilds input:focus {
    border: 1px solid #ccc !important;
}