        
        .tab-container {
            margin: 50px auto;
            padding: 30px;
         
        }

        /* Left Tab Navigation Styling */
        .nav-tabs {
            flex-direction: column;
            border: none;
            align-items: start;
        }
        .nav-tabs .nav-link {
            color: #145EA0;
            font-weight: 500;
            background-color: transparent;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-tabs .nav-link.active {
            background-color: #e9f3ff;
            color: #145EA0;
            font-weight: 600;
            border-radius: 8px;
        }
        .nav-tabs .nav-link:hover {
            background-color: #f0f8ff;
        }

        /* Icon Styling */
        .nav-tabs .nav-link i {
            font-size: 18px;
            color: #145EA0;
        }

        /* Right Content Area Styling */
        .tab-content-container {
            padding: 0 20px;
        }
        .tab-content {
            color: #333;
        }
        .tab-content h3 {
            font-weight: bold;
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }
        .tab-content p {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.8;
        }

        /* Explore Button Styling */
        .explore-btn {
            margin-top: 20px;
            padding: 10px 25px;
            background: linear-gradient(135deg, #145EA0, #0056b3);
            color: #ffffff;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.2);
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .explore-btn:hover {
            background: linear-gradient(135deg, #0056b3, #003f7f);
            
        }

        /* Image Styling */
        .image-section img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            margin-top: -10px!important;
        }
        .image-section {
            display: flex;
            justify-content: center;
            align-items: center;
        }