
.Pricing .navbar-brand img {
    width: 60%;
}
.Pricing .footer-logo img {
    width: 70%;
}



.pricing-section {
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1400px;
    width: 100%;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
   font-family: Playfair Display;
font-weight: 700;
font-size: 40px;
line-height: 100%;
text-align: center;
text-transform: capitalize;
color:#161616;
    margin-bottom: 15px;
}
.section-title p {
   font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 28px;
text-align: center;
color:#161616;

}

/* --- Main Tab Toggle --- */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.toggle-wrapper {
    background: white;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.toggle-btn {
    border: none;
    background: transparent;
    padding: 12px 60px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #888;
    letter-spacing: 0.5px;
}
.toggle-btn.active {
    background-color: #407B96;
    color: white;
}

/* --- Billing Switch --- */
.billing-switch-wrapper {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
}
.billing-switch-wrapper.active-view {
    display: flex;
}
.billing-label.active {
    color: #407B96;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: white;
    border: 1px solid #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: #407B96;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider:before {
    transform: translateX(22px);
}

/* --- Pricing Cards --- */
.pricing-content {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
}
.pricing-content.active {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 1400px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 10px;
    border: 1px solid #f0f0f0;
}
.card:hover {
    transform: translateY(-5px);
}
.card.highlight {
    border: 1px solid #407B96;
    position: relative;
}
.card.highlight h3 {
    color:#fff;
}
.card.highlight .price-box span {
    color:#fff;
}
.badge-best-value {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #C69C54;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Card Internals */
.card-header {
    background-color: #e3f2fd;
    padding: 20px 15px;
    border: none !important;
    border-radius: 8px !important;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card.highlight .card-header {
    background-color: #407B96;
}
.card-header h3 {
    font-family: Montserrat;
font-weight: 700;
font-size: 16px;
line-height: 100%;
color:#427D9D;

}

.price-box {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}
.current-price {
    font-family: Montserrat;
font-weight: 700;
font-size: 20px;
line-height: 100%;
color:#161616;
}

.old-price {
     font-family: Montserrat;
    font-size: 13px;
    text-decoration: line-through;
    color: #161616;
}

.duration {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color:#161616;
}

.card-body {
    padding: 20px 15px;
    flex-grow: 1;
}
.card-body h4 {
    font-family: Playfair Display;
font-weight: 700;
font-size: 16px;
line-height: 100%;
color:#000000;
}
.card-body ul { list-style: none; padding: 10px 0px 0px 0px; margin: 0; }
.card-body ul li {
    color:#7E8082;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;

}
.card-body ul li i { color: #407B96; }
.card-footer {
    padding: 0 15px 20px 15px;
    border: none !important;
    background-color: transparent;
}
.btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}
.btn-primary { background-color: #407B96; color: white; }
.btn-primary:hover { background-color: #32627a; }
.btn-gold { background: linear-gradient(135deg, #D4AF37 0%, #C69C54 100%); color: white; }
.btn-gold:hover { background: linear-gradient(135deg, #D4AF37 0%, #C69C54 100%); color: white; }
.btn-disabled { background-color: #f0f0f0; color: #333; border: 1px solid #ddd; }
.btn-disabled:hover { background-color: #f0f0f0; color: #333;  border: 1px solid #ddd; }


/* --- COMPARISON TABLE SECTION --- */
.compare-section {
    padding: 50px 20px 80px;
}
.compare-wrapper {
    display: none;
    animation: fadeIn 0.5s ease;
}
.compare-wrapper.active {
    display: block;
}

.compare-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    padding: 30px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto; 
}

.compare-table {
    width: 100%;
    min-width: 900px; 
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table th {
    background-color: #e3f2fd; /* Light Blue Header */
    color: #1a1a1a;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px solid #e3f2fd;
    border-bottom: 1px solid #e3f2fd;
}

/* First Column Left Aligned */
.compare-table th:first-child {
    text-align: left;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-left: 30px;
}
/* Last Column Rounded */
.compare-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #222;
    padding-left: 30px;
}

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

/* Icons in table */
.bi-check-circle-fill.table-check {
    color: #407B96;
    font-size: 1.2rem;
}
.dash {
    color: #ccc;
    font-weight: bold;
    font-size: 1.2rem;
}
