     :root {
            --gl-lc-primary: #f6a301;
            --gl-lc-dark: #000000;
            --gl-lc-light: #fff8e7;
            --gl-lc-gray: #1a1a1a;
            --gl-lc-border: #333333;
            --gl-lc-white: #ffffff;
            --gl-lc-accent-light: #fff3d0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

       .ii{
           margin-top : 50px !important;
       }


        .gl-body {
            
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ========== TOP IMAGE BANNER ========== */
        .gl-lc-hero-image {
            width: 100%;
            height: auto;
            min-height: 280px;
            max-height: 400px;
            object-fit: cover;
            display: block;
        
            background-color: var(--gl-lc-dark);
            border-radius: 20px;
        }
        
       
        

.gl-lc-section h1 {
  color: var(--gl-lc-dark);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2rem);
  margin: 0;

  position: relative;
  line-height: 45px;
}

        .gl-lc-hero-wrapper {
            position: relative;
            background-color: var(--gl-lc-dark);
        }

        .gl-lc-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            padding: 60px 20px 30px;
            text-align: center;
        }

        .gl-lc-hero-overlay h1 {
            color: var(--gl-lc-primary);
            font-weight: 700;
            font-size: clamp(1.4rem, 3.5vw, 2.4rem);
            margin: 0;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
        }

        .gl-lc-hero-overlay p {
            color: var(--gl-lc-white);
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            margin-top: 8px;
            opacity: 0.9;
        }

        /* ========== MAIN CONTAINER ========== */
        .gl-lc-main-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== SECTION STYLES ========== */
        .gl-lc-section {
            background: var(--gl-lc-white);
            border-radius: 12px;
           padding: 16px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-left: 5px solid var(--gl-lc-primary);
            transition: box-shadow 0.3s ease, transform 0.2s ease;
        }

        .gl-lc-section:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .gl-lc-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .gl-lc-section-icon {
            background-color: var(--gl-lc-primary);
            color: var(--gl-lc-dark);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            font-weight: bold;
        }

        .gl-lc-section h2 {
            color: var(--gl-lc-dark);
            font-weight: 700;
            font-size: clamp(1.25rem, 3vw, 1.6rem);
            margin: 0;
            position: relative;
        }

        .gl-lc-section h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--gl-lc-primary);
            margin-top: 6px;
            border-radius: 2px;
        }

        .gl-lc-section p,
        .gl-lc-section li {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ========== CARD GRID ========== */
        .gl-lc-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
            margin-top: 16px;
        }

        .gl-lc-card {
            background: var(--gl-lc-light);
            border: 1px solid #ffe9b0;
            border-radius: 10px;
            padding: 20px 18px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gl-lc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gl-lc-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .gl-lc-card:hover::before {
            transform: scaleX(1);
        }

        .gl-lc-card:hover {
            border-color: var(--gl-lc-primary);
            box-shadow: 0 6px 24px rgba(246, 163, 1, 0.2);
            transform: translateY(-3px);
        }

        .gl-lc-card-icon {
            font-size: 2.2rem;
            color: var(--gl-lc-primary);
            margin-bottom: 10px;
        }

        .gl-lc-card h4 {
            color: var(--gl-lc-dark);
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .gl-lc-card p {
            font-size: 0.9rem;
            color: #555;
            margin: 0;
        }

        /* ========== LIST STYLES ========== */
        .gl-lc-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .gl-lc-list li {
            padding: 2px 0 6px 32px;
            position: relative;
            border-bottom: 1px dashed #eee;
            font-size: 0.98rem;
            color: #444;
        }

        .gl-lc-list li:last-child {
            border-bottom: none;
        }

        .gl-lc-list li::before {
            content: '▸';
            position: absolute;
            left: 4px;
            top: 0px;
            color: var(--gl-lc-primary);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* ========== SPEC TABLE ========== */
        .gl-lc-spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .gl-lc-spec-table th,
        .gl-lc-spec-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.95rem;
        }

        .gl-lc-spec-table th {
            background-color: var(--gl-lc-dark);
            color: var(--gl-lc-primary);
            font-weight: 700;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .gl-lc-spec-table tr:nth-child(even) td {
            background-color: #fefdf8;
        }

        .gl-lc-spec-table tr:hover td {
            background-color: #fff9e6;
        }

        .gl-lc-spec-table td:first-child {
            font-weight: 600;
            color: var(--gl-lc-dark);
            min-width: 160px;
        }

        /* ========== FAQ ACCORDION ========== */
        .gl-lc-accordion .accordion-item {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .gl-lc-accordion .accordion-button {
            font-weight: 600;
            color: var(--gl-lc-dark);
            background-color: #fafafa;
            font-size: 1rem;
            padding: 16px 20px;
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .gl-lc-accordion .accordion-button:not(.collapsed) {
            background-color: var(--gl-lc-dark);
            color: var(--gl-lc-primary);
            box-shadow: none;
        }

        .gl-lc-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(246, 163, 1, 0.3);
            border-color: var(--gl-lc-primary);
        }

        .gl-lc-accordion .accordion-button::after {
            filter: brightness(0) saturate(100%);
        }

        .gl-lc-accordion .accordion-button:not(.collapsed)::after {
            filter: brightness(0) saturate(100%) invert(70%) sepia(80%) saturate(600%) hue-rotate(5deg);
        }

        .gl-lc-accordion .accordion-body {
            background-color: #fffef9;
            color: #444;
            font-size: 0.95rem;
            padding: 16px 20px;
            line-height: 1.8;
        }

        /* ========== HIGHLIGHT BADGE ========== */
        .gl-lc-badge {
            display: inline-block;
            background-color: var(--gl-lc-dark);
            color: var(--gl-lc-primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin: 4px 4px 4px 0;
            transition: all 0.3s ease;
        }

        .gl-lc-badge:hover {
            background-color: var(--gl-lc-primary);
            color: var(--gl-lc-dark);
            cursor: default;
        }

        /* ========== CTA STRIP ========== */
        .gl-lc-cta-strip {
            background: var(--gl-lc-dark);
            color: var(--gl-lc-white);
            text-align: center;
            padding: 28px 20px;
            border-radius: 12px;
            margin: 28px 0;
            border: 2px solid var(--gl-lc-primary);
        }

        .gl-lc-cta-strip h3 {
            color: var(--gl-lc-primary);
            font-weight: 700;
            margin-bottom: 8px;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        }

        .gl-lc-cta-strip p {
            margin: 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* ========== FOOTER ========== */
        .gl-lc-footer {
            background: var(--gl-lc-dark);
            color: #ccc;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            border-top: 3px solid var(--gl-lc-primary);
        }

        .gl-lc-footer span {
            color: var(--gl-lc-primary);
            font-weight: 600;
        }

        /* ========== RESPONSIVE ADJUSTMENTS ========== */
        @media (max-width: 768px) {
            .gl-lc-section {
                padding: 22px 16px;
                margin: 18px 0;
                border-left-width: 4px;
            }

            .gl-lc-hero-image {
                min-height: 200px;
                max-height: 300px;
            }

            .gl-lc-hero-overlay {
                padding: 40px 15px 20px;
            }

            .gl-lc-hero-overlay h1 {
                font-size: 1.25rem;
            }

            .gl-lc-hero-overlay p {
                font-size: 0.85rem;
            }

            .gl-lc-card-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .gl-lc-spec-table th,
            .gl-lc-spec-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }

            .gl-lc-spec-table td:first-child {
                min-width: 120px;
            }

            .gl-lc-section h2 {
                font-size: 1.2rem;
            }

            .gl-lc-list li {
                font-size: 0.9rem;
                padding: 8px 0 8px 28px;
            }
        }

        @media (max-width: 480px) {
            .gl-lc-section {
                padding: 16px 12px;
                margin: 12px 0;
                border-radius: 8px;
            }

            .gl-lc-hero-image {
                min-height: 160px;
                max-height: 220px;
            }

            .gl-lc-hero-overlay {
                padding: 25px 10px 14px;
            }

            .gl-lc-hero-overlay h1 {
                font-size: 1.05rem;
            }

            .gl-lc-hero-overlay p {
                font-size: 0.75rem;
            }

            .gl-lc-spec-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }

            .gl-lc-spec-table th,
            .gl-lc-spec-table td {
                font-size: 0.8rem;
                padding: 8px 10px;
            }

            .gl-lc-section-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }

            .gl-lc-card {
                padding: 14px 12px;
            }

            .gl-lc-badge {
                font-size: 0.75rem;
                padding: 4px 10px;
            }
        }
        
        
        
        /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
    .gl-lc-section h1{
        font-size : 24px;
        line-height: 30px;
    }
    
     .gl-lc-section h2 {
    font-size: 1.2rem;
    line-height: 30px;
  }
   .gl-lc-list li {
    font-size: 0.9rem;
    padding: 0px 0 6px 28px;
  }
    
    
.gl-lc-list li::before {
  content: '▸';
  position: absolute;
  left: 4px;
  top: -4px;
  color: var(--gl-lc-primary);
  font-weight: bold;
  font-size: 1.1rem;
}
    
    
}

  :root {
            --gd-mg-primary: #f6a301;
            --gd-mg-dark: #000000;
            --gd-mg-light: #fff8e7;
            --gd-mg-white: #ffffff;
            --gd-mg-border: #ffe9b0;
        }

        /* section container */
        .gd-mg-section {
            background: var(--gd-mg-white);
            border-radius: 12px;
            padding: 30px 28px;
            margin: 0 auto;
            max-width: 1100px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-left: 5px solid var(--gd-mg-primary);
            transition: box-shadow 0.3s ease, transform 0.2s ease;
        }

        .gd-mg-section:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        /* section header */
        .gd-mg-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .gd-mg-section-icon {
            background-color: var(--gd-mg-primary);
            color: var(--gd-mg-dark);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            font-weight: bold;
        }

        .gd-mg-section h2 {
            color: var(--gd-mg-dark);
            font-weight: 700;
            font-size: clamp(1.3rem, 3vw, 1.7rem);
            margin: 0;
            position: relative;
        }

        .gd-mg-section h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--gd-mg-primary);
            margin-top: 6px;
            border-radius: 2px;
        }

        /* card grid – responsive */
        .gd-mg-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
            gap: 18px;
            margin-top: 10px;
        }

        /* individual cards */
        .gd-mg-card {
            background: var(--gd-mg-light);
            border: 1px solid var(--gd-mg-border);
            border-radius: 10px;
            padding: 20px 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .gd-mg-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gd-mg-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .gd-mg-card:hover::before {
            transform: scaleX(1);
        }

        .gd-mg-card:hover {
            border-color: var(--gd-mg-primary);
            box-shadow: 0 6px 24px rgba(246, 163, 1, 0.2);
            transform: translateY(-3px);
        }

        .gd-mg-card-icon {
            font-size: 2rem;
            color: var(--gd-mg-primary);
            margin-bottom: 10px;
            text-align: center;
        }

        .gd-mg-card h4 {
            color: var(--gd-mg-dark);
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 14px;
            text-align: center;
            border-bottom: 2px solid #ffe9b0;
            padding-bottom: 10px;
        }

        .gd-mg-card ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
            flex: 1;
        }

        .gd-mg-card ul li {
            font-size: 0.93rem;
            color: #444;
            padding: 6px 0 6px 24px;
            position: relative;
            line-height: 1.6;
            border-bottom: 1px dashed #f0e0b0;
        }

        .gd-mg-card ul li:last-child {
            border-bottom: none;
        }

        .gd-mg-card ul li::before {
            content: '▸';
            position: absolute;
            left: 2px;
            top: 6px;
            color: var(--gd-mg-primary);
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* responsive adjustments */
        @media (max-width: 768px) {
            .gd-mg-section {
                padding: 22px 16px;
                border-left-width: 4px;
            }

            .gd-mg-card-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .gd-mg-section h2 {
                font-size: 1.3rem;
            }

            .gd-mg-card {
                padding: 16px 12px;
            }

            .gd-mg-card h4 {
                font-size: 0.95rem;
            }

            .gd-mg-card ul li {
                font-size: 0.85rem;
                padding-left: 20px;
            }
        }

        @media (max-width: 480px) {
            .gd-mg-section {
                padding: 16px 12px;
                border-radius: 8px;
            }

            .gd-mg-card-grid {
                grid-template-columns: 1fr;
            }

            .gd-mg-section-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }

            .gd-mg-card h4 {
                font-size: 0.9rem;
            }

            .gd-mg-card ul li {
                font-size: 0.82rem;
            }
        }