.elementor-5656 .elementor-element.elementor-element-d50cb9f{--display:flex;--margin-top:-52px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-5656 .elementor-element.elementor-element-d50cb9f:not(.elementor-motion-effects-element-type-background), .elementor-5656 .elementor-element.elementor-element-d50cb9f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://amirait.in/wp-swi/wp-content/uploads/2025/12/Add-a-heading.png");background-position:center center;background-repeat:no-repeat;background-size:100% auto;}.elementor-5656 .elementor-element.elementor-element-d50cb9f.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-5656 .elementor-element.elementor-element-71d2e63{background-color:#6363634F;margin:242px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-5656 .elementor-element.elementor-element-59377d9{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-5656 .elementor-element.elementor-element-6b8ccaf{text-align:center;}.elementor-5656 .elementor-element.elementor-element-6b8ccaf .elementor-heading-title{color:#000000;}.elementor-5656 .elementor-element.elementor-element-7d40c02{--display:flex;}@media(min-width:768px){.elementor-5656 .elementor-element.elementor-element-d50cb9f{--width:100%;}}@media(max-width:1024px){.elementor-5656 .elementor-element.elementor-element-d50cb9f{--margin-top:-189px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-5656 .elementor-element.elementor-element-71d2e63{margin:363px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}@media(max-width:767px){.elementor-5656 .elementor-element.elementor-element-d50cb9f{--margin-top:-216px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-5656 .elementor-element.elementor-element-71d2e63{margin:297px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for container, class: .elementor-element-d50cb9f */.col-xxl-8{
    width: 100% !important;
    padding: 0px !important;
}
.egx-container-2{
    max-width: 100% !important;
}
.elementor-element-d0a2e47 .e-con-inner{
    background-color: #1615158f;
    max-width: 100% !important;
    height: 500px !important;
    
}

.elementor-element-d0a2e47 {
    height: 500px;
    padding: 0px;
}
.egx-hero-inner-area {
    display: none;
}
.breadcrumb{
        color: white;
    margin: 40px;
    font-size: 28px;
    font-weight: bold;
}
/*.elementor-element-e558571 {*/
/*    background-color: black !important;*/
/*    max-width: 100%;*/
/*    margin: 0px;*/
/*}*//* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1354b46 *//* Root Variables - Theme Colors */
:root {
    /* Primary Green Theme */
    --primary-color: #1ED136;        /* Main green */
    --secondary-color: #4ADE80;      /* Soft green */
    --accent-color: #86EFAC;         /* Light accent */

    /* Text Colors */
    --text-dark: #0f172a;            /* Deep readable text */
    --text-light: #475569;           /* Muted text */

    /* Backgrounds */
    --bg-light: #f0fdf4;             /* Very light green background */
    --bg-white: #ffffff;

    /* Borders */
    --border-color: #d1fae5;         /* Soft green border */

    /* Status Colors */
    --success-color: #16a34a;        /* Success green */

    /* Gradient */
    --gradient-primary: linear-gradient(
        180deg,
        #1ED136 0%,
        #BDF229 100%
    );
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.col-md-8 {
    max-width: 900px;
    margin: 0 auto;
}

.g-offset-md-2 {
    padding: 0 15px;
}

/* Main Article Block */
.mod_article {
    background:white ;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Blocks */
.ce_text {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.ce_text:last-child {
    border-bottom: none;
}

.ce_text p{
    color: black !important;
}

/* Typography */
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    animation: slideInLeft 0.5s ease-out;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 120px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* Links */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

a:hover::after {
    width: 100%;
}

/* Lists */
ul {
    margin: 20px 0;
    padding-left: 30px;
}

ul li {
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 10px;
}

ul li::before {
    content: '▸';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

ul li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

table thead tr {
    background: var(--gradient-primary);
    color: white;
}

table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

table td[style*="background-color: #ccc"] {
    background: var(--gradient-primary) !important;
    color: white !important;
    font-weight: 600;
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background-color: var(--bg-light);
    transform: scale(1.01);
}

table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

/* Interactive Elements */
.ce_text {
    position: relative;
}

.ce_text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.ce_text:hover::before {
    height: 100%;
}

/* Collapsible Sections (Optional Enhancement) */
h3 {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 25px;
}

h3::before {
    content: '▼';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

h3.collapsed::before {
    transform: rotate(-90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ce_text {
        padding: 20px 25px;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p, ul li {
        font-size: 0.95rem;
    }

    table {
        font-size: 0.85rem;
    }

    table td {
        padding: 10px;
    }

    .col-md-8 {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .row {
        padding: 20px 10px;
    }

    .ce_text {
        padding: 15px 20px;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.mod_article {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .mod_article {
        box-shadow: none;
    }

    .ce_text:hover {
        background-color: transparent;
    }

    a::after {
        display: none;
    }
}

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #e5e7eb;
        --text-light: #9ca3af;
        --bg-light: #1f2937;
        --bg-white: #374151;
        --border-color: #4b5563;
    }
}/* End custom CSS */