
		/* .services__icon-1 img{
			width: 10%;
		} */
		
		
		
	/* FIX NAVBAR GAP COMPLETELY */
/*main {*/
/*    margin-top: 0 !important;*/
/*    padding-top: 0 !important;*/
/*}*/

/*.container-elegant {*/
/*    margin-top: 0 !important;*/
/*    padding-top: 0 !important;*/
/*}*/

/*.section-header {*/
/*    margin-top: 0 !important;*/
/*    padding-top: 0 !important;*/
/*}*/
	
		
		
		
 #custom-cartModal .modal-content {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border: none; /* Remove default border */
        overflow: hidden; /* Ensures rounded corners apply to children */
    }

    #custom-cartModal .modal-header {
        background-color: #f8f9fa; /* Light background for header */
        border-bottom: 1px solid #e9ecef;
        padding: 20px 30px; /* More padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #custom-cartModal .modal-title {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
        font-weight: 600; /* Semi-bold */
        color: #343a40;
        font-size: 1.6rem; /* Slightly larger title */
    }

    #custom-cartModal .btn-close {
        font-size: 1.5rem; /* Larger close icon */
        color: #6c757d;
        opacity: 0.7;
        transition: opacity 0.2s ease-in-out;
    }

    #custom-cartModal .btn-close:hover {
        opacity: 1;
        color: #495057;
    }

    #custom-cartModal .modal-body {
        padding: 30px; /* Generous padding */
        color: #495057;
    }

    #custom-cartModal #cart-items {
        min-height: 100px; /* Ensure some height even when empty */
        max-height: 300px; /* Limit height for scroll if many items */
        overflow-y: auto; /* Enable scrolling for many items */
        margin-bottom: 20px; /* Space before summary */
    }

    #custom-cartModal .text-center {
        font-style: italic;
        color: #888;
        padding: 20px 0; /* Padding for empty cart message */
    }

    #custom-cartModal .cart-summary {
        display: flex;
        justify-content: space-between;
        align-items: baseline; /* Align text baselines */
        padding-top: 15px;
        border-top: 1px dashed #e9ecef; /* Dotted line for separation */
    }

    #custom-cartModal .cart-summary h5 {
        font-weight: 500;
        color: #343a40;
        font-size: 1.3rem;
    }

    #custom-cartModal #cart-total {
        font-weight: 700; /* Bold total */
        color: #007bff; /* Primary color for total */
        font-size: 1.8rem; /* Larger total */
    }

    #custom-cartModal .modal-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        padding: 20px 30px; /* Consistent padding */
        display: flex;
        justify-content: flex-end; /* Buttons to the right */
        gap: 10px; /* Space between buttons */
    }

    #custom-cartModal .modal-footer .btn {
        padding: 10px 25px; /* Larger buttons */
        font-weight: 500;
        border-radius: 8px; /* Slightly more rounded buttons */
        transition: all 0.2s ease-in-out;
    }

    #custom-cartModal .modal-footer .btn-secondary {
        background-color: #6c757d;
        border-color: #6c757d;
        color: white;
    }

    #custom-cartModal .modal-footer .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #545b62;
    }

    #custom-cartModal .modal-footer .btn-primary {
        background-color: #D35400;
        border-color: #D35400;
        color: white;
    }

    #custom-cartModal .modal-footer .btn-primary:hover {
        background-color: #FF7043;
        border-color: #FF7043;
    }

    /* Cart Icon Specifics (ensure it doesn't conflict) */
    .custom-cart-icon {
        display: inline-block; /* Helps with alignment */
        position: relative; /* For cart-count positioning */
    }

    .custom-cart-icon a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
    }

    .custom-cart-icon .fas.fa-shopping-cart {
        font-size: 1.5rem; /* Adjust as needed */
        margin-right: 5px;
    }

    .custom-cart-text {
        font-weight: 500;
        margin-right: 5px;
    }

    .custom-cart-count {
        background-color: #dc3545; /* Red for count */
        color: white;
        border-radius: 50%;
        padding: 2px 7px;
        font-size: 0.8rem;
        position: absolute; /* Position relative to .cart-icon */
        top: -8px; /* Adjust as needed */
        right: -8px; /* Adjust as needed */
        min-width: 20px; /* Ensure it's round even with single digit */
        text-align: center;
    }

    /* Override any conflicting global styles (example) */
    .modal.fade .modal-dialog {
        transform: translate(0, 0); /* Reset any conflicting transforms */
    }

    :root {
      --primary-color: #0B2447;
      --secondary-color: #A5C9CA;
      --accent-color: #E84855;
      --text-color: #333;
      --light-gray: #F5F7F8;
      --border-color: #E0E0E0;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: var(--light-gray);
    }

     .header-bar {
      background-color: #004aad;
      color: white;
      display: flex;
      justify-content: end;
      align-items: center;
      padding: 7px 93px;
     
      position: relative;
      z-index: 10;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }


    .left-section {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .left-section span {
      font-weight: 500;
      color: var(--secondary-color);
    }

    .left-section a {
      color: var(--secondary-color);
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .left-section a:hover {
      color: white;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .pricing-link {
      font-weight: 400;
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
    }

    .pricing-link:hover {
      color: var(--secondary-color);
    }

    .cart-btn, .account-btn {
      background-color: var(--secondary-color);
      color: var(--primary-color);
      padding: 8px 16px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .cart-btn:hover, .account-btn:hover {
      background-color: white;
    }

    .cart-count {
      position: absolute;
      top: -10px;
      right: -10px;
      background-color: var(--accent-color);
      color: white;
      font-size: 11px;
      font-weight: 600;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--primary-color);
    }

    .modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-backdrop.show {
      display: flex;
      opacity: 1;
    }

    .modal {
      background: white;
      width: 550px;
      max-width: 90%;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      position: relative;
      transform: translateY(-20px);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .modal-backdrop.show .modal {
      transform: translateY(0);
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: 400;
      cursor: pointer;
      color: var(--text-color);
      user-select: none;
      transition: color 0.3s ease;
    }

    .close-btn:hover {
      color: var(--accent-color);
    }

    .products-list, .checkout-form {
      margin-bottom: -6px;
    }

    .products-list h3, .checkout-form h3 {
      margin-top: 0;
      margin-bottom: -6px;
      color: var(--primary-color);
      font-weight: 600;
      border-bottom: 2px solid var(--border-color);
      padding-bottom: 8px;
    }

    .product-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .product-item:last-of-type {
      border-bottom: none;
    }

    .product-item span {
      font-size: 15px;
    }

    .product-item.total-row {
      font-weight: 600;
      border-top: 2px solid var(--accent-color);
      margin-top: 15px;
      padding-top: 15px;
    }

    form label {
      display: block;
      /*margin-bottom: 8px;*/
      font-weight: 500;
      color: var(--text-color);
    }

    form input, form textarea {
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 18px;
      padding: 12px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    form input:focus, form textarea:focus {
      outline: none;
      border-color: var(--accent-color);
      box-shadow: 0 0 5px rgba(232, 72, 85, 0.3);
    }

    form button {
      background-color: var(--accent-color);
      border: none;
      padding: 12px 20px;
      color: white;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      font-size: 16px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    form button:hover {
      background-color: #D63946;
      transform: translateY(-2px);
    }


/*.elite-nav-tabs .nav-link.active,.elite-primary-brand-bg{*/
/*    background-color:#d35400!important*/
/*}*/
/*.elite-nav-tabs,.elite-section-description{*/
/*    margin-left:auto!important;*/
/*    margin-right:auto!important*/
}
.hero h1,.section h2{
    font-family:Jost,sans-serif!important
}
.btn-hero-outline,.hero-badge{
    backdrop-filter:blur(10px)!important
}
.elite-primary-brand-color{
    color:#d35400!important
}
.elite-primary-brand-border{
    border-color:#d35400!important
}
.elite-accent-color{
    color:#ff7043!important
}
.elite-accent-bg{
    background-color:#ff7043!important
}
.elite-card-bg,.elite-nav-tabs{
    background-color:#fff!important
}
.elite-text-heading{
    color:#212529!important;
    font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif
}
.elite-text-body{
    color:#495057!important
}
.elite-text-muted{
    color:#6c757d!important
}
.elite-border-light{
    border-color:#e0e0e0!important
}
.elite-shadow-subtle{
    box-shadow:0 8px 20px rgba(0,0,0,.04)!important
}
.elite-pricing-card:hover,.elite-shadow-medium{
    box-shadow:0 20px 60px rgba(0,0,0,.08)!important
}
.elite-pricing-title,h1,h2,h3{
    font-family:Inter,sans-serif!important;
    color:#212529;
    font-weight:700!important;
    letter-spacing:-.02em!important
}
/*.elite-nav-tabs{*/
/*    font-size:40px;*/
/*    justify-content:center!important;*/
/*    margin-bottom:60px!important;*/
/*    border-radius:60px!important;*/
/*    padding:10px!important;*/
/*    box-shadow:0 8px 20px rgba(0,0,0,.04)!important;*/
/*    max-width:580px!important;*/
/*    border:1px solid #e0e0e0!important*/
/*}*/
/*.elite-nav-tabs .nav-item{*/
/*    margin:0 6px!important*/
/*}*/
/*.elite-nav-tabs .nav-link{*/
/*    color:#6c757d!important;*/
/*    background:0 0!important;*/
/*    border:none!important;*/
/*    margin:0!important;*/
/*    border-radius:50px!important;*/
/*    padding:14px 35px!important;*/
/*    transition:.35s cubic-bezier(.2, .8, .2, 1)!important;*/
/*    font-weight:500!important;*/
/*    font-size:14px!important*/
/*}*/
/*.elite-nav-tabs .nav-link:hover:not(.active){*/
/*    color:#d35400!important;*/
/*    background-color:rgba(211,84,0,.05)!important*/
/*}*/
/*.elite-nav-tabs .nav-link.active{*/
/*    color:#fff!important;*/
/*    border-color:#d35400!important;*/
/*    font-weight:600!important;*/
/*    box-shadow:0 4px 15px rgba(211,84,0,.3)!important;*/
/*    transform:translateY(-2px)!important;*/
/*    font-size:14px!important*/
/*}*/
.elite-section-heading{
    font-size:2.85rem!important;
    margin-bottom:18px!important;
    line-height:1.2!important
}
.elite-section-description{
    font-size:1.25rem!important;
    color:#6c757d!important;
    margin-bottom:60px!important;
    max-width:800px!important;
    line-height:1.5!important
}
.elite-pricing-card{
    background:#fff!important;
    border:1px solid #e0e0e0!important;
    border-radius:24px!important;
    padding:40px 30px!important;
    box-shadow:0 12px 40px rgba(0,0,0,.04)!important;
    transition:transform .4s cubic-bezier(.2, .8, .2, 1),box-shadow .4s cubic-bezier(.2, .8, .2, 1)!important;
    height:100%!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:space-between!important;
    overflow:hidden!important;
    position:relative!important;
    margin-bottom:10px
}
.elite-pricing-card:hover{
    transform:translateY(-10px) scale(1.015)!important
}
.elite-pricing-title{
    font-size:1.85rem!important;
    font-weight:800!important;
    margin-bottom:8px!important
}
.elite-pricing-subtitle{
    font-size:15px!important;
    font-weight:400!important;
    color:#6c757d!important;
    margin-bottom:25px!important;
    min-height:50px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important
}
.elite-pricing-price{
    font-size:2.2rem!important;
    color:#d35400!important;
    font-weight:800!important;
    margin-bottom:35px!important;
    display:block!important;
    line-height:1!important
}
.elite-pricing-features{
    list-style:none!important;
    padding:0!important;
    margin:0 0 25px!important;
    flex-grow:1!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important
}
.elite-pricing-features li,.hero-badge,.hero-section{
    align-items:center!important
}
.custom-account-icon .fas.fa-user,.custom-cart-icon .fas.fa-shopping-cart{
    margin-right:5px;
    font-size:1.5rem
}
.elite-pricing-features li{
    display:flex!important;
    text-align:left!important;
    margin-bottom:18px!important;
    gap:12px!important;
    font-size:15px!important;
    font-weight:500!important;
    color:#495057!important
}
.elite-pricing-features li::before{
    content:"✔"!important;
    color:#28a745!important;
    font-weight:800!important;
    font-size:1.3em!important;
    line-height:1!important;
    margin-right:-4px!important;
    display:inline-block!important;
    min-width:1.3em!important;
    text-align:center!important
}
.elite-btn-orange{
    background-color:#d35400!important;
    border:none!important;
    color:#fff!important;
    padding:24px 35px!important;
    border-radius:50px!important;
    font-weight:600!important;
    font-size:1.15rem!important;
    transition:.35s cubic-bezier(.2, .8, .2, 1)!important;
    box-shadow:0 8px 25px rgba(211,84,0,.2)!important;
    width:100%!important
}
.elite-btn-orange:hover{
    background-color:#ff7043!important;
    transform:translateY(-3px)!important;
    box-shadow:0 12px 30px rgba(211,84,0,.35)!important
}
.elite-page-container{
    padding:80px 20px!important;
    color:#495057!important;
    line-height:1.65!important;
    -webkit-font-smoothing:antialiased!important;
    -moz-osx-font-smoothing:grayscale!important
}
#custom-cartModal .modal-content{
    border-radius:12px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
    border:none;
    overflow:hidden
}
#custom-cartModal .modal-header{
    background-color:#f8f9fa;
    border-bottom:1px solid #e9ecef;
    padding:20px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center
}
#custom-cartModal .modal-title{
    font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
    font-weight:600;
    color:#343a40;
    font-size:1.6rem
}
#custom-cartModal .btn-close{
    font-size:1.5rem;
    color:#6c757d;
    opacity:.7;
    transition:opacity .2s ease-in-out
}
#custom-cartModal .btn-close:hover{
    opacity:1;
    color:#495057
}
#custom-cartModal .modal-body{
    padding:30px;
    color:#495057
}
#custom-cartModal #cart-items{
    min-height:100px;
    max-height:300px;
    overflow-y:auto;
    margin-bottom:20px;
    font-size:1.6rem
}
#custom-cartModal .text-center{
    font-style:italic;
    color:#888;
    padding:20px 0
}
#custom-cartModal .cart-summary{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    padding-top:15px;
    border-top:1px dashed #e9ecef
}
#custom-cartModal .cart-summary h5{
    font-weight:500;
    color:#343a40;
    font-size:1.3rem
}
#custom-cartModal #cart-total{
    font-weight:700;
    color:#007bff;
    font-size:1.8rem
}
#custom-cartModal .modal-footer{
    background-color:#f8f9fa;
    border-top:1px solid #e9ecef;
    padding:20px 30px;
    display:flex;
    justify-content:flex-end;
    gap:10px
}
#custom-cartModal .modal-footer .btn{
    padding:10px 25px;
    font-weight:500;
    border-radius:8px;
    transition:.2s ease-in-out
}
#custom-cartModal .modal-footer .btn-secondary{
    background-color:#6c757d;
    border-color:#6c757d;
    color:#fff
}
#custom-cartModal .modal-footer .btn-secondary:hover{
    background-color:#5a6268;
    border-color:#545b62
}
#custom-cartModal .modal-footer .btn-primary{
    background-color:#d35400;
    border-color:#d35400;
    color:#fff
}
#custom-cartModal .modal-footer .btn-primary:hover{
    background-color:#ff7043;
    border-color:#ff7043
}
.custom-cart-icon{
    display:inline-block;
    position:relative
}
.custom-account-icon a,.custom-cart-icon a{
    text-decoration:none;
    color:inherit;
    display:flex;
    align-items:center
}
.custom-account-text,.custom-cart-text{
    font-weight:500;
    margin-right:5px
}
.custom-cart-count{
    background-color:#dc3545;
    color:#fff;
    border-radius:50%;
    padding:2px 7px;
    font-size:.8rem;
    position:absolute;
    top:-8px;
    right:-8px;
    min-width:20px;
    text-align:center
}
.modal.fade .modal-dialog{
    transform:translate(0,0)
}
#paypal-button-container{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:1000;
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.1)
}
.service-card{
    background:#fff;
    border-radius:10px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
    height:100%
}
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.2)
}
#accountInfo h5,.service-card h3{
    color:#d35400;
    margin-bottom:15px
}
.service-card ul{
    padding-left:20px;
    margin-bottom:20px
}
#accountInfo p,.service-card ul li{
    margin-bottom:10px
}
.price{
    font-size:24px;
    font-weight:700;
    color:#d35400;
    margin:20px 0
}
.featured{
    border:2px solid #d35400;
    position:relative
}
.featured::before{
    content:"Popular";
    position:absolute;
    top:-12px;
    right:20px;
    background:#d35400;
    color:#fff;
    padding:5px 15px;
    border-radius:20px;
    font-size:12px;
    font-weight:700
}
.modal-body{
    padding:3rem!important;
    margin-top:46px
}
.form-label,.topbar-social-item span{
    color:#000
}
.form-control{
    font-size:1.6rem
}
.breatcome-title h1,.segment-card:hover .segment-count,.segment-card:hover .segment-icon,.segment-card:hover .segment-icon i,.segment-card:hover h3{
    color:#fff!important
}
.custom-account-icon{
    display:inline-block;
    position:relative;
    margin-left:10px
}
.custom-account-icon .fas.fa-user{
    color:#ff8c00
}
#accountTabs .nav-link{
    color:#495057;
    font-weight:500;
    padding:10px 20px;
    border:none;
    border-bottom:3px solid transparent
}
#accountInfo,.toggle-group label{
    border-radius:8px;
    background-color:#f9f9f9
}
#accountTabs .nav-link.active{
    color:#d35400;
    background-color:transparent;
    border-bottom:3px solid #d35400
}
#accountTabs .nav-link:hover:not(.active){
    color:#d35400;
    border-bottom:3px solid rgba(211,84,0,.3)
}
#accountInfo{
    padding:20px
}
#orderHistory{
    font-size:14px
}
#orderHistory th{
    background-color:#f8f9fa
}
#logoutBtn{
    background-color:#d35400;
    border:none;
    padding:17px 20px
}
#logoutBtn:hover{
    background-color:#b54500
}
.alert{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:1100;
    min-width:300px;
    text-align:center
}
body.cf-modal-open{
    overflow:visible!important;
    padding-right:0!important
}
.nav-tabs{
    margin-top:10px
}
.main-wrapper{
    display:flex;
    width:90%;
    max-width:1200px;
    min-height:700px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    margin-left:100px
}
.left-panel{
    flex:1;
    background:linear-gradient(to bottom right,#ef7f36,#fcad79);
    color:#fff;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    text-align:center;
    position:relative;
    z-index:1
}
.left-panel::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-size:cover;
    background-position:center;
    opacity:.15;
    z-index:-1
}
.display-section{
    padding:20px;
    text-align:center;
    margin-top:auto;
    margin-bottom:auto;
    width:100%
}
.display-section h3{
    font-size:70px;
    margin-bottom:5px;
    font-weight:700;
    letter-spacing:-2px
}
.display-section p{
    font-size:18px;
    opacity:.8;
    margin-top:0
}
.breakdown-details{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    width:100%;
    margin-top:30px;
    gap:20px
}
.breakdown-details div{
    font-size:20px;
    font-weight:600;
    text-align:center;
    flex-basis:45%;
    line-height:1.3
}
.breakdown-details div span{
    display:block;
    font-size:14px;
    font-weight:400;
    opacity:.7;
    margin-top:5px
}
.left-panel-footer{
    margin-top:auto;
    font-size:13px;
    opacity:.7
}
.right-panel{
    flex:2;
    background-color:#fff;
    padding:50px;
    display:flex;
    flex-direction:column
}
.form-header{
    display:flex;
    align-items:center;
    margin-bottom:40px
}
.form-header svg{
    margin-right:15px;
    min-width:32px
}
.form-header h3{
    font-size:28px;
    font-weight:600;
    color:#333;
    margin:0
}
.form-header p{
    font-size:14px;
    color:#777;
    margin-top:5px;
    margin-bottom:0
}
.project-form{
    flex-grow:1;
    padding-right:20px;
    overflow-y:auto
}
.form-group{
    margin-bottom:25px
}
.form-group label{
    display:block;
    font-size:15px;
    font-weight:500;
    color:#555;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:.5px
}
.hero h1,.section-label{
    letter-spacing:1px!important
}
.toggle-group{
    display:flex;
    flex-wrap:wrap;
    gap:10px
}
.toggle-group input[type=checkbox],.toggle-group input[type=radio]{
    display:none
}
.toggle-group label{
    padding:10px 20px;
    border:1px solid #ddd;
    cursor:pointer;
    transition:.3s;
    font-weight:500;
    color:#666;
    margin-bottom:0;
    display:inline-flex;
    align-items:center;
    white-space:nowrap
}
.program-card button,.submit-button,.test-item-actions button{
    transition:background-color .3s,transform .2s;
    cursor:pointer
}
.toggle-group input[type=checkbox]:checked+label,.toggle-group input[type=radio]:checked+label{
    background-color:#d35400;
    color:#fff;
    border-color:#fff;
    box-shadow:0 4px 8px rgba(0,0,0,.1)
}
select{
    width:100%;
    padding:10px 15px;
    border-radius:8px;
    border:1px solid #ddd;
    background-color:#f9f9f9;
    font-size:16px;
    color:#333;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:18px
}
select:focus{
    border-color:#6a1b9a;
    box-shadow:0 0 0 3px rgba(106,27,154,.2);
    outline:0
}
.submit-button{
    background-color:#d35400;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    width:100%;
    margin-top:40px
}
.submit-button:hover{
    background-color:#fcad79;
    transform:translateY(-2px)
}
@media (max-width:992px){
    .main-wrapper{
        flex-direction:column;
        width:95%;
        min-height:unset
    }
    .left-panel,.right-panel{
        flex:none;
        width:100%;
        padding:30px
    }
    .display-section h3{
        font-size:50px
    }
    .breakdown-details div{
        font-size:18px;
        flex-basis:100%
    }
    .form-header h3{
        font-size:24px
    }
    .toggle-group{
        flex-direction:column;
        gap:5px
    }
    .toggle-group label{
        width:100%;
        text-align:center
    }
    .project-form{
        padding-right:0
    }
}
@media (max-width:576px){
    .left-panel,.right-panel{
        padding:20px
    }
    .form-header h3{
        font-size:20px
    }
    .display-section h3{
        font-size:40px;
        color:#fff!important
    }
}
.product-container{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    max-width:1233px!important;
    font-family:"Segoe UI",sans-serif
}
.product-image-section{
    flex:1 1 40%;
    display:flex;
    align-items:center;
    justify-content:center
}
.sale-badge{
    background:#ff7043
}
.zoom-icon{
    color:#fff
}
.product-details-section{
    flex:1 1 60%
}
.price-wrapper{
    display:flex;
    align-items:baseline;
    gap:10px
}
.features-list li::before{
    content:"✓";
    content:"✔";
    position:absolute;
    left:0;
    color:#ff6d00;
    font-weight:700
}
.pricing-btn.add-to-cart-button{
    background-color:#d35400;
    color:#fff;
    padding:14px 28px;
    border:none;
    border-radius:50px;
    font-weight:600;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 4px 8px rgba(0,0,0,.1)
}
.pricing-btn.add-to-cart-button:hover{
    background-color:#ff7043;
    box-shadow:0 6px 12px rgba(0,0,0,.15)
}
.action-area{
    margin-top:30px;
    text-align:left
}
@media (max-width:768px){
    .product-container{
        flex-direction:column
    }
    .product-details-section,.product-image-section{
        flex:1 1 100%;
        padding:20px
    }
    .product-details-section{
        padding-top:0
    }
}
.text-success{
    color:#d35400!important;
    display:none
}
.product-container{
    display:flex;
    flex-wrap:wrap;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    overflow:hidden;
    margin:30px auto
}
.product-image-section{
    flex:1 1 50%;
    position:relative;
    min-height:300px;
    background-color:#f9f9f9;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px
}
.product-image-section img{
    width:100%;
    object-fit:cover;
    max-width:100%;
    height:auto;
    border-radius:12px
}
.sale-badge{
    position:absolute;
    top:20px;
    left:20px;
    background-color:#ff5722;
    color:#fff;
    padding:6px 12px;
    border-radius:50px;
    font-weight:700;
    font-size:14px
}
.zoom-icon{
    position:absolute;
    bottom:20px;
    right:20px;
    font-size:22px;
    background:rgba(255,255,255,.9);
    padding:6px;
    border-radius:50%;
    cursor:pointer
}
.product-details-section{
    flex:1 1 50%;
    padding:30px 40px;
    display:flex;
    flex-direction:column;
    justify-content:space-between
}
.product-details-section h1{
    font-size:28px;
    margin-bottom:10px;
    font-weight:700;
    color:#222
}
.price-wrapper{
    margin:10px 0
}
.current-price{
    color:#e65100;
    font-size:28px;
    font-weight:700
}
.payment-info{
    color:#666;
    font-size:14px;
    margin-bottom:20px
}
.features-list{
    list-style:none;
    padding:0;
    margin:0 0 30px
}
.features-list li{
    margin-bottom:10px;
    font-size:15px;
    color:#444;
    position:relative;
    padding-left:26px
}
.hero,.section h2{
    position:relative!important
}
.pricing-btn{
    background-color:#d35400;
    color:#fff;
    padding:12px 28px;
    border:none;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 4px 10px rgba(0,0,0,.1)
}
.pricing-btn:hover{
    background-color:#ff7043;
    box-shadow:0 6px 14px rgba(0,0,0,.15)
}
.header{
    text-align:center;
    margin-bottom:60px
}
.header h1{
    font-size:2.8em;
    color:var(--primary-blue);
    margin-bottom:15px;
    font-weight:700
}
.header p{
    font-size:1.1em;
    color:var(--medium-gray);
    max-width:700px;
    margin:0 auto
}
.cards-container{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
    margin-bottom:80px
}
.program-card{
    display:flex;
    flex-direction:column;
    padding:30px;
    border-radius:15px;
    box-shadow:var(--shadow-light);
    background:var(--white);
    cursor:pointer;
    width:350px;
    border:1px solid #000;
    text-align:center
}
.program-card:hover{
    box-shadow:var(--shadow-medium);
    border-color:var(--primary-blue)
}
.program-card h3{
    font-size:2.2em;
    color:var(--dark-gray);
    margin-top:0;
    margin-bottom:10px;
    font-weight:600
}
.program-card p{
    font-size:1em;
    color:var(--medium-gray);
    margin:0 0 30px;
    flex-grow:1
}
.program-card button{
    background-color:var(--primary-blue);
    color:var(--white);
    border:none;
    border-radius:8px;
    padding:12px 25px;
    font-size:1.05em;
    font-weight:500;
    box-shadow:0 4px 8px rgba(0,86,179,.2);
    width:100%
}
.program-card button:hover:not([disabled]){
    background-color:#d35400;
    transform:translateY(-2px);
    color:#fff
}
.program-card button[disabled]{
    background:#ccc;
    cursor:not-allowed;
    box-shadow:none
}
.test-series-list{
    max-width:900px;
    margin:0 auto;
    background:var(--white);
    border-radius:15px;
    box-shadow:var(--shadow-medium);
    padding:40px;
    display:none;
    animation:.6s ease-out forwards fadeIn;
    border:1px solid #e0e0e0
}
.test-item,.test-item-details{
    margin-bottom:15px;
    display:flex
}
.test-series-list h2{
    font-size:2.2em;
    color:var(--primary-blue);
    margin-top:0;
    margin-bottom:30px;
    border-bottom:2px solid var(--light-blue);
    padding-bottom:15px;
    font-weight:600;
    text-align:center
}
.test-item{
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    background:#fdfdfd;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.03);
    padding:20px 25px
}
.job-header,.test-item-details{
    align-items:center
}
.test-item:hover{
    box-shadow:0 4px 12px rgba(0,0,0,.08)
}
.test-item-details span:first-child{
    font-size:1.1em;
    color:var(--dark-gray);
    font-weight:500
}
.test-item-price{
    font-size:1.2em;
    font-weight:700;
    color:var(--dark-gray);
    margin-left:20px;
    white-space:nowrap
}
.test-item-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end
}
.test-item-actions button{
    color:var(--white);
    border:none;
    padding:10px 18px;
    border-radius:6px;
    font-size:.95em;
    font-weight:500;
    box-shadow:0 3px 6px rgba(0,0,0,.1)
}
.test-item-actions .enroll-btn{
    background-color:var(--green-success)
}
.test-item-actions .enroll-btn:hover{
    background-color:#218838;
    transform:translateY(-1px);
    color:#fff
}
.test-item-actions .info-btn{
    background-color:var(--blue-info)
}
.test-item-actions .info-btn:hover{
    background-color:#138496;
    transform:translateY(-1px)
}
@media (max-width:768px){
    body{
        padding:40px 15px
    }
    .header h1{
        font-size:2.2em
    }
    .header p{
        font-size:1em
    }
    .cards-container{
        flex-direction:column;
        align-items:center;
        gap:25px
    }
    .program-card{
        width:95%;
        padding:25px
    }
    .program-card h3,.test-series-list h2{
        font-size:1.8em
    }
    .program-card p{
        font-size:.95em
    }
    .test-series-list{
        padding:30px 20px
    }
    .test-item{
        flex-direction:column;
        align-items:flex-start;
        padding:15px 20px
    }
    .test-item-details{
        width:100%;
        margin-bottom:10px;
        justify-content:space-between
    }
    .test-item-price{
        margin-left:0
    }
    .test-item-actions{
        width:100%;
        justify-content:center
    }
    .test-item-actions button{
        flex-grow:1;
        padding:10px 15px
    }
}
.get-started,.info-section{
    display:flex;
    justify-content:space-between
}
@media (max-width:500px){
    .program-card,.test-item-actions button{
        width:100%
    }
}
.pricing-box-all{
    padding-left:90px;
    padding-right:90px
}
.info-section{
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px
}
.info-card{
    flex:1 1 22%;
    background:#fafafa;
    border-radius:8px;
    padding:20px;
    text-align:left;
    box-shadow:0 0 4px rgba(0,0,0,.05);
    transition:transform .2s
}
.info-card:hover,.test-series-card:hover{
    transform:translateY(-5px)
}
.icon{
    font-size:28px;
    background-color:#f1f1f1;
    padding:10px;
    width:fit-content;
    border-radius:6px;
    margin-bottom:10px
}
.get-button,.job-badge{
    background-color:red;
    color:#fff;
    font-weight:700
}
.info-card h3{
    margin:10px 0 5px;
    font-size:16px
}
.info-card p{
    font-size:14px;
    color:#555
}
.job-header{
    display:flex;
    gap:8px
}
.job-badge{
    font-size:11px;
    padding:2px 6px;
    border-radius:4px
}
.get-started{
    align-items:center;
    flex-wrap:wrap;
    padding-top:20px
}
.get-text h2{
    font-size:20px;
    margin-bottom:5px
}
.get-text p{
    font-size:14px;
    color:#444
}
.get-button{
    padding:12px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:background-color .3s
}
.get-button:hover{
    background-color:#8b0000
}
.text-justify{
    text-align:justify!important
}
.footer,.hero,.section h2{
    text-align:center!important
}
#custom-cart-items h6{
    font-size:16px;
    font-family:jost
}
.container{
    max-width:1367px!important;
    margin:0 auto!important;
    padding:0 2rem!important
}
.hero{
    background:linear-gradient(135deg,#e5671f 0,#e28e5c 100%)!important;
    color:#fff!important;
    padding:8rem 2rem!important;
    border-radius:60px!important;
    overflow:hidden!important
}
.hero::after,.hero::before{
    transform:rotate(45deg)!important;
    content:""!important;
    position:absolute!important;
    width:200px!important;
    height:200px!important;
    background:rgba(255,255,255,.1)!important;
    border-radius:50%!important
}
.hero::before{
    top:-50px!important;
    left:-50px!important
}
.hero::after{
    bottom:-50px!important;
    right:-50px!important
}
.hero h1{
    font-size:clamp(2.5rem, 5vw, 4rem)!important;
    margin:0 0 1rem!important;
    font-weight:700!important
}
.hero p{
    font-size:clamp(1rem, 2vw, 1.55rem)!important;
    max-width:800px!important;
    margin:0 auto 2.5rem!important;
    opacity:.9!important;
    color:#e7e7e7
}
.cta-buttons a{
    text-decoration:none!important;
    display:inline-block!important;
    padding:.8rem 2rem!important;
    margin:0 .5rem!important;
    border-radius:50px!important;
    font-weight:500!important;
    transition:.3s!important;
    font-size:1.4rem!important
}
.cta-buttons .primary-btn{
    background:#fff!important;
    color:#ff9f68!important;
    border:2px solid #fff!important;
    box-shadow:0 4px 15px rgba(255,255,255,.4)!important
}
.btn-hero-primary:hover,.partner-card:hover,.segment-card:hover{
    box-shadow:0 10px 30px -10px rgba(255,107,53,.3)!important
}
.cta-buttons .primary-btn:hover{
    background:#ff9f68!important;
    color:#fff!important;
    border-color:#ff9f68!important
}
.cta-buttons .secondary-btn{
    background:0 0!important;
    color:#fff!important;
    border:2px solid #fff!important
}
.cta-buttons .secondary-btn:hover{
    background:rgba(255,255,255,.1)!important
}
.section{
    padding:5rem 0!important
}
.section h2{
    font-size:clamp(2rem, 4vw, 3rem)!important;
    margin-bottom:3rem!important;
    color:#000!important
}
.section h2::after{
    content:""!important;
    display:block!important;
    width:60px!important;
    height:3px!important;
    background:#ff9f68!important;
    margin:10px auto 0!important;
    border-radius:2px!important
}
.footer{
    padding:2rem 0!important;
    font-size:.9rem!important;
    color:#888!important;
    border-top:1px solid #e0e0e0!important;
    margin-top:4rem!important
}
.d-none{
    display:none!important
}
.tab-card-section{
    padding:60px 0;
    background:#fffaf0
}
.tab-card,.tab-popup{
    background:#fff;
    transition:.3s
}
.tab-card-grid{
    display:flex;
    justify-content:space-between;
    flex-wrap:nowrap;
    gap:20px;
    margin-bottom:40px
}
.tab-content.active,.tab-label{
    display:block
}
.tab-card{
    flex:1;
    max-width:23%;
    border-radius:25px;
    padding:17px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:2px solid transparent;
    position:relative;
    overflow:visible;
    text-decoration:none;
    color:inherit
}
.tab-content,.tab-popup{
    padding:20px;
    border-radius:15px
}
.tab-card:hover{
    transform:translateY(-10px) scale(1.02);
    border-color:#ff8c42;
    z-index:10
}
.tab-icon i{
    color:#ff8c42;
    margin-bottom:15px;
    transition:color .3s;
    font-size:40px
}
.tab-card:hover .tab-icon i{
    color:#ff6b00
}
.tab-label{
    font-weight:700;
    font-size:1.6rem;
    color:#3d405b
}
.tab-popup{
    position:absolute;
    bottom:115%;
    left:50%;
    transform:translateX(-50%) scale(.9);
    opacity:0;
    pointer-events:none;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    min-width:260px;
    text-align:left;
    z-index:100
}
.btn-hero-primary,.btn-primary:hover{
    box-shadow:0 4px 20px -4px rgba(255,107,53,.15)!important
}
.tab-card:hover .tab-popup{
    opacity:1;
    transform:translateX(-50%) scale(1);
    pointer-events:auto
}
.tab-popup::after{
    content:"";
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:10px solid #fff
}
.tab-popup h4{
    font-size:1.4rem;
    color:#ff8c42;
    margin-bottom:8px
}
.tab-popup p{
    font-size:1.2rem;
    color:#555;
    margin:0;
    line-height:1.5
}
.tab-content{
    display:none;
    margin-top:20px
}
.hero-section{
    min-height:46vh!important;
    background:linear-gradient(135deg,#ffb79d,#ef8742)!important;
    color:#fff!important;
    position:relative!important;
    display:flex!important;
    overflow:hidden!important;
    border-radius:16px!important
}
.hero-background{
    position:absolute!important;
    top:0!important;
    left:0!important;
    right:0!important;
    bottom:0!important;
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="none"/><circle cx="20%" cy="20%" r="15%" fill="rgba(255,255,255,0.1)"/><circle cx="80%" cy="80%" r="20%" fill="rgba(255,255,255,0.05)"/></svg>')!important;
    z-index:0!important
}
.hero-badge,.segment-card:hover .segment-count,.segment-card:hover .segment-icon{
    background:rgba(255,255,255,.2)!important
}
.hero-section .container{
    position:relative!important;
    z-index:1!important
}
.hero-badge{
    display:inline-flex!important;
    padding:12px 24px!important;
    border-radius:50px!important;
    border:1px solid rgba(255,255,255,.3)!important;
    font-weight:500!important;
    font-size:18px!important
}
.hero-title{
    font-size:4rem!important;
    font-weight:700!important;
    line-height:1.2!important
}
.hero-subtitle{
    font-size:1.5rem!important;
    opacity:.9!important;
    max-width:800px!important;
    margin:0 auto 3rem!important
}
.btn-hero-outline,.btn-hero-primary{
    font-size:18px!important;
    font-weight:600!important
}
.btn-hero-primary{
    background:#fff!important;
    color:#ff6b35!important;
    border:none!important;
    padding:15px 30px!important;
    border-radius:50px!important
}
.btn-hero-primary:hover{
    background:#f8f9fa!important;
    color:#e55a2b!important;
    transform:translateY(-2px)!important
}
.btn-hero-outline{
    background:0 0!important;
    color:#fff!important;
    border:2px solid rgba(255,255,255,.3)!important;
    padding:13px 30px!important;
    border-radius:50px!important
}
.btn-hero-outline:hover{
    background:rgba(255,255,255,.1)!important;
    border-color:rgba(255,255,255,.5)!important;
    color:#fff!important;
    transform:translateY(-2px)!important
}
.section-label{
    color:#ff6b35!important;
    font-weight:600!important;
    font-size:16px!important;
    text-transform:uppercase!important
}
.section-title{
    font-size:3.5rem!important;
    font-weight:700!important;
    color:#2c3e50!important;
    margin-bottom:1.5rem!important
}
.section-subtitle{
    font-size:1.25rem!important;
    color:#6c757d!important;
    max-width:600px!important;
    margin:0 auto!important
}
.segment-card{
    background:linear-gradient(135deg,#fff4f0,#ffe5db)!important;
    border-radius:20px!important;
    padding:2rem!important;
    height:100%!important;
    cursor:pointer!important;
    border:1px solid rgba(255,107,53,.1)!important;
    position:relative!important;
    overflow:hidden!important
}
.segment-count,.segment-icon{
    background:rgba(255,107,53,.1)!important
}
.segment-card:hover{
    transform:translateY(-10px)!important;
    background:linear-gradient(135deg,#ff6b35,#e55a2b)!important;
    color:#fff!important
}
.segment-icon{
    width:60px!important;
    height:60px!important;
    border-radius:15px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin-bottom:1.5rem!important
}
.partner-card,.premium-badge,.segment-count{
    border-radius:20px!important
}
.segment-card h3,.segment-count{
    margin-bottom:1rem!important;
    font-weight:600!important
}
.segment-icon i{
    font-size:24px!important;
    color:#ff6b35!important
}
.segment-card h3{
    font-size:1.5rem!important;
    color:#2c3e50!important
}
.segment-count{
    display:inline-block!important;
    color:#ff6b35!important;
    padding:6px 12px!important;
    font-size:14px!important
}
.segment-card p{
    color:#6c757d!important;
    margin:0!important
}
.segment-card:hover p{
    color:rgba(255,255,255,.9)!important
}
.partner-card{
    background:#fff!important;
    padding:2rem!important;
    border:1px solid #e9ecef!important;
    height:100%!important
}
.partner-card:hover{
    transform:translateY(-5px)!important
}
.partner-header{
    display:flex!important;
    gap:1rem!important;
    margin-bottom:1.5rem!important
}
.partner-avatar{
    width:60px!important;
    height:60px!important;
    border-radius:15px!important;
    object-fit:cover!important;
    border:2px solid rgba(255,107,53,.1)!important
}
.partner-info{
    flex:1!important
}
.partner-name{
    font-size:1.53rem!important;
    font-weight:600!important;
    margin:0!important;
    color:#2c3e50!important
}
.partner-description{
    font-size:14px!important;
    color:#6c757d!important;
    margin:0!important;
    line-height:1.4!important
}
.premium-badge,.standard-badge{
    font-size:12px!important;
    padding:4px 12px!important;
    font-weight:600!important
}
.premium-badge{
    background:linear-gradient(135deg,#ff6b35,#e55a2b)!important;
    color:#fff!important;
    border:none!important
}
.standard-badge{
    background:#e9ecef!important;
    color:#6c757d!important;
    border-radius:20px!important;
    border:none!important
}
.btn-primary{
    background:linear-gradient(135deg,#ff6b35,#e55a2b)!important;
    border:none!important;
    border-radius:10px!important;
    padding:20px 24px!important;
    font-weight:600!important
}
.btn-outline-primary,.btn-outline-primary:hover{
    border-color:#ff6b35!important;
    color:#fff!important
}
.btn-primary:hover{
    transform:translateY(-2px)!important;
    filter:brightness(1.1)!important
}
.btn-outline-primary{
    border-radius:10px!important;
    padding:14px 24px!important;
    font-weight:600!important
}
.btn-outline-primary:hover{
    background:#ff6b35!important;
    transform:translateY(-2px)!important
}
@media (max-width:768px){
    .hero{
        padding:6rem 1rem!important
    }
    .section{
        padding:3rem 0!important
    }
    .container{
        padding:0 1rem!important
    }
    .cta-buttons a{
        display:block!important;
        margin:1rem 0!important
    }
    .hero-title,.section-title{
        font-size:2.5rem!important
    }
    .hero-subtitle{
        font-size:1.25rem!important
    }
    .hero-buttons{
        flex-direction:column!important;
        gap:1rem!important
    }
    .partner-header{
        flex-direction:column!important;
        text-align:center!important
    }
}
@keyframes fadeIn{
    from{
        opacity:0!important;
        transform:translateY(20px)!important
    }
    to{
        opacity:1!important;
        transform:translateY(0)!important
    }
}
.partner-card,.segment-card{
    animation:.6s forwards fadeIn!important
}
body{
    font-family:Arial,sans-serif;
    background-color:#f0f2f5;
    color:#333
}
.test-series-card{
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    height:100%;
    transition:transform .3s
}
.test-series-card-header .pill-badge{
    font-size:1rem;
    padding:4px 12px;
    border-radius:999px;
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    background:#ff7a00;
    display:inline-block;
    margin-bottom:12px
}
.test-series-title{
    font-size:1.8rem;
    font-weight:700;
    margin-bottom:6px;
    color:#222
}
.test-series-description{
    font-size:1.2rem;
    color:#555;
    margin-bottom:18px
}
.stats-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px
}
.stat-box{
    flex:1 1 45%;
    background:#f4f4f4;
    padding:12px;
    border-radius:10px;
    text-align:center
}
.stat-box strong{
    font-size:1.8rem;
    display:block;
    color:#222
}
.stat-box span{
    font-size:1.2rem;
    color:#888
}
.feature-list{
    list-style:none;
    padding:0;
    margin:20px 0
}
.feature-list li{
    font-size:1.2rem;
    padding-left:24px;
    position:relative;
    margin-bottom:8px;
    color:#444
}
.feature-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ff7a00;
    font-weight:700
}
.price-area{
    border-top:1px solid #eee;
    padding-top:18px;
    margin-top:auto
}
.original-price{
    /*text-decoration:line-through;*/
    font-size:12px!important;
    color:#aaa;
    margin-left:-13px;
}
.discounted-price{
    font-size:1.5rem;
    font-weight:700;
    color:#ff7a00
}
.btn-enroll{
    background:linear-gradient(135deg,#ff7a00,#f90);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:16px 20px;
    font-size:1.3rem;
    font-weight:600;
    transition:background .3s,transform .2s;
    width:100%
}
.bg-purple,.pill-badge{
    color:#fff;
    font-size:.75rem
}
.btn-enroll:hover{
    background:linear-gradient(135deg,#e66900,#ff7a00);
    transform:translateY(-2px)
}
.pill-badge{
    padding:4px 10px;
    border-radius:999px;
    font-weight:600;
    text-transform:uppercase;
    background:#ff7a00
}
.bg-purple{
    background:#7b61ff;
    padding:4px 8px;
    border-radius:8px
}
.feature-list.row li{
    list-style:none;
    margin-bottom:6px;
    font-size:1.2rem
}
.partner-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    background-color:#f9f9f9;
    border-radius:12px;
    padding:20px;
    margin-bottom:24px
}
.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    color:#333
}
.info-icon{
    font-size:24px;
    color:#ff8c00;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#fff3e0;
    border-radius:8px
}
.info-item h5{
    margin:0;
    font-size:12px;
    font-weight:500;
    color:#666
}
.info-item p{
    margin:0;
    font-size:14px;
    font-weight:400
}

  .container-fluid {
            max-width: 1200px;
        }

        .header-content {
            text-align: center;
            margin-bottom: 3rem;
        }

        .header-content h1 {
            color: #ffffff;
            font-weight: 700;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }

        .header-content p {
            font-weight: 300;
            font-size: clamp(0.9rem, 2vw, 1rem);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cards-grid {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
        }
        
        .card-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            flex: 1;
            min-width: 280px;
        }

        .elegant-card {
            background-color: #2a3a60;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .elegant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .icon-container {
            background-color: #fff;
            border-radius: 0.5rem;
            padding: 0.75rem;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .icon-container svg {
            width: 100%;
            height: 100%;
            color: #2a3a60;
        }

        .card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-content h5 {
            color: #ffffff;
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .card-content p {
            font-weight: 300;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #c0c2d3;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .btn-get-started {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 2rem;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            align-self: flex-start;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn-get-started:hover {
            background-color: #ffffff;
            color: #2a3a60;
        }

        .central-image {
            max-width: 100%;
            height: auto;
            border-radius: 1.25rem;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments */
        @media (min-width: 992px) {
            .cards-grid {
                flex-wrap: nowrap;
            }
            .card-column {
                flex: 1;
            }
            .central-image-col {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1.5; /* Give the image column more width */
            }
        }

        @media (max-width: 991px) {
            .cards-grid {
                flex-direction: column;
            }
            .card-column {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            .elegant-card {
                flex: 1 1 45%;
                min-width: 250px;
            }
            .central-image-col {
                order: -1; /* Move image to the top on small screens */
            }
        }











  :root {
            --primary-color: #6366F1; /* Sophisticated indigo */
            --primary-light: #EEF2FF;
            --primary-dark: #4F46E5;
            --accent-color: #10B981; /* Emerald green */
            --accent-secondary: #8B5CF6; /* Purple for highlights */
            --text-dark: #1F2937;
            --text-muted: #6B7280;
            --bg-light: #F9FAFB;
            --bg-lighter: #FFFFFF;
            --border-color: #E5E7EB;
            --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.03);
            --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.07);
            --shadow-large: 0 20px 25px rgba(0, 0, 0, 0.1);
            --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
            --gradient-hero: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
            --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.3s ease;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            margin: 0;
            overflow-x: hidden;
        }

        .container-elegant {
            max-width: 1528px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero-elegant {
            text-align: center;
            padding: 6rem 2rem 5rem;
            background-image: var(--gradient-hero);
            color: white;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 60px;
        }

        .hero-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Ccircle cx="50" cy="50" r="3"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
            opacity: 0.5;
        }
        
        .hero-title-elegant {
            font-family: 'Playfair Display', serif;
            font-size: 3.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .hero-subtitle-elegant {
            font-size: 1.35rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-weight: 300;
        }

        /* Card Tab Navigation */
        .card-tab-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: -70px;
            margin-bottom: 3rem;
            position: relative;
            z-index: 10;
        }

        .card-tab-btn {
            background: var(--bg-lighter);
            border-radius: 20px;
            padding: 2rem 2.5rem;
            box-shadow: var(--shadow-medium);
            transition: all var(--transition-fast);
            cursor: pointer;
            text-align: center;
            flex: 1 1 250px;
            max-width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .card-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .card-tab-btn:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-large);
        }

        .card-tab-btn:hover::before {
            opacity: 1;
        }

        .card-tab-btn.active {
            border-color: var(--primary-color);
            background-color: var(--primary-light);
            color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .card-tab-btn.active::before {
            opacity: 1;
        }

        .card-tab-btn .tab-icon {
            font-size: 2.75rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1;
            transition: transform var(--transition-fast);
        }

        .card-tab-btn:hover .tab-icon {
            transform: scale(1.1);
        }

        .card-tab-btn .tab-text {
            font-size: 1.15rem;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Tab Content Wrapper */
        .tab-content-wrapper {
            background-color: var(--bg-lighter);
            padding: 4rem 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-subtle);
            margin-bottom: 4rem;
        }

        .tab-pane {
            display: none;
            animation: fadeIn 0.6s ease-in-out;
        }

        .tab-pane.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Card Styles */
        .card-elegant {
            background: var(--bg-lighter);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid var(--border-color);
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
            display: flex;
            flex-direction: column;
        }

        .card-elegant::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .card-elegant:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .card-elegant:hover::after {
            opacity: 1;
        }

        .card-elegant.popular {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .card-elegant.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 21px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 1;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            margin-top: 27px;
        }

        .card-description {
            color: var(--text-muted);
            margin-bottom: 1.75rem;
            flex-grow: 1;
            line-height: 1.7;
        }

        .card-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-period {
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2.5rem;
            flex-grow: 1;
        }

        .card-features li {
            padding: 0.65rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            color: var(--text-dark);
            transition: transform var(--transition-fast);
        }

        .card-features li:hover {
            transform: translateX(5px);
        }

        .card-features li::before {
             content: '\f00c'; /* Font Awesome Unicode for fa-check */
    font-family: 'Font Awesome 6 Free';
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .product-card-elegant {
            background: var(--bg-lighter);
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--border-color);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .product-card-elegant::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .product-card-elegant:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }

        .product-card-elegant:hover::after {
            opacity: 1;
        }
        
        .product-badge {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.25rem;
            align-self: flex-start;
        }
        
        .product-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .product-company {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
            font-weight: 500;
        }
        
        .product-description {
            color: var(--text-muted);
            margin-bottom: 2rem;
            flex-grow: 1;
            line-height: 1.7;
        }

        /* Buttons */
        .btn-elegant {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
            z-index: -1;
        }
        
        .btn-primary-elegant {
            background: var(--gradient-primary);
            color: white;
        }

        .btn-primary-elegant:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }
        
        .btn-outline-elegant {
            background: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline-elegant:hover {
            color: white;
        }
        
        .btn-outline-elegant:hover::before {
            opacity: 1;
        }

        /* Grid System for Cards */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
            align-items: stretch;
        }
        
        .grid-container.products {
             grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title-elegant {
                font-size: 3rem;
            }
            
            .card-tab-nav {
                gap: 1.5rem;
            }
            
            .card-tab-btn {
                padding: 1.5rem 2rem;
                max-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .hero-elegant {
                padding: 4rem 1.5rem 3rem;
                border-bottom-left-radius: 40px;
                border-bottom-right-radius: 40px;
            }
            
            .hero-title-elegant {
                font-size: 2.5rem;
            }
            
            .hero-subtitle-elegant {
                font-size: 1.15rem;
            }
            
            .card-tab-nav {
                margin-top: -40px;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .card-tab-btn {
                width: 100%;
                max-width: 320px;
                padding: 1.5rem;
            }
            
            .tab-content-wrapper {
                padding: 2.5rem 1.5rem;
                border-radius: 20px;
            }
            
            .section-header h2 {
                font-size: 2.25rem;
            }
            
            .grid-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-buttons .btn-elegant {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .container-elegant {
                padding: 0 1rem;
            }
            
            .hero-title-elegant {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .card-elegant,
            .product-card-elegant {
                padding: 2rem 1.5rem;
            }
        }

        .navbar {
            padding: 0.5rem 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .navbar-brand img {
            height: 40px;
        }
        
        /* Custom styling for the logo text to mimic the image */
        .logo-text {
            font-size: 1.25rem;
            font-weight: bold;
            color: #000;
        }

        .logo-text .australia-text {
            font-size: 0.75rem;
            color: #777; /* Lighter color for 'AUSTRALIA' */
            font-weight: normal;
        }

        .nav-link {
            font-size: 1rem;
            color: #333 !important;
            margin-right: 1.5rem;
        }

        .nav-link:hover {
            color: #0d6efd !important;
        }

        .dropdown-toggle::after {
            margin-left: 0.5em;
            vertical-align: 0.15em;
        }






 .btn {
            display: inline-block;
            padding: 14px 28px;
            background: #4a6cf7;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
            width: 100%;
        }
        
        .btn:hover {
            background: #3a5cd8;
        }
        
          .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-header {
            padding: 25px;
            background: linear-gradient(135deg, #4a6cf7 0%, #2e4fd0 100%);
            color: white;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .service-description {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .service-body {
            padding: 25px;
        }
        
        .service-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }
        
        .service-period {
            color: #718096;
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4a6cf7;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: #4a6cf7;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
            width: 100%;
        }
        
        .btn:hover {
            background: #3a5cd8;
        }
        
        /* Modal Styles */
       .modal {
			display: none;
			position: fixed;
			z-index: 1050;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			overflow: auto;
			background-color: rgba(0,0,0,0.5);
			justify-content: center;
			align-items: center;
		}

		.modal-content {
			background-color: #fff;
			padding: 30px;
			border-radius: 12px;
			position: relative;
			width: 90%;
			max-width: 500px;
			box-shadow: 0 10px 30px rgba(0,0,0,0.2);
			animation: modalOpen 0.3s ease-in-out;
		}
		
		@keyframes modalOpen {
			from { opacity: 0; transform: translateY(-50px); }
			to { opacity: 1; transform: translateY(0); }
		}

		.close-btn {
			color: #aaa;
			position: absolute;
			top: 15px;
			right: 25px;
			font-size: 28px;
			font-weight: bold;
			cursor: pointer;
			transition: color 0.3s;
		}

		.close-btn:hover {
			color: #000;
		}
		
		.checkout-summary {
			margin-bottom: 20px;
		}
		
		.checkout-summary p {
			margin-bottom: 8px;
			font-size: 1.1em;
		}

		.checkout-summary span {
			font-weight: 600;
			color: var(--primary-color);
		}
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4a5568;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #4a6cf7;
            outline: none;
        }
        
        .order-summary {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        .order-summary h4 {
            margin-bottom: 15px;
            color: #2d3748;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .summary-total {
            font-weight: bold;
            border-top: 1px solid #e2e8f0;
            padding-top: 10px;
            margin-top: 10px;
        }
        
        .btn-checkout {
            background: #4a6cf7;
            color: white;
            border: none;
            padding: 16px;
            width: 100%;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn-checkout:hover {
            background: #3a5cd8;
        }
        
        .stripe-logo {
            text-align: center;
            margin-top: 20px;
        }
        
        .stripe-logo img {
            height: 40px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .modal {
                width: 95%;
            }
        }
        
        
        
        
       /* CART MODAL RESPONSIVE FIX */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.cart-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 95% !important;
    max-width: 420px !important;    /* Perfect size for mobile + desktop */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

        
        .cart-items {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-details {
            flex-grow: 1;
        }
        
        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: #4a6cf7;
            font-weight: 500;
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #ff4757;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 18px;
            padding: 15px 0;
            border-top: 2px solid #eee;
        }
        
        .cart-empty {
            text-align: center;
            padding: 30px;
            color: #888;
        }
        
        .cart-buttons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }
        
        .btn-continue-shopping {
            background: #f1f2f6;
            color: #2f3542;
        }
        
        .btn-continue-shopping:hover {
            background: #dfe4ea;
        }
        
        /* Cart icon badge */
        .cart-count-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff4757;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Add to cart button styles */
        .btn-add-to-cart {
            background: #4a6cf7;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-add-to-cart:hover {
            background: #3a5cd8;
        }
        
        /* Update existing service buttons */
        .service-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }    
        
        
        
        
        
        
        
        
        
        
        .cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background-color: #10B981;
    color: #fff;
    border-color: #10B981;
}

.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #f87171; /* soft red */
    font-size: 16px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #dc2626; /* darker red */
}

.cart-item span {
    min-width: 20px;
    text-align: center;
    display: inline-block;
    font-weight: 500;
}

        
        
        
 /* Container */
.phone-box {
    display: flex;
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    height: 48px; /* FIXED height to match other inputs */
}

/* Left section (flag + code) */
.phone-left {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 0 12px;
    height: 100%;
    width: 23%;
    border-right: 1px solid #d0d0d0;
}

/* Flag */
.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Dropdown */
.country-code {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding: 0;
    height: 100%;
}

/* Right input (Phone Number) */
.phone-input {
    width: 100%;
    padding: 0 12px;
    border: none !important;
    outline: none !important;
    font-size: 15px;
    height: 100%; /* Same height */
    background: white;
}

/* Remove glow on focus */
.phone-input:focus,
.country-code:focus {
    outline: none !important;
    box-shadow: none !important;
}

       .input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
} 
   
   
   
   
 /* FIX MODAL SIZE – FORCE THE CHECKOUT MODAL TO STAY SMALL */
#checkoutModal .modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 95% !important;
    max-width: 430px !important;
    margin: 0 auto;
}

/* FIX FORM INPUTS INSIDE MODAL ONLY */
#checkoutModal input,
#checkoutModal select,
#checkoutModal .input-field {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px;
    box-sizing: border-box;
}

/* IMPORTANT: PREVENT INPUT ERROR POPUP FROM EXPANDING MODAL */
#checkoutModal input:invalid {
    box-shadow: none !important;
}

/* FIX PHONE BOX STRETCH OVERFLOW */
/*#checkoutModal .phone-box {*/
/*    height: 48px !important;*/
/*    overflow: hidden !important;*/
/*    display: flex;*/
/*}*/


#checkoutModal .phone-box {
    display: flex;
    width: 100% !important;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

/* FIX FLAG + CODE AREA */
#checkoutModal .phone-left {
    width: 28% !important;
    background: #f3f4f6;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ENSURE PHONE INPUT FILLS REMAINING SPACE */
#checkoutModal .phone-input {
    flex: 1 !important;
    width: 100%;
    border: none;
    padding: 0 12px;
    font-size: 15px;
}
/* FULL-WIDTH BUTTON BUT DOES NOT BREAK LAYOUT */
#checkoutModal .btn-elegant.full-btn {
    width: 100% !important;
    padding: 14px !important;
}
  
   
   /* FIX BIG BUTTON SIZE INSIDE CART MODAL */
.cart-modal .cart-buttons .btn {
    padding: 8px 14px !important;   /* smaller padding */
    font-size: 14px !important;     /* smaller text */
    border-radius: 8px !important;  /* softer corners */
    height: auto !important;        /* prevent stretching */
    line-height: 1.3 !important;
    white-space: nowrap !important; /* prevent multiline */
}

/* Make both buttons equal width but SMALL */
.cart-modal .cart-buttons {
    display: flex;
    gap: 10px;
}

.cart-modal .cart-buttons .btn-continue-shopping,
.cart-modal .cart-buttons .btn-checkout {
    flex: 1;                       /* equal width */
    max-width: 160px;              /* limit size */
    text-align: center;
}

   
   
   /* REMOVE UNWANTED TOP SPACE CAUSED BY OTHER CSS */





























/* ============================================
   GLOBAL RESPONSIVE FIX — APPLY LAST
   ============================================ */

/* ----- Large Screens Fix (≤ 1400px) ----- */
@media (max-width: 1400px) {
    .container,
    .container-elegant {
        max-width: 1140px !important;
        padding: 0 1.5rem !important;
    }
}

/* ----- Laptop Fix (≤ 1200px) ----- */
@media (max-width: 1200px) {
    .product-container,
    .cards-grid,
    .tab-card-grid {
        gap: 20px !important;
        flex-wrap: wrap !important;
    }

    .main-wrapper {
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ----- Tablet Fix (≤ 992px) ----- */
@media (max-width: 992px) {

    .hero,
    .hero-elegant {
        padding: 4rem 1.5rem !important;
        text-align: center !important;
    }

    .section {
        padding: 3rem 1.5rem !important;
    }

    .tab-card-grid {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .segment-card,
    .partner-card,
    .program-card,
    .test-series-card,
    .card-elegant,
    .product-card-elegant {
        width: 100% !important;
    }

    .product-container {
        flex-direction: column !important;
    }

    .product-image-section,
    .product-details-section {
        width: 100% !important;
        padding: 15px !important;
    }

    .card-tab-nav {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* ----- Mobile Fix (≤ 768px) ----- */
@media (max-width: 768px) {

    /* Resetting paddings */
    .container,
    .container-elegant {
        padding: 0 1rem !important;
    }

    .hero-title-elegant,
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero-subtitle-elegant {
        font-size: 1rem !important;
    }

    .service-card,
    .program-card,
    .partner-card {
        width: 100% !important;
        min-width: 100% !important;
    }

    .tab-card {
        max-width: 100% !important;
    }

    /* Modals */
    .modal-content,
    .cart-modal-content {
        width: 95% !important;
        max-width: 420px !important;
        padding: 20px !important;
    }

    /* Cart Items */
    .cart-item {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
}

/* ----- Small Mobile Fix (≤ 480px) ----- */
@media (max-width: 480px) {

    .hero-title-elegant,
    .hero h1 {
        font-size: 1.6rem !important;
    }

    .cta-buttons a {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }

    .pricing-btn,
    .btn-elegant,
    .btn-primary-elegant {
        width: 100% !important;
    }

    .product-image-section img {
        border-radius: 12px !important;
    }

    .phone-box {
        flex-direction: row !important;
    }

    .phone-left {
        width: 30% !important;
    }
}

   
   
   
/*   .grid-container {*/
/*    width: 100% !important;*/
/*    max-width: 100% !important;*/
/*    margin: 0 !important;*/
/*}*/
/*.grid-container {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
/*    gap: 30px;*/
/*}*/
/*.container-elegant, */
/*.card-tab-nav, */
/*.tab-content-wrapper {*/
/*    width: 100% !important;*/
/*    max-width: 100% !important;*/
/*}*/


/*main, */
/*.container-elegant, */
/*.tab-content-wrapper {*/
/*    padding-left: 0 !important;*/
/*    padding-right: 0 !important;*/
/*}*/
/*body {*/
/*    overflow-x: hidden !important;*/
/*}   */
   
        
        
	