/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
}

/* इमेज को ड्रैग या सेव करने से रोकना */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* इमेज पर क्लिक भी नहीं होगा */
}

/* =========================================
   DMT.CSS - V48: COLOR FIXED (Teal/Green Theme Applied)
   ========================================= */

/* 1. Global Variables (Unified Theme: Teal/Green) */
:root {
    
    --primary-blue: #009688;       /* CHANGED: Deep Teal (Primary Main) */
    --primary-light: #004d40;      /* CHANGED: Lighter Teal (Standard) */
    --accent-orange: #67C949;      /* CHANGED: Parrot Green (Accent) */
    --accent-dark-orange: #57b443; /* CHANGED: Darker Green (Hover) */
    --text-body: #4a4a4a;
    --text-heading: #1a1a1a;
    --light-bg: #f7fafb;           /* CHANGED: Very Light BG */
}

/* Base Setup */
.dmt-ultimate-container {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
    margin-top: -1px; 
}

/* Typography */
.hero-h1-dmt { font-size: 2.5rem; font-weight: 800; color: white; line-height: 1.2; }
.hero-p-dmt { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 400; }
.section-h2-dmt { font-size: 2rem; font-weight: 800; color: var(--text-heading); margin-bottom: 15px; }
.section-p-sub-dmt { font-size: 1rem; color: #666; max-width: 800px; margin: 0 auto; }


/* 2. Hero Section (Deep Teal with Green Accents) */
.dmt-hero-v43 {
    /* CHANGED: Background gradient to Deep Teal shades */
    background: linear-gradient(135deg, #002b26 0%, var(--primary-blue) 100%); 
    padding: 10px 0 !important;
    position: relative;
    border-bottom-left-radius: 40px; 
    border-bottom-right-radius: 40px; 
}
.badge-v43 { 
    background: var(--accent-orange); /* Parrot Green */
    color: white; 
    padding: 6px 18px; 
    border-radius: 50px; 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Stats Bar */
.hero-stats-v43 {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.stat-item-v43 {
    text-align: center;
}
.stat-item-v43 i {
    font-size: 30px;
    color: var(--accent-orange); /* Parrot Green */
    margin-bottom: 5px;
}
.stat-item-v43 p {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Buttons */
.btn-main-dmt { 
    background: var(--accent-orange); /* Parrot Green */
    color: white; 
    padding: 12px 35px; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 15px; 
    transition: 0.3s;
    /* CHANGED: Shadow adjusted for Green */
    box-shadow: 0 5px 15px rgba(103, 201, 73, 0.4); 
}
.btn-main-dmt:hover { 
    background: var(--accent-dark-orange); /* Darker Green */
    transform: translateY(-3px); 
    /* CHANGED: Shadow adjusted for Green */
    box-shadow: 0 8px 20px rgba(103, 201, 73, 0.6); 
}
.btn-sub-dmt { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 15px; 
    margin-left: 10px; 
    transition: 0.3s;
}
.btn-sub-dmt:hover {
    color: var(--accent-orange); /* Parrot Green */
}

/* Image Animation (Simple, non-aggressive animation) */
.dmt-image-floating { animation: float-dmt 4s ease-in-out infinite; }
@keyframes float-dmt { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }


/* 3. COMMISSION SLAB SECTION */
.bg-light-dmt { background-color: var(--light-bg); }

.commission-table-container-v43 {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.commission-table-v43 thead th {
    background-color: var(--primary-blue); /* Deep Teal */
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.commission-table-v43 tbody tr {
    background-color: #fcfcfc;
    transition: background-color 0.3s;
    border-radius: 8px;
    border: 1px solid #eee;
}

.commission-table-v43 tbody tr:hover {
    /* CHANGED: Light Teal hover background */
    background-color: #eaf8f7; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.commission-table-v43 tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    font-weight: 500;
    border: none;
    font-size: 0.95rem;
}

/* Highlight the best commission slab */
.highlight-row-v43 {
    background-color: #fffde7 !important; 
    border: 2px solid var(--accent-orange) !important; /* Parrot Green border */
    font-weight: 700;
}
.highlight-row-v43 td {
    color: var(--text-heading) !important;
}
.text-success-dmt { color: #28a745 !important; }


/* 4. KEY BENEFITS & FEATURES SECTION */
.benefit-card-v43 {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, border-bottom 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--accent-orange); /* Parrot Green border */
}

.benefit-card-v43:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card-v43 i {
    font-size: 45px;
    color: var(--accent-orange); /* Parrot Green */
    margin-bottom: 15px;
}

.benefit-card-v43 h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue); /* Deep Teal */
    margin-bottom: 10px;
}

.benefit-card-v43 p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}


/* 5. FAQ STYLING */
.accordion-button { font-size: 0.95rem; font-weight: 600; color: var(--text-heading); padding: 20px; }
.accordion-button:not(.collapsed) { 
    /* CHANGED: Active accordion background to Light Teal */
    background-color: #eaf8f7; 
    color: var(--primary-blue); /* Deep Teal */
}
.accordion-button:not(.collapsed)::after {
    /* CHANGED: Icon color tweak for Teal background */
    filter: brightness(0.5); 
}
.accordion-body { font-size: 0.9rem; color: #666; line-height: 1.6; }


/* Responsive Fixes */
@media (max-width: 992px) {
    .dmt-hero-v43 { padding: 50px 0; }
    .hero-h1-dmt { font-size: 2rem; }
    .hero-stats-v43 { justify-content: center; }
}


/* =========================================
   V44: WHAT IS DMT & HOW IT WORKS STYLING (Color Fixed)
   ========================================= */

.work-steps-dmt {
    margin-top: 30px;
    padding-left: 15px;
    border-left: 2px solid var(--primary-light); /* Lighter Teal timeline line */
}

.step-item-dmt {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.step-num-dmt {
    background: var(--accent-orange); /* Parrot Green */
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    font-size: 14px;
    margin-left: -35px; 
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--light-bg); 
}

.step-text-dmt {
    margin-left: 20px;
}

.step-text-dmt h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-blue); /* Deep Teal */
    margin-bottom: 3px;
}

.step-text-dmt p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* =========================================
   V50: DMT HERO IMAGE SIZE FIX
   ========================================= */

.dmt-image-floating {
    border-radius: 10px !important; 
    /* NEW: Maximum width set to control size */
    max-width: 200px !important; 
    height: auto; /* Maintain aspect ratio */
}


/* =========================================
   V61: ULTIMATE MOBILE CONTENT & FONT REDUCTION
   ========================================= */

@media (max-width: 992px) {
    
    /* --- 1. Global Height & Typography Reduction (Crucial Fix) --- */
    
    /* Hero Section Height Reduction (Minimized to the maximum extent) */
    .dmt-hero-v43 { 
        padding: 35px 0 !important; /* Reduced from 40px to 35px */
    }

    /* Main Headings Reduction */
    .hero-h1-dmt { 
        font-size: 1.5rem; /* Reduced from 1.6rem */
        text-align: center;
    }
    .section-h2-dmt { 
        font-size: 1.3rem; /* Reduced from 1.4rem */
        margin-bottom: 20px !important;
    }
    .hero-p-dmt {
        font-size: 0.85rem; /* Body text smaller */
        text-align: center;
    }
    .badge-v43 {
        font-size: 10px; /* Reduced from 11px */
        padding: 4px 10px;
    }
    
    /* Section Padding (Reduced Vertical Gap between sections) */
    .dmt-ultimate-container section {
        padding-top: 30px !important; /* Reduced from 35px */
        padding-bottom: 30px !important; /* Reduced from 35px */
        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    /* --- 2. Hero Content and Button Fixes --- */
    
    /* Image Size (Keep it very small) */
    .dmt-image-floating {
        max-width: 120px !important; /* Reduced from 130px */
    }
    
    /* Buttons (Made smallest) */
    .btn-main-dmt, .btn-sub-dmt {
        padding: 7px 14px; /* Smallest button padding */
        font-size: 0.85rem; /* Smallest button text */
    }
    
  /* --- 3. Step/Process Section Fixes (V62 Final Fix for Overflow) --- */
.work-steps-dmt {
    /* Set margin to zero to ensure it starts from the edge */
    margin-left: 0 !important;
    padding-left: 0 !important; /* Ensure no internal padding pushes it out */
    
    /* ADDED: Ensure the text content is contained within the column */
    max-width: 100%;
}

.step-item-dmt {
    align-items: flex-start; /* Align to the start, not center */
    margin-bottom: 8px; 
    padding-left: 5px; /* Add slight padding on the left for spacing */
}

.step-num-dmt {
    /* Size control for number: */
    width: 20px; /* Reduced width */
    height: 20px; /* Reduced height */
    line-height: 20px;
    font-size: 11px; /* Reduced font size */
    
    position: static; 
    margin-right: 5px; /* Reduced space after number */
    margin-left: 0 !important;
}

.step-text-dmt {
    margin-left: 5px; /* Reduced margin before text */
    padding-right: 0 !important; /* Ensure no padding on the right */
    overflow: hidden; /* Prevent text from causing internal overflow */
}

.step-text-dmt h6 {
    font-size: 0.8rem; /* Heading slightly smaller */
    line-height: 1.1;
    margin-bottom: 2px;
}

.step-text-dmt p {
    font-size: 0.7rem; /* Paragraph text smallest */
}
    /* --- 4. FAQ & Card Fixes --- */
    
    .accordion-button {
        padding: 12px; /* Smaller accordion button padding */
        font-size: 0.8rem; /* Smallest accordion button text */
    }
    .accordion-body {
        font-size: 0.75rem;
    }
}