
            @media (min-width: 1200px) {
            .container {  	
                width: 1320px;
                
            }}
         :root {  
            --hovercolor: #056630; 
            --bg_dark: ; 
            --font-weight: 400;  
			
        }body{
            font-family: "Jost", sans-serif;
            font-size: 14px;
            color: #666666;
        }.pos_title h2,.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{
            font-family: "Jost", sans-serif;
            color: #253237;
            text-transform: capitalize;
			font-weight: 400;
        }.pos_title h2{
            font-size: 24px;
        }.pos-title{
            font-family: "Jost", sans-serif;
        }.pos-title-column h4{   
            font-size: 20px;
        }#header .sticky-inner.scroll-menu{  
            background-color: #FFFFFFCC;   
        }.js-product-miniature .product_desc .product_name{
            color: #253237;
            font-size: 14px;
            text-transform: none;
        }.js-product-miniature .product_desc .product_name:hover{
            color: #056630;
        }.product-price-and-shipping .price{
            color:#555555;
            font-size: 15px;
        }.h1.namne_details, .product_name_h1{
            color: #253237;
            font-size: 24px;
            text-transform: none;
        }.product-prices .price, .product-prices .current-price span:first-child{
            color:#555555;
            font-size: 22px;
        }#product.showcase-body #header,.showcase-inner,#product.showcase-body .page-title-wrapper{
            background-color: ;
        }* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --blue-dark: #1a3a6b;
            --blue-mid: #2563b0;
            --blue-light: #3b82f6;
            --gray-dark: #4b5563;
            --gray-mid: #9ca3af;
            --gray-light: #f3f4f6;
            --white: #ffffff;
        }
       

        /* HERO */
        .hero {
            background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
            color: white;
            padding: 120px 40px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9em;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }
        .hero h1 { font-size: 3.6em; font-weight: 800; line-height: 1.2; margin-bottom: 25px; max-width: 900px; margin-left: auto; margin-right: auto; }
        .hero h1 span { color: #93c5fd; }
        .hero p { font-size: 1.2em; max-width: 780px; margin: 0 auto 50px; opacity: 0.92; line-height: 1.9; }

        /* WHO ARE YOU */
        .who-are-you { padding: 90px 40px; background: var(--white); text-align: center; }
        .section-label { font-size: 0.85em; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light); font-weight: 600; margin-bottom: 15px; }
        .section-title { font-size: 2.6em; color: var(--blue-dark); font-weight: 700; margin-bottom: 20px; }
        .section-subtitle { font-size: 1.15em; color: var(--gray-dark); max-width: 650px; margin: 0 auto 60px; }

        .role-cards {
            display: grid;
            grid-template-columns: repeat(3, auto);
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
            align-items: stretch;
            justify-content: center;
        }
        .role-card {
            background: var(--white);
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 35px 25px;
            width: 190px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .role-card:hover {
            border-color: var(--blue-mid);
            background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(37,99,176,0.2);
            color: white;
        }
        .role-card:hover p, .role-card:hover .role-arrow { color: rgba(255,255,255,0.85); }
        .role-icon { font-size: 2.8em; }
        .i-am { font-size: 0.75em; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); transition: color 0.3s; }
        .role-card:hover .i-am { color: rgba(255,255,255,0.7); }
        .role-card h3 { font-size: 1.05em; font-weight: 700; text-align: center; }
        .role-card p { font-size: 0.82em; color: var(--gray-mid); text-align: center; transition: color 0.3s; }
        .role-arrow { font-size: 0.8em; color: var(--blue-light); font-weight: 600; transition: color 0.3s; }

        /* MISSION & VISION */
        .mission-vision { padding: 90px 40px; background: var(--gray-light); }
        .mv-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 1100px;
            margin: 50px auto 60px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .mv-block.reverse { direction: rtl; }
        .mv-block.reverse > * { direction: ltr; }
        .mv-text {
            background: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        .mv-text::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 5px; height: 100%;
            background: linear-gradient(180deg, var(--blue-dark), var(--blue-light));
        }
        .mv-block.reverse .mv-text::before { left: auto; right: 0; }
        .mv-text h3 { font-size: 1.8em; color: var(--blue-dark); margin-bottom: 20px; font-weight: 700; }
        .mv-text p { color: var(--gray-dark); font-size: 1.05em; line-height: 1.9; }
        .mv-image { position: relative; min-height: 350px; overflow: hidden; }
        .mv-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .mv-image:hover img { transform: scale(1.05); }

        /* WHAT WE OFFER */
        .what-we-offer { padding: 90px 40px; background: white; text-align: center; }
        .offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1100px; margin: 60px auto 0; }
        .offer-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: left;
            transition: all 0.3s;
        }
        .offer-card:hover {
            background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(26,58,107,0.2);
        }
        .offer-card:hover h3, .offer-card:hover p { color: white; }
        .offer-card:hover .offer-icon { background: rgba(255,255,255,0.15); }
        .offer-icon {
            width: 60px; height: 60px;
            background: white;
            border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8em;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .offer-card h3 { font-size: 1.3em; color: var(--blue-dark); margin-bottom: 15px; font-weight: 700; transition: color 0.3s; }
        .offer-card p { color: var(--gray-dark); font-size: 0.95em; line-height: 1.8; transition: color 0.3s; }
        .start-here-wrap { text-align: center; margin-top: 50px; }
        .start-here-btn {
            display: inline-block;
            padding: 18px 55px;
            background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.15em;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(26,58,107,0.3);
        }
        .start-here-btn:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(26,58,107,0.4); }

        /* JOURNEY */
        .journey { padding: 90px 40px; background: var(--gray-light); text-align: center; }
        .timeline { max-width: 800px; margin: 60px auto 0; position: relative; }
        .timeline::before {
            content: '';
            position: absolute;
            left: 40px; top: 0; bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--blue-dark), var(--blue-light));
        }
        .timeline-item { display: flex; gap: 40px; margin-bottom: 50px; text-align: left; }
        .t-number {
            min-width: 80px; height: 80px;
            background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8em; font-weight: 800;
            flex-shrink: 0;
            position: relative; z-index: 1;
            box-shadow: 0 5px 20px rgba(26,58,107,0.3);
        }
        .t-item-final .t-number {
            background: var(--blue-light);
            box-shadow: 0 5px 20px rgba(59,130,246,0.4);
        }
        .t-content { background: white; border-radius: 15px; padding: 30px; flex: 1; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
        .t-content h3 { font-size: 1.4em; color: var(--blue-dark); margin-bottom: 5px; font-weight: 700; }
        .t-duration { font-size: 0.85em; color: var(--blue-light); font-weight: 600; margin-bottom: 15px; letter-spacing: 1px; text-transform: uppercase; }
        .t-content ul { list-style: none; padding: 0; }
        .t-content li { padding: 7px 0 7px 20px; position: relative; color: var(--gray-dark); font-size: 0.95em; }
        .t-content li::before { content: '→'; position: absolute; left: 0; color: var(--blue-light); }
        .uk-box {
            background: var(--blue-light);
            color: var(--blue-dark); border-radius: 15px; padding: 30px; margin-top: 15px;
        }
        .uk-box h4 { font-size: 1.1em; margin-bottom: 10px; }
        .uk-box p { font-size: 0.9em; opacity: 1; }
        .doctors-only-tag {
            display: inline-block;
            background: #fbbf24;
            color: var(--blue-dark);
            font-size: 0.75em;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        /* FORM */
        .form-section { padding: 90px 40px; background: white; text-align: center; }
        .form-container {
            max-width: 750px; margin: 50px auto 0;
            background: var(--gray-light);
            border-radius: 25px; padding: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        .form-group { text-align: center; margin-bottom: 20px; }
        .form-group label { display: block; font-size: 0.9em; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 14px 18px;
            border: 2px solid #e5e7eb; border-radius: 12px;
            font-size: 0.95em; color: #333;
            transition: border-color 0.3s;
            font-family: inherit; background: white;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-mid); }
        .form-group textarea { height: 120px; resize: vertical; }
        .submit-btn {
            width: 100%; padding: 18px;
            background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
            color: white; border: none; border-radius: 12px;
            font-size: 1.1em; font-weight: 700; cursor: pointer;
            transition: all 0.3s; letter-spacing: 1px;
        }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,58,107,0.4); }
        .form-note { margin-top: 20px; font-size: 0.85em; color: var(--gray-mid); }
        
        /* Form Message */
        .form-message {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 0.95em;
            font-weight: 600;
            text-align: center;
            display: none;
        }
        .form-message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #34d399;
            display: block;
        }
        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #f87171;
            display: block;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.4em; }
            .mv-block, .mv-block.reverse { grid-template-columns: 1fr; direction: ltr; }
            .mv-image { min-height: 250px; }
            .form-row { grid-template-columns: 1fr; }
            .form-container { padding: 30px 20px; }
            .timeline::before { display: none; }
            .nav-links { display: none; }
            .role-cards { grid-template-columns: 1fr; }
            
            /* Journey Mobile Responsive */
            .timeline { max-width: 100%; margin-top: 40px; }
            .timeline-item {
                display: block;
                gap: 0;
                margin-bottom: 30px;
                text-align: left;
            }
            .t-number {
                width: 60px; height: 60px;
                min-width: 60px;
                font-size: 1.4em;
                margin-bottom: 15px;
            }
            .t-item-final .t-number {
                background: var(--blue-light);
                box-shadow: 0 5px 20px rgba(59,130,246,0.4);
            }
            .t-content {
                padding: 20px;
                border-radius: 12px;
            }
            .t-content h3 { font-size: 1.2em; margin-bottom: 8px; }
            .t-duration { font-size: 0.8em; margin-bottom: 12px; }
            .t-content ul { padding-left: 0; }
            .t-content li {
                padding: 5px 0 5px 15px;
                font-size: 0.9em;
                line-height: 1.6;
            }
            .t-content li::before { left: 0; }
            .uk-box {
                background: var(--blue-light);
                color: var(--blue-dark);
                padding: 20px;
                margin-top: 15px;
            }
            .uk-box h1 { font-size: 1em; margin-bottom: 8px; }
            .uk-box p { font-size: 0.85em; line-height: 1.6; opacity: 1; }
            .doctors-only-tag { font-size: 0.7em; padding: 3px 10px; margin-bottom: 10px; }
        }
.center-container {
    text-align: left;
}
div {
  color: #000000;
}
