
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Manrope:wght@200..800&display=swap');

/* --- Global Reset & Container --- */
body {
    font-family: 'Inter', sans-serif!important;
  color: #333;
  line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 3rem;
    max-width: 900px;
    margin: auto;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Manrope', sans-serif;
}

.header p {
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    text-align: center;
    margin: auto;
    line-height: 1.6;
}
.sccc{
    height: 85vh;
}
.pricing-grid {
    display: flex;
    justify-content: center;
}

/* CARD */
.pricing-card {
    width: 100%;
    max-width: 1000px;
    background: #f8f9fb;
    border: 1px solid rgb(241, 241, 241);
    border-radius: 18px;
    padding: 25px 40px;
}

/* INNER LAYOUT */
.pricing-inner {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

/* LEFT SIDE (balanced width) */
.left-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RIGHT SIDE */
.right-section {
    flex: 1.5;
    background-color: #e8f0ff;
    padding: 20px;
    border-radius: 16px;
}

/* PRICE */
.price {
    font-size: 2rem;
    font-weight: 700;
    color: #5254ff;
    margin: 0px !important;
}
.priceamount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5254ff;
    margin: 0px !important;
}
.price-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 0px !important;
}

.price-period {
    font-size: 14px;
    color: #888;
}

/* TEXT */
.plan-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
}

.plan-description {
    font-size: 15px;
    font-weight: 500;
    color: #777;
    margin-bottom: 20px;
}

/* BUTTON */
.buy-btn {
    padding: 8px 40px;
    border-radius: 25px;
    font-size: 16px;
    width: fit-content;
}

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

.features li {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #404348;
}

/* ICON */
.check-icon {
    width: 16px;
    height: 16px;
    background: #4e51ff;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.check-icon::after {
    content: "✓";
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
        .header h1 {
    font-size: 2rem;
}
    .pricing-card {
        padding: 20px;
    }

    .pricing-inner {
        gap: 20px;
    }

    .left-section {
        min-width: 250px;
    }

    .right-section {
        padding: 15px;
    }
    .sccc{
    height: 100vh;
}
}

/* Mobile */
@media (max-width: 768px) {
    .header h1 {
    font-size: 1.7rem;
}
    .pricing-inner {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .buy-btn {
        width: 100%;
        text-align: center;
    }
    .sccc{
    height: 100vh;
}
}


/* Small Mobile */
@media (max-width: 480px) {
    
.header h1 {
    font-size: 1.3rem;
}
    .pricing-card {
        padding: 16px;
    }

    .price-amount {
        font-size: 24px;
    }

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

    .features li {
        font-size: 12px;
    }
    .sccc{
    height: 100vh;
}
}

/* --- Modal Styles --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px); /* modern effect */
}

/* CARD */
.modal-content {
    background: #ffffff;
    margin: 6% auto; 
    padding: 0;
    border-radius: 16px;
    width: 90%; 
    max-width: 800px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.35s ease;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-25px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* HEADER */
.modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

/* CLOSE BUTTON */
.close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.close-btn:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

/* BODY */
.modal-body {
    padding: 24px;
}

.modal-body > p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 16px;
    font-weight: 500;
}

#modalPlanName {
    font-weight: 700;
    color: #0f172a;
}

/* INFO BOX */
.warning-box {
    background: linear-gradient(135deg, #eef6ff, #e0f2fe);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 22px;
    color: #0369a1;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #bae6fd;
}

/* GRID */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

/* DROPDOWN GROUP */
.dropdown-group {
    width: 100%;
}

.dropdown-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* SELECT */
.dropdown-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f8fafc;
    transition: all 0.25s ease;
}

.dropdown-group select:hover {
    border-color: #cbd5f5;
}

.dropdown-group select:focus {
    border-color: #6366f1;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ACTIONS */
.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* BUTTON BASE */
.modal-actions .btn {
    padding: 8px 30px;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.modal-actions .btn:not(.btn-cancel) {
    background: linear-gradient(135deg, #3e41ff, #115dff);
    color: #fff;
    border: none;
}

.modal-actions .btn:not(.btn-cancel):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* CANCEL BUTTON */
.btn-cancel {
    background: #c3e1ff;
    color: #28303b;
}

.btn-cancel:hover {
    background: #9eceff;
    transform: translateY(-1px);
}

/* -------------------------
   Customer Detail Fields
-------------------------- */

.selection-grid,
.full-width-dropdown,
.form-group {
    width: 100% !important;
}

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

/* LABEL */
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* INPUT */
.form-group input,
.form-group select,
#sourceCodeType,
#clientName,
#clientEmail,
#companyName {
    width: 100% !important;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f8fafc;
    color: #0f172a;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* HOVER */
.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5f5;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus {
    border-color: #4a4dff;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ERROR */
#emailError {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        max-width: 95%;
    }

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

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.footer-copyright ul li {
  display: inline-block;
}

.footer-copyright ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 2px solid #fff;
  opacity: 80%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer_copyright {
  color: #fff;
  opacity: 80%;
}

.footer-campaign {
  text-align: center;
  background: linear-gradient(to bottom, #181f2d, #181a3d) !important;
}

