  
  .mt-50 {
    margin-top: 50px !important;
}
  
  
   .breadcrumb ul {
    padding: 0;
    margin: 0;
}
.breadcrumb li {
    /*margin-left: 5px;*/
    position: relative;
}
.breadcrumb li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054"; /* Font Awesome arrow */
    margin: 0 6px;
    color: #999;
}
.breadcrumb li:first-child::before {
    content: ""; /* remove arrow before first item */
}
.breadcrumb li a {
    text-decoration: none !important;
    color: #293138;
    transition: color 0.2s;
}
.breadcrumb li.active {
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
}
.welcome-banner-section {
    padding: 20px !important;
}
.page-title
{
    width:60%;
} 
   
    
        /* Main Content */
        main {
            padding: 0px 0;
        }

        /* Hero Section */
        .hero {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #dbeafe;
            padding: 48px;
            margin-bottom: 48px;
        }

        .hero h1 {
            font-size: 30px;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
            margin-bottom: 32px;
        }

        .hero-content {
            font-size: 18px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 32px;
        }

        .hero-content a {
            color: #00203f;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .hero-content a:hover {
            color: #00203f;
        }

        .hero-content ul{ padding-left:20px; color:#232323; margin-bottom:20px;}
        
        
        .cta-box {
            background: linear-gradient(90.08deg, #00203f 1.81%, #adefd1  99.95%);
            border-radius: 12px;
            padding: 32px;
            color: white;
        }

        .cta-box p { color:#FFF;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .cta-button {
            background: white;
            color: #00203f;
            padding: 16px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #f0f9ff;
            transform: scale(1.05);
        }

        .cta-subtitle {
            color: #bfdbfe;
            font-size: 14px;
            margin-top: 8px;
        }

        /* Sections */
        .section {
            margin-bottom: 48px;
        }

        .section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 32px;
            text-transform:capitalize;
        }

        /* Topics Grid */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 32px;
        }

        .topic-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #dbeafe;
            padding: 32px;
            transition: all 0.3s;
        }

        .topic-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .topic-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            /*margin-bottom: 16px;*/
        }

        .topic-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .topic-icon.blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
        .topic-icon.teal { background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%); }
        .topic-icon.emerald { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
        .topic-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

        .topic-card h3 { 
            font-size: 24px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 16px;
        }
        
        .topic-header p{
            font-size: 24px;
            font-weight: 500;
            color: #111827;
            margin-bottom: 16px;
        }
        .topic-header p strong {
        font-weight: inherit; 
            
        }

        .topic-card ul {
            list-style: none;
        }

        .topic-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #374151;
    position: relative;
    padding-left: 20px; /* space for icon */
}

.topic-card li::before {
    content: "✓"; /* Unicode tick */
    color: #00203f; /* pink color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

        .checkmark {
            color: #00203f;
            font-weight: bold;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Why Section */
        .why-section {
            background: linear-gradient(90.08deg, #00203f 1.81%, #adefd1 99.95%);
            border-radius: 16px;
            padding: 48px;
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .why-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .why-item h4 {
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 18px;
            color:#FFF;
        }
        .why-item p strong {
            font-weight: 500 !important;
            margin-bottom: 4px;
            font-size: 18px;
            color:#FFF;
            display: block;
            
        }

        .why-item p {
            color: #FFF;
            line-height: 1.5;
        }
        
        .why-item br {
    display: none;
}

        /* Related Sessions */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .related-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #dbeafe;
            padding: 20px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            display: block;
        }

        .related-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #93c5fd;
            transform: translateY(-2px);
        }

        .related-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .related-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .related-icon.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
        .related-icon.green { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
        .related-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

        .arrow {
            color: #9ca3af;
            transition: color 0.2s;
        }

        .related-card:hover .arrow {
            color: #1d4ed8;
        }

        .related-card h3 {
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
            transition: color 0.2s; line-height:24px; display:block;
        }

        .related-card:hover h3 {
            color: #1d4ed8;
        }

        .related-card p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Final CTA */
        .final-cta {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #dbeafe;
            padding: 48px;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 16px;
            text-transform:capitalize;
        }

        .final-cta p {
            color: #6b7280;
            font-size: 16px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        main .btn-primary {
            background: #00203f;
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            cursor: pointer;
            text-transform:capitalize;
        }

        main .btn-primary:hover {
            background: #2E3273;
        }

        main .btn-secondary {
            border: 2px solid #00203f;
            color: #00203f;
            background: transparent;
            padding: 10px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
        }

        main .btn-secondary:hover {
            background: #2E3273;
            color: #FFF;
            border: 2px solid #2E3273;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
              width: 100%;
            }
           
            .hero {
                padding: 32px 24px;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero-content {
                font-size: 16px;
            }
            
            .hero-content p *{
  text-align: justify !important; margin-bottom:10px;
  display: block;  
}

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .why-section {
                padding: 32px 24px;
            }

            .final-cta {
                padding: 32px 24px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }