    html, 
body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-main-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important; 
  position: relative !important;
}

         .direction-btn {
         position: fixed;
         bottom: 20px;
         left: 20px;
         z-index: 9999;
         display: inline-flex;
         align-items: center;
         gap: 10px;
         background: rgba(255, 255, 255, 0.2);
         backdrop-filter: blur(10px);
         -webkit-backdrop-filter: blur(10px);
         color: #ffffff;
         border: 1px solid rgba(255, 255, 255, 0.3);
         text-decoration: none;
         padding: 12px 20px;
         border-radius: 40px;
         font-size: 16px;
         font-weight: 500;
         box-shadow: 0 6px 15px rgba(0,0,0,0.15);
         transition: all 0.3s ease;
         }
         .direction-btn img {
         width: 28px;
         height: 28px;
         object-fit: contain;
         }
         .direction-btn:hover {
         background: rgba(255, 255, 255, 0.4);
         color: #ffffff;
         box-shadow: 0 10px 20px rgba(0,0,0,0.25);
         }
         @media (max-width: 768px) {
         .direction-btn {
         left: 15px;
         bottom: 15px;
         padding: 10px 16px;
         font-size: 14px;
         gap: 8px;
         }
         .direction-btn img {
         width: 24px;
         height: 24px;
         }
         }
      
            @media(max-width: 576px) {
            .mobile-logo {
            height: 50px;
            width: 100%;
            }
            }

            .header-wave-bg{
            position: relative;
            overflow: visible;
            background: linear-gradient(135deg,#ffffff,#f8f2f8,#ffffff);
            z-index: 100;
            }
            /* Wave Container */
            .header-wave-wrapper{
            position:absolute;
            inset:0;
            overflow:hidden;     /* Sirf waves clip hongi */
            pointer-events:none;
            z-index:1;
            }
            .header-wave{
            position:absolute;
            left:0;
            width:200%;
            height:120px;
            background-repeat:repeat-x;
            background-size:900px 120px;
            }
            .header-wave-bg .container-fluid{
            position:relative;
            z-index:999;
            }
            /* Wave 1 */
            .wave1{
            top:-10px;
            opacity:.15;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 120'%3E%3Cpath fill='%23643158' d='M0 60 C150 0 300 120 450 60 C600 0 750 120 900 60 L900 120 L0 120Z'/%3E%3C/svg%3E");
            animation:waveMove1 8s linear infinite;
            }
            /* Wave 2 */
            .wave2{
            top:20px;
            opacity:.10;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 120'%3E%3Cpath fill='%23C8BED4' d='M0 50 C180 120 360 0 540 60 C720 120 900 20 900 20 L900 120 L0 120Z'/%3E%3C/svg%3E");
            animation:waveMove2 6s linear infinite;
            }
            /* Wave 3 */
            .wave3{
            top:45px;
            opacity:.08;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 120'%3E%3Cpath fill='%239a6d92' d='M0 70 C180 20 360 110 540 50 C720 0 900 100 900 100 L900 120 L0 120Z'/%3E%3C/svg%3E");
            animation:waveMove1 4s linear infinite;
            }
            @keyframes waveMove1{
            from{
            transform:translateX(0);
            }
            to{
            transform:translateX(-50%);
            }
            }
            @keyframes waveMove2{
            from{
            transform:translateX(-50%);
            }
            to{
            transform:translateX(0);
            }
            }
            @media (max-width:991px){
            .header-wave-wrapper{
            height:100%;
            }
            .header-wave{
            width:250%;
            height:70px;
            background-size:500px 70px;
            }
            .wave1{
            top:0;
            opacity:.12;
            animation:waveMove1 6s linear infinite;
            }
            .wave2{
            top:10px;
            opacity:.08;
            animation:waveMove2 5s linear infinite;
            }
            .wave3{
            top:20px;
            opacity:.06;
            animation:waveMove1 4s linear infinite;
            }
            .header-wave-bg{
            min-height:auto;
            }
            }
            /* Extra Small Devices */
            @media (max-width:576px){
            .header-wave{
            width:300%;
            height:55px;
            background-size:350px 55px;
            }
            .wave1{
            top:0;
            }
            .wave2{
            top:8px;
            }
            .wave3{
            top:16px;
            }
            }
         

    :root {
        --brand-color: #643158;
        --brand-color-light: #f5edf3;
        --brand-color-hover: #4e2544;
        --text-dark: #3a3838;

        --bg-light-gray: #f8f9fa;
    }

    .crt-section-light {
        background-color: #ffffff;
        color: #3a3838;
      
    }

    /* Elegant Top Badge */
    .badge-premium {
        background-color: var(--brand-color-light);
        color: var(--brand-color);
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        display: inline-block;
    }

    /* Section Headers */
    .crt-main-title {
        color: var(--text-dark);
        font-weight: 500;
        font-size: 30px;
        line-height: 1.25;
    }

    .crt-accent-text {
        color: var(--brand-color);
    }

    /* Doctor's Signature Note Box */
    .dr-note-card {
        background-color: var(--bg-light-gray);
        border-left: 5px solid var(--brand-color);
        border-radius: 4px 12px 12px 4px;
    }

    /* Image Wrapper with Soft Clean Shadow */
    .crt-image-wrapper {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: #fff;
    }

    /* Structured Feature Highlight Cards */
    .crt-feature-box {
        background: #ffffff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 24px;
        transition: all 0.3s ease;
    }

    .crt-feature-box:hover {
        border-color: var(--brand-color);
        box-shadow: 0 10px 25px rgba(100, 49, 88, 0.08);
        transform: translateY(-2px);
    }

    .crt-icon-shape {
        width: 48px;
        height: 48px;
        background-color: var(--brand-color-light);
        color: var(--brand-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

.crt3-benefits-wrap {
    background: #ffffff;
    
}
.crt3-small-title {
    display: inline-block;
    background: #f3e7ef;
    color: #5a2c4f;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 18px;
}
.crt3-main-title {
    font-size: 35px;
    color: #1b1b1b;
    line-height: 1.2;
    margin-bottom: 20px;
}
.crt3-main-title span {
    color: #5a2c4f;
}
.crt3-description {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}
.crt3-btn {
    display: inline-block;
    background: #5a2c4f;
    color: #fff;
    padding: 14px 34px;
    border-radius: 5px;
    text-decoration: none;
    transition: .4s;
}
.crt3-btn:hover {
    background: #44213b;
    color: #fff;
}
.crt3-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: .35s;
    border: 1px solid #efe4ec;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02); /* सफ़ेद बैकग्राउंड पर कार्ड्स को उभारने के लिए हल्की शैडो */
}
.crt3-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #5a2c4f;
    transform: scaleY(0);
    transition: .4s;
}
.crt3-card:hover:before {
    transform: scaleY(1);
}
.crt3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(90,44,79,.15);
}
.crt3-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #f3e7ef;
    color: #5a2c4f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.crt3-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}
.crt3-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}
@media(max-width:991px) {
    .crt3-main-title { font-size: 34px; }
}
@media(max-width:767px) {
    .crt3-main-title { font-size: 28px; }
    .crt3-card { padding: 25px; }
    .crt3-description { font-size: 16px; }
}
.crt-condition-section{
    background-color:#f0edf4a1;
}
.crt-condition-title { font-size: 35px; font-weight: 600;  margin-bottom: 0; }
.crt-condition-box { background: #fff; border: 2px solid #f1dfe9; border-radius: 18px; padding: 24px 20px; display: flex; align-items: center; gap: 18px; transition: .35s ease; height: 100%; cursor: pointer; }
.crt-condition-box i { width: 35px; height: 35px; background: #5a2c4f; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.crt-condition-box h5 { margin: 0; font-size: 18px; font-weight: 600; color: #222; line-height: 1.4; }
.crt-condition-box:hover { background: #5a2c4f; transform: translateY(-8px); box-shadow: 0 15px 35px rgba(90,44,79,.22); border-color: #5a2c4f; }
.crt-condition-box:hover h5 { color: #fff; }
.crt-condition-box:hover i { background: #fff; color: #5a2c4f; }
@media(max-width:768px) {
    .crt-condition-title { font-size: 30px; }
    .crt-condition-box { padding: 20px 18px; }
    .crt-condition-box h5 { font-size: 18px; }
}

.dr-charu-why-choose { background: #ffffff; }
.dr-tag { display: inline-block; background: #f3e7ef; color: #5a2c4f; padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 15px; }
.dr-title { font-size: 33px; font-weight: 600; color: #1b1b1b; line-height: 1.3; margin: 0; }
.dr-title span { color: #5a2c4f; }
.dr-exp-badge { background: #faf8fb; border-left: 4px solid #5a2c4f; padding: 15px 20px; border-radius: 0 12px 12px 0; }
.exp-number { font-size: 40px; font-weight: 800; color: #5a2c4f; line-height: 1; }
.exp-text { font-size: 15px; font-weight: 600; color: #333; line-height: 1.3; }
.dr-lead-text { font-size: 16px; line-height: 1.8; color: #555; margin: 0; }
.expertise-item { background: #fff; border: 1px solid #efe4ec; border-radius: 12px; padding: 18px 15px; display: flex; align-items: center; gap: 14px; height: 100%; transition: all 0.3s ease; }
.expertise-icon { width: 45px; height: 45px; background: #f3e7ef; color: #5a2c4f; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: 0.3s; }
.expertise-item h6 { margin: 0; font-size: 15px; font-weight: 600; color: #222; line-height: 1.4; }
.expertise-item:hover { border-color: #5a2c4f; box-shadow: 0 10px 25px rgba(90,44,79,0.08); transform: translateY(-3px); }
.expertise-item:hover .expertise-icon { background: #5a2c4f; color: #fff; }
@media(max-width: 991px) {
    .dr-title { font-size: 30px; }
    .exp-number { font-size: 34px; }
}
@media(max-width: 767px) {
    .dr-title { font-size: 26px; }
    .expertise-item { padding: 15px; }
}

   :root {
   --brand-color: #643158;
   --text-dark: #2d3142;
   }
   .crt-workflow-section {
   background-color: #f0edf4a1;
   }
   .crt-workflow-title {
   color: var(--text-dark);
   font-size: 35px;
   }
   /* Clean Minimal List Styling */
   .crt-clean-list {
   list-style: none;
   padding-left: 0;
   margin-bottom: 30px;
   }
   .crt-list-item {
   font-size: 16px;
   color: var(--text-dark);
   font-weight: 500;
   padding-vertical: 12px;
   display: flex;
   align-items: center;
   transition: transform 0.2s ease;
   }
   /* Professional Icon Integration */
   .crt-list-item i {
   color: var(--brand-color);
   font-size: 1.2rem;
   width: 32px; /* Fixed width prevents alignment breaking on wrap */
   display: inline-block;
   }
   .crt-summary-text {
   color: var(--);
   font-size: 1.05rem;
   line-height: 1.7;
   position: relative;
   padding-left: 15px;
   border-left: 3px solid var(--brand-color); /* Elegant thin accent line */
   }

    .breast-symptoms-section{
    background:#f8f9fc;
}

.symptoms-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    border:1px solid #e9e9e9;
    box-shadow:0 2px 5px rgba(0,0,0,.08);
}

.symptoms-title{
    font-size:32px;
   
}

.symptoms-text{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.symptom-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#faf7fc;
    border-left:4px solid #6d2c73;
    padding:15px 18px;
    border-radius:10px;
    height:100%;
    transition:.3s;
}

.symptom-item:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(109,44,115,.12);
}

.symptom-item i{
    color:#6d2c73;
    font-size:20px;
    margin-top:2px;
}

.symptom-item span{
    color:#333;
    font-size:16px;
    line-height:1.6;
}

.alert-note{
    background:#fff4e5;
    border-left:5px solid #f39c12;
    padding:18px 20px;
    border-radius:10px;
    color:#555;
    font-size:16px;
    font-weight:500;
}

.alert-note i{
    color:#f39c12;
    margin-right:8px;
}

@media(max-width:767px){

    .symptoms-box{
        padding:25px 20px;
    }

    .symptoms-title{
        font-size:26px;
    }

    .symptoms-text{
        font-size:16px;
    }

}


.drgarg-custom-select-trigger {
    width: 100%;
    height: 26px;
    line-height: 26px;
    font-size: 15px;
    font-weight: 500;
    color: var(--v2-plum-darkest);
    cursor: pointer;
    user-select: none;
}

.drgarg-custom-select-trigger .drgarg-trigger-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Custom Minimalist Arrow */
.drgarg-trigger-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--v2-plum-main);
    border-bottom: 2px solid var(--v2-plum-main);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 4px;
}

/* Active state arrow flip */
.drgarg-apt-v2-field.dropdown-active .drgarg-trigger-arrow {
    transform: rotate(-135deg);
}

/* Custom Scrollable Dropdown Menu Layout */
.drgarg-custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--v2-border-alpha);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(100, 49, 88, 0.12);
    z-index: 999;
    max-height: 200px;
    /* Controls maximum height before scroll appears */
    overflow-y: auto;
    /* Applies smooth vertical scrolling */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6px;
}

/* Show Menu Class */
.drgarg-custom-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Premium Options Styling with Brand Theme Hover */
.drgarg-dropdown-option {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--v2-txt-body);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Theme Color Highlight Hover (No More Browser Blue) */
.drgarg-dropdown-option:hover {
    background-color: var(--v2-plum-lightest);
    color: var(--v2-plum-main);
}

/* Selected Active Option Style */
.drgarg-dropdown-option.selected-item {
    background-color: var(--v2-plum-main) !important;
    color: #ffffff !important;
}

/* Placeholder item styling inside list */
.placeholder-option {
    color: #a496a1;
    border-bottom: 1px solid rgba(100, 49, 88, 0.05);
    margin-bottom: 4px;
}

/* --- CUSTOM PREMIUM SCROLLBAR STYLING --- */
.drgarg-custom-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.drgarg-custom-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.drgarg-custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(100, 49, 88, 0.2);
    border-radius: 10px;
}

.drgarg-custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--v2-plum-main);
}

/* Premium V2 Architecture Design Variables */
:root {
    --v2-plum-darkest: #1f0b1a;
    --v2-plum-main: #643158;
    --v2-plum-lightest: #fbf7fa;
    --v2-luxury-gold: #643158;
    --v2-border-alpha: rgba(100, 49, 88, 0.12);
    --v2-txt-body: #544451;
}

/* Master Section Control */
.drgarg-apt-v2-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #ffffff !important;
}

/* Main Box container without layout bleeding */
.drgarg-apt-v2-main-card {
    background: #ffffff;
    border: 1px solid var(--v2-border-alpha);
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(100, 49, 88, 0.05);
    overflow: hidden;
}

/* Text Element Layout styling */
.drgarg-apt-v2-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--v2-luxury-gold);
    background-color: rgba(179, 153, 103, 0.09);
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
}

.drgarg-apt-v2-title {
    color: var(--v2-plum-darkest);
    font-size: 36px;
    letter-spacing: -0.5px;
}

.drgarg-apt-v2-subtitle {
    color: var(--v2-txt-body);
    font-size: 14.5px;
    line-height: 1.6;
}

/* FIXED ARCHITECTURE: Isolated Field Box Container */
.drgarg-apt-v2-field {
    background: var(--v2-plum-lightest) !important;
    border: 1px solid rgba(100, 49, 88, 0.08) !important;
    border-radius: 14px !important;
    padding: 12px 16px !important;
    /* Uniform absolute inner cushion spacing */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

/* Field Inner Text Labels */
.drgarg-apt-v2-field-label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--v2-plum-main) !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
    /* Locks structural gap below text */
    padding: 0 !important;
}

/* ULTRA-RESET FIX: Complete Anti-Blead Native Controls */
.drgarg-apt-v2-control {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--v2-plum-darkest) !important;
    box-shadow: none !important;
    outline: 0 !important;
    width: 100% !important;
    height: 26px !important;
    /* Fixed functional height prevents layout expansion */
    min-height: unset !important;
    line-height: 26px !important;
}

/* Textarea specific adjustment for multiline notes */
textarea.drgarg-apt-v2-control {
    height: auto !important;
    min-height: 70px !important;
    line-height: 1.5 !important;
    resize: none;
}

.drgarg-apt-v2-control::placeholder {
    color: #a496a1 !important;
    font-size: 14px;
}

/* Focus and Active States Override on Wrapper Box Level */
.drgarg-apt-v2-field:focus-within {
    background: #ffffff !important;
    border-color: var(--v2-plum-main) !important;
    box-shadow: 0 10px 25px rgba(100, 49, 88, 0.08) !important;
}

/* Explicit native active border elimination for Select & Inputs */
.drgarg-apt-v2-control:focus,
.drgarg-apt-v2-control:active,
.drgarg-apt-v2-control:hover {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

/* Interactive Action Button */
.drgarg-apt-v2-btn {
    background: #643158;
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(100, 49, 88, 0.15);
}


/* Right Visual Column Area */
.drgarg-apt-v2-visual-wrapper {
    background-color: #FAF8F9;
    border-left: 1px solid var(--v2-border-alpha);
    position: relative;
}

.drgarg-apt-v2-img-canvas {
    position: relative;
    width: 100%;
    max-width: 330px;
    aspect-ratio: 4 / 5;
}

.drgarg-apt-v2-glow-plate {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(100, 49, 88, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.drgarg-apt-v2-border-accent {
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px dashed #643158;
    border-radius: 24px;
    z-index: 1;
}

.drgarg-apt-v2-avatar-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(31, 11, 26, 0.12);
    background-color: var(--v2-plum-main);
}

.drgarg-apt-v2-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Status Box UI */
.drgarg-apt-v2-panel-float {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(100, 49, 88, 0.06);
    z-index: 3;
    min-width: 220px;
}

.drgarg-apt-v2-panel-indicator {
    width: 24px;
    height: 24px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drgarg-apt-v2-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    animation: drgargPulse 2s infinite;
}

.drgarg-apt-v2-panel-h1 {
    font-size: 13px;
    color: var(--v2-plum-darkest);
    line-height: 1.2;
}

.drgarg-apt-v2-panel-h2 {
    font-size: 11px;
    color: var(--v2-txt-body);
}

@keyframes drgargPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Absolute Anti-Overlap Media Interventions */
@media (max-width: 1199px) {
    .drgarg-apt-v2-title {
        font-size: 30px;
    }

    .drgarg-apt-v2-panel-float {
        left: 10px;
        bottom: 15px;
    }
}

@media (max-width: 991px) {
    .drgarg-apt-v2-main-card {
        border-radius: 20px;
    }

    .drgarg-apt-v2-img-canvas {
        max-width: 280px;
    }
}

.single-slider {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;

  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
  transition: all 0.3s ease-in-out;
}


@media (max-width: 991px) {
  
  .slider, .hero-slider {
    height: auto !important;

  }

  .single-slider {
    height: 380px !important;

  }

  
  .single-slider::before, 
  .single-slider::after,
  .hero-slider::before,
  .hero-slider .overlay {
    background: rgba(0, 0, 0, 0.15) !important; 
    backdrop-filter: blur(0px) !important;       
    -webkit-backdrop-filter: blur(0px) !important;
    opacity: 1 !important;
  }


  .hero-slider .slider-text {
    padding: 20px !important;
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .slider, .hero-slider, .single-slider {
    height: 135px !important; 
  }

  .single-slider::before {
    display: none !important; 
  }
}

@media (max-width: 991px) {
  .col-lg-4.col-md-12:has(img[src*="dr-charu-about-us.jpg"]) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 25px !important;    
    padding-bottom: 25px !important;
    width: 100% !important;
  }

  .col-lg-4.col-md-12 img[src*="dr-charu-about-us.jpg"] {
    width: 100% !important;
    max-width: 420px !important;    
    height: 340px !important;       
    object-fit: cover !important;  
    object-position: center 20% !important; 

    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(100, 49, 88, 0.12) !important; 
    
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast !important;
  }
}
@media (max-width: 575px) {
  .col-lg-4.col-md-12 img[src*="dr-charu-about-us.jpg"] {
      margin-bottom: 0px !important;
    height: 280px !important;       
    max-width: 70% !important;      
  }
}
:root {
    --arts-primary: #643158;
    --arts-secondary: #c7bdd3;
    --arts-text-dark: #2d1c2a;
    --arts-text-muted: #3a3838;
}

.arts-bootstrap-section-white {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff !important;
    color: var(--arts-text-dark);
}

.arts-subtitle {
    color: var(--arts-primary);
    font-size: 13px;
    letter-spacing: 2px;
}

.arts-title {
    color: var(--arts-primary);
    font-size: 36px;
}

.arts-divider {
    width: 50px;
    height: 4px;
    background-color: var(--arts-secondary);
    border-radius: 2px;
}

.arts-card {
    background: #faf6f9;
    border: 1px solid rgba(199, 189, 211, 0.4);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(100, 49, 88, 0.01);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}
.arts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--arts-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.arts-card:hover {
    transform: translateX(5px);
    background: #ffffff;
    /* Turns clean white on hover */
    box-shadow: 0 15px 35px rgba(100, 49, 88, 0.06);
    border-color: var(--arts-secondary);
}

.arts-card:hover::before {
    transform: scaleY(1);
}

/* Icon Setup */
.arts-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: rgba(199, 189, 211, 0.25);
    border-radius: 10px;
    color: var(--arts-primary);
    transition: all 0.3s ease;
}

.arts-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.arts-card:hover .arts-icon-wrapper {
    background-color: var(--arts-primary);
    color: #ffffff;
}

/* Typography Colors */
.arts-card-title {
    font-size: 20px;
    color: var(--arts-primary);
}

.arts-card-text {
    font-size: 15px !important;
    font-weight: 400;
    line-height: 1.5;
    color: var(--arts-text-muted);
}
.arts-card-highlight {
    background: linear-gradient(135deg, var(--arts-primary) 0%, #4f2345 100%) !important;
    border: none !important;
}

.arts-card-highlight .arts-card-title {
    color: #ffffff;
}

.arts-card-highlight .arts-card-text {
    color: #e6dded;
}

.arts-card-highlight .arts-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.arts-card-highlight::before {
    background-color: var(--arts-secondary);
}

.arts-card-highlight:hover {
    background: linear-gradient(135deg, var(--arts-primary) 0%, #4f2345 100%) !important;
}

.arts-card-highlight:hover .arts-icon-wrapper {
    background-color: #ffffff;
    color: var(--arts-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .arts-title {
        font-size: 28px;
    }
}

:root {
    --arts-primary: #643158;
    --arts-secondary: #c7bdd3;
    --arts-bg-light: #fefbfe;
    --arts-text-dark: #2d1c2a;
    --arts-text-muted: #3a3838;
}

.arts-bootstrap-section {
    background-color: #f0edf4a1 !important;
    color: var(--arts-text-dark);
}

/* Header Text Styling */
.arts-subtitle {
    color: var(--arts-primary);
    font-size: 13px;
    letter-spacing: 2px;
}

.arts-title {
    color: var(--arts-primary);
    font-size: 36px;
}

.arts-divider {
    width: 50px;
    height: 4px;
    background-color: var(--arts-secondary);
    border-radius: 2px;
}
.arts-card {
    background: #ffffff;
    border: 1px solid rgba(199, 189, 211, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(100, 49, 88, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

/* Left side accent on hover */
.arts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--arts-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.arts-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(100, 49, 88, 0.06);
    border-color: var(--arts-secondary);
}

.arts-card:hover::before {
    transform: scaleY(1);
}

/* Icon Wrap Settings */
.arts-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: rgba(199, 189, 211, 0.2);
    border-radius: 10px;
    color: var(--arts-primary);
    transition: all 0.3s ease;
}

.arts-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.arts-card:hover .arts-icon-wrapper {
    background-color: var(--arts-primary);
    color: #ffffff;
}

/* Text Element Color Styling */
.arts-card-title {
    font-size: 20px;
    color: var(--arts-primary);
}

.arts-card-text {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--arts-text-muted);
}

/* Signature Highlighted Premium Card */
.arts-card-highlight {
    background: linear-gradient(135deg, var(--arts-primary) 0%, #4f2345 100%) !important;
    border: none !important;
}

.arts-card-highlight .arts-card-title {
    color: #ffffff;
}

.arts-card-highlight .arts-card-text {
    color: #e6dded;
}

.arts-card-highlight .arts-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.arts-card-highlight::before {
    background-color: var(--arts-secondary);
}

.arts-card-highlight:hover .arts-icon-wrapper {
    background-color: #ffffff;
    color: var(--arts-primary);
}

/* Responsive Overrides for Mobile Header */
@media (max-width: 768px) {
    .arts-title {
        font-size: 28px;
    }
}
:root {
    --drgarg-plum-dark: #3a1a33;
    --drgarg-plum-mid: #643158;
    --drgarg-plum-light: #f5eff3;
    --drgarg-accent-rose: #c7bdd3;
    --drgarg-txt-main: #21151f;
    --drgarg-txt-soft: #5e4f5a;
}
.drgarg-why-choose-section {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #fbf9fa !important;
}

/* Left Hero Structural Panel */
.drgarg-hero-sticky-panel {
    position: sticky;
    top: 110px;
}

.drgarg-tagline {
    color: var(--drgarg-plum-mid);
    font-size: 12px;
    letter-spacing: 2.5px;
    background: rgba(100, 49, 88, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
}

.drgarg-main-heading {
    color: var(--drgarg-plum-dark);
    font-size: 36px;
    line-height: 1.2;
}

.drgarg-highlight-text {
    color: var(--drgarg-plum-mid);
}

.drgarg-lead-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--drgarg-txt-soft);
}

.drgarg-accent-bar {
    width: 80px;
    height: 5px;
    background-color: var(--drgarg-accent-rose);
    border-radius: 3px;
    margin-top: 25px;
}

/* Modern Right Column Cards */
.drgarg-feat-card {
    background-color: #ffffff;
    border: 1px solid rgba(100, 49, 88, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(58, 26, 51, 0.02);
}

/* Card Hover Interactions */
.drgarg-feat-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    border-color: var(--drgarg-plum-mid);
    box-shadow: 0 20px 40px rgba(100, 49, 88, 0.07);
}

/* Icon Design Layout */
.drgarg-icon-box {
    width: 48px;
    height: 48px;
    color: var(--drgarg-plum-mid);
    background-color: var(--drgarg-plum-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drgarg-icon-box svg {
    width: 22px;
    height: 22px;
}

/* Icon box invert behavior on card hover */
.drgarg-feat-card:hover .drgarg-icon-box {
    color: #ffffff;
    background-color: var(--drgarg-plum-mid);
}

/* Feature Card Typography */
.drgarg-card-title {
    color: var(--drgarg-plum-dark);
    font-size: 18px;
    letter-spacing: -0.3px;
}

.drgarg-card-desc {
    color: #3a3838;
    font-size: 15px;
    line-height: 1.55;

}

/* Responsive Adaptive Adjustments */
@media (max-width: 991px) {
    .drgarg-main-heading {
        font-size: 32px;
    }

    .drgarg-hero-sticky-panel {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}

.charu-profile-highlights{
    background:#faf8fb;
}

.charu-profile-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#f2e6ee;
    color:#643158;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:12px;
}

.charu-profile-title{
    font-size:32px;
    color:#222;
    margin:0;
}

/* Card */

.charu-info-card{
    position:relative;
    height:100%;
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    border:1px solid #ede4ea;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.04);
}

.charu-info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#643158,#c8bed4);
}

.charu-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(100,49,88,.12);
}

.charu-card-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:linear-gradient(135deg,#643158,#8d5c81);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.charu-info-card h4{
    font-size:22px;
    color:#222;
    margin-bottom:20px;
}

.charu-info-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.charu-info-card ul li{
    position:relative;
    padding-left:30px;
    margin-bottom:16px;
    color:#555;
    line-height:1.8;
    font-size:15px;
}

.charu-info-card ul li:last-child{
    margin-bottom:0;
}

.charu-info-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#f3e8ef;
    color:#643158;
    font-size:12px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Responsive */

@media(max-width:991px){

.charu-profile-title{
    font-size:32px;
}

.charu-info-card{
    padding:30px 25px;
}

}

@media(max-width:767px){

.charu-profile-title{
    font-size:26px;
}

.charu-card-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.charu-info-card h4{
    font-size:20px;
}

.charu-info-card{
    padding:25px 20px;
}

.charu-info-card ul li{
    font-size:14px;
    line-height:1.7;
}

}

.dr-experience-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Left Summary Card */

.exp-summary-card{
    background:#faf8fb;
    border:1px solid #ece3ea;
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 12px 30px rgba(90,44,79,.05);
}

.exp-tag{
    display:inline-block;
    background:#f3e7ef;
    color:#5a2c4f;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.exp-main-title{
    font-size:35px;
    color:#222;
    margin-bottom:10px;
}

.total-exp-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid #ece3ea;
    border-radius:18px;
    padding:22px;
    margin:25px 0;
}

.counter-num{
    font-size:60px;
    line-height:1;
    font-weight:800;
    color:#5a2c4f;
    min-width:70px;
}

.counter-lbl{
    font-size:15px;
    color:#555;
    line-height:1.6;
    font-weight:500;
}

.current-status{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.status-dot{
    width:12px;
    height:12px;
    background:#28a745;
    border-radius:50%;
    flex-shrink:0;
    animation:pulseStatus 2s infinite;
}

@keyframes pulseStatus{

    0%{
        box-shadow:0 0 0 0 rgba(40,167,69,.6);
    }

    70%{
        box-shadow:0 0 0 10px rgba(40,167,69,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(40,167,69,0);
    }

}

/* ===========================
      Timeline
=========================== */

.timeline-container{
    position:relative;
    padding-left:40px;
}

.timeline-container::before{
    content:"";
    position:absolute;
    left:8px;
    top:10px;
    bottom:10px;
    width:2px;
    background:#e9dde6;
}

.timeline-track-item{
    position:relative;
    margin-bottom:28px;
}

.timeline-track-item:last-child{
    margin-bottom:0;
}

/* Timeline Dot */

.track-icon{
    position:absolute;
    left:-40px;
    top:22px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fff;
    border:3px solid #d9bfd2;
    z-index:2;
    transition:.3s;
}

.track-icon.icon-current{
    background:#28a745;
    border-color:#28a745;
}

.track-icon.icon-global{
    background:#5a2c4f;
    border-color:#5a2c4f;
}

/* Card */

.track-content{
    background:#fff;
    border:1px solid #ece3ea;
    border-radius:16px;
    padding:22px 25px;
    transition:.35s;
    box-shadow:0 5px 18px rgba(0,0,0,.04);
}

.track-date{
    display:inline-block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.5px;
    font-weight:700;
    color:#5a2c4f;
    margin-bottom:8px;
}

.track-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#222;
}

.track-content p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/* Hover */

.timeline-track-item:hover .track-content{
    transform:translateY(-6px);
    border-color:#5a2c4f;
    box-shadow:0 18px 35px rgba(90,44,79,.10);
}

.timeline-track-item:hover .track-icon{
    border-color:#5a2c4f;
    background:#5a2c4f;
}

/* ===========================
      Responsive
=========================== */

@media(max-width:991px){

.exp-summary-card{
    text-align:center;
}

.total-exp-box{
    justify-content:center;
}

.current-status{
    justify-content:center;
}

.timeline-container{
    margin-top:35px;
    padding-left:35px;
}

.timeline-container::before{
    left:7px;
}

.track-icon{
    left:-35px;
}

}

@media(max-width:767px){

.dr-experience-section{
    padding:60px 0;
}

.exp-summary-card{
    padding:25px;
}

.exp-main-title{
    font-size:28px;
}

.counter-num{
    font-size:48px;
}

.counter-lbl{
    font-size:14px;
}

.total-exp-box{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

.timeline-container{
    padding-left:28px;
}

.timeline-container::before{
    left:5px;
}

.track-icon{
    width:16px;
    height:16px;
    left:-28px;
    top:20px;
}

.track-content{
    padding:18px;
}

.track-content h5{
    font-size:17px;
}

.track-content p{
    font-size:14px;
}

}


    :root {
        --brand-color: #643158;
        --brand-color-hover: #4e2645;
    }

    .video-grid-showcase {
        background-color: #fcfafb;
        padding: 50px 0;
    }

    .video-item {
        border-radius: 2px;
        box-shadow: 0 10px 30px rgba(100, 49, 88, 0.15);
        border: 1px solid var(--brand-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        
    }

    .video-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(100, 49, 88, 0.25);
    }

